Computer Knowledge

Database Management Systems

5,543 Questions

Database Management Systems (DBMS) form the core framework for data storage, retrieval, and security in modern software applications. Concepts such as the E-R model, backup planning, SQL integration, and big data architecture are essential for computer knowledge sections. This hub offers a comprehensive set of practice questions to master DBMS fundamentals and advanced database operations.

E-R Model ConceptsBackup and RecoverySQL Server UpgradesJDBC and ODBCBig Data CharacteristicsData VirtualizationOracle Database

Database Management Systems Questions

Multiple choice technology packaged enterprise solutions
  1. Oracle Reports

  2. Oracle Forms

  3. PL/SQL Stored Procedure

  4. Host

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

When creating an executable in Oracle EBS, valid execution methods include Oracle Reports, PL/SQL Stored Procedures, and Host (shell scripts). Oracle Forms is not a valid execution method for concurrent programs - Forms are interactive UI components, not batch executables.

Multiple choice technology databases
  1. INIT call gets the database availability status

  2. It is not advisable to use GOBACK for ending an IMS COBOL program

  3. If the SSA contains only the segment name, byte 9 must contain a blank

  4. Basic checkpoint calls do not support GSAM files

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

INIT call checks database availability (A is true). In IMS COBOL, GOBACK is actually the recommended way to end programs (B is false). When an SSA (Segment Search Argument) contains only the segment name without qualification, byte 9 must be blank (C is true). Basic checkpoint calls don't support GSAM files (D is true).

Multiple choice technology databases
  1. AI

  2. AM

  3. AO

  4. NI

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

For GSAM databases, status code 'AI' (Abnormal - Input dataset not available) is issued when a GET call is attempted on a non-existent input dataset. Option A is correct. Status codes AM (Access Method error), AO (Abnormal - Other), and NI (Not Input-related) don't specifically indicate the missing input dataset condition.

Multiple choice technology operating systems
  1. Sites

  2. Tree

  3. Organizational Units (OUs)

  4. Trusts

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Organizational Units (OUs) are the primary containers within a domain for organizing objects like users, groups, and computers. They enable applying Group Policy and delegating administrative authority. Sites are for physical network topology, Trees are collections of Domains, and Trusts are relationships between domains.

Multiple choice technology databases
  1. Better data compression

  2. Less I/O

  3. Faster performance for decision support queries that involve only a few columns

  4. Best suited for OLTP

Reveal answer Fill a bubble to check yourself
A,B,C Correct answer
Explanation

Column-oriented storage enables better compression (similar values in a column compress well), reduces I/O (only needed columns are read), and accelerates decision-support queries that access few columns. OLTP is NOT well-suited - it requires row-oriented access for transactional updates. This is a key architectural difference.

Multiple choice technology databases
  1. html file

  2. iqmsg file

  3. iqplan file

  4. log file

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

When QUERY_PLAN option is enabled, Sybase IQ writes the generated query plan to the iqmsg file, which is the standard message log file. This file contains diagnostic information including query plans for optimization analysis.

Multiple choice technology databases
  1. Application

  2. Set of Books

  3. Organization

  4. Set Of Books

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In Oracle E-Business Suite, a Set of Books is the entity that partitions data into logical units by defining the accounting context including currency, calendar, and chart of accounts. Organizations exist within a Set of Books, and Applications use the Set of Books for data segregation. Option B is correct - Set of Books provides the logical partitioning mechanism. Options A and C are incorrect because they represent different concepts in the hierarchy.

Multiple choice technology databases
  1. Index scan

  2. Table scan

  3. Bookmark lookup

  4. Index seek

Reveal answer Fill a bubble to check yourself
A,B,C Correct answer
Explanation

Index Scan (A) reads entire index instead of seeking specific values - indicates missing or non-selective index. Table Scan (B) reads entire table - worst performance indicator. Bookmark Lookup (C) or Key Lookup requires jumping from index to heap - expensive random I/O. Index Seek (D) is the efficient operation - it's NOT a performance problem indicator. These three (A, B, C) appearing in execution plans suggest missing indexes, non-selective predicates, or inappropriate index columns.

Multiple choice technology databases
  1. Dynamic Management Views (DMV)

  2. DBCC commands

  3. Query plans

  4. BCP

Reveal answer Fill a bubble to check yourself
A,B,C Correct answer
Explanation

Dynamic Management Views (DMVs) provide runtime statistics about query performance, resource utilization, and indexes. DBCC commands like DBCC SHOW_STATISTICS and DBCC FREEPROCCACHE help diagnose and manage performance. Query Plans reveal actual execution strategies and bottlenecks. BCP (Bulk Copy Program) is a data import/export utility, not a performance diagnostics tool. The first three are essential for identifying slow queries and high CPU usage.

Multiple choice technology programming languages
  1. Common place on build server to store Q++ code versions

  2. Common place in version control system to store Q++ code versions

  3. Common place in Model to store Component versions

  4. Common place in Model to store Component Interfaces

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In specific model-driven development environments, the Model Shared Pool (MSP) serves as a centralized repository within the model to store and manage different versions of components. This allows developers to share, reuse, and track component versions across the project.

Multiple choice technology databases
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Bitmap indexes are highly efficient for columns with low cardinality, where data is repetitive and contains many duplicate values (such as gender or marital status) across large tables. They use bit arrays to perform fast boolean operations, making them ideal for data warehousing environments.