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. Dimension IDs

  2. Request IDs

  3. Surrogate IDs

  4. Master Data IDs

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

In SAP BW, when an InfoCube is compressed, the Request IDs (request IDs that track data loads) are deleted. The data is rolled up from the request-specific level to a more aggregated form. Dimension IDs, Surrogate IDs, and Master Data IDs are preserved.

Multiple choice technology databases
  1. Degenerated dimension

  2. Slowly changing dimensions

  3. Conformed dimensions

  4. Junk dimension

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

Conformed dimensions are dimension tables that share the same structure and meaning across multiple star schemas or data marts. This allows queries to be executed across different schemas seamlessly. A Calendar dimension is a classic example - it can be used consistently across sales, inventory, and financial data marts.

Multiple choice technology databases
  1. True

  2. False

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

Data warehouses are highly DENORMALIZED, not normalized, for better query performance. Normalization (used in OLTP systems) reduces redundancy but requires many joins, which slows queries. Denormalization (used in data warehouses) increases redundancy but reduces joins, enabling faster analytical queries.

Multiple choice technology databases
  1. Extract

  2. Transform

  3. Load

  4. None of the Above

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

Data cleansing occurs primarily during the Transform phase of ETL (Extract, Transform, Load). During transformation, data is cleaned, validated, standardized, and corrected before being loaded into the data warehouse. The Extract phase only retrieves data, and the Load phase writes already-cleaned data to the target system.

Multiple choice technology databases
  1. OLAP

  2. OLTP

  3. ETL

  4. None of the Above

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

OLAP (Online Analytical Processing) tools are specifically designed for creating reports and performing multidimensional analysis on data warehouses. OLTP systems are for transaction processing, and ETL tools are for data extraction/transformation/loading. The question asks about reporting tools, and OLAP is the correct category.

Multiple choice technology databases
  1. True

  2. False

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

This statement is incorrect. A data warehouse can and often does have multiple fact tables. Different business processes (sales, inventory, financial transactions) are typically represented by separate fact tables in the same data warehouse. These fact tables share common dimension tables but represent different measurable events.

Multiple choice technology databases
  1. Star

  2. Snow Flake

  3. Both of the Above

  4. None of the Above

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

Star and Snowflake are both standard dimensional modeling schemas used in data warehousing. Star schema has a central fact table directly connected to dimension tables, while Snowflake normalizes dimensions into multiple related tables. Both are valid approaches depending on the trade-off between query performance and storage normalization.

Multiple choice technology databases
  1. UNDOSTAT

  2. ROLLSTAT

  3. TRANSACTION

  4. DBA_UNDO_EXTENTS

  5. DBA_ROLLBACK_SEGS

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

The UNDOSTAT view in Oracle provides statistics on undo consumption, including undo block consumption rates. This is the primary view to analyze when sizing undo tablespaces. It helps estimate how much undo space your workload requires based on historical usage patterns.

Multiple choice technology databases
  1. The instance will not start.

  2. The instance starts up and uses the SYSTEM rollback segment for all undo entries.

  3. The instance starts up and uses the SYSTEM tablespace for the automatic undo segments.

  4. The instance starts up and uses the first available undo tablespace for the automatic undo segments.

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

If Automatic Undo Management is enabled but no undo tablespace is specified, Oracle will automatically select and use the first available undo tablespace in the database.