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 databases
  1. You do not need to restore all the data files.

  2. You do not need to open the database with the RESETLOGS operation

  3. You do not need to perform a full backup after the RESETLOGS operation.

  4. You do not need to recover all the data files to the same system change number (SCN).

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

This appears to be a duplicate of question 132806. In Oracle 10g, after incomplete recovery with RESETLOGS, the database is in a consistent state and doesn't require an immediate full backup (though it's recommended practice). Options A and D are incorrect - incomplete recovery still requires restoring all datafiles and recovering them to a consistent point. Option B is false - RESETLOGS is mandatory after incomplete recovery to reset the redo log sequence.

Multiple choice technology databases
  1. The database is in mount state.

  2. One of the tablespaces is offline.

  3. One of the tablespaces is read only.

  4. The database operates in ARCHIEVELOG mode.

  5. The database operates in NOARCHIEVELOG mode.

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

In NOARCHIVELOG mode, Oracle cannot perform hot/inconsistent backups because there are no archived redo logs to recover transactions. Only consistent (cold) backups are possible where the database is cleanly shut down. ARCHIVELOG mode allows both consistent and inconsistent backups.

Multiple choice technology web technology
  1. ODS

  2. Staging Area

  3. Data Warehouse

  4. Data Mart

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

ODS (Operational Data Store) contains current DSS data at the lowest level of granularity in a data warehouse architecture. Staging Area is for temporary storage before integration (Option B). Data Warehouse is the integrated repository (Option C). Data Mart contains subsets for specific departments (Option D).

Multiple choice technology web technology
  1. Many-to-many

  2. One-to-one

  3. One-to-many

  4. All of the above.

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

In a star schema, the relationship between a dimension table and fact table is one-to-many - one dimension record relates to many fact records (Option C). Option A (many-to-many) is incorrect because star schemas don't have direct many-to-many. Option B (one-to-one) is wrong because dimensions describe multiple facts. Option D is incorrect since the relationship is specifically one-to-many.

Multiple choice technology web technology
  1. Data Quality Management

  2. Data Transformations

  3. Data Mining

  4. Data Security Management

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

Data Quality Management eliminates bad data and increases data reliability, effectiveness, and usability (Option A). Data Transformations convert data formats (Option B). Data Mining discovers patterns (Option C). Data Security Management protects data access (Option D). Only Option A directly addresses eliminating bad data.

Multiple choice technology web technology
  1. Integrates disparate data into meaningful information

  2. Collects only historical data for past data analysis

  3. Defines business rules

  4. All of the above

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

Business Intelligence integrates disparate data into meaningful information (Option A is correct). Option B is wrong because BI deals with both historical and current data for predictive analysis. Option C is incorrect because business rules are defined by business processes, not BI itself. Option D is wrong since only A is true.

Multiple choice technology web technology
  1. Dispersed data -> Collected Data -> Integrated Data -> Information -> Knowledge

  2. Collected Data -> Dispersed data -> Integrated Data -> Information -> Knowledge

  3. Dispersed data -> Collected Data -> Integrated Data -> Knowledge-> Information

  4. Collected Data -> Dispersed data -> Integrated Data -> Knowledge -> Informatio

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

Data flows from dispersed sources through collection and integration to become information, then knowledge (Option A correct). Option B is wrong because dispersed data precedes collection. Option C incorrectly swaps information and knowledge. Option D has both wrong order and swapped information/knowledge.

Multiple choice technology web technology
  1. Sourcing data from disparate sources and integrating to be central repository

  2. A process to change data from a detailed level to a summary level

  3. A process to change data from a summary level to a detailed level

  4. Separating data from one source into various sources of data

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

Data Integration involves sourcing data from disparate sources and integrating it into a central repository (Option A correct). Option B describes aggregation/summarization, not integration. Option C describes drill-down operations. Option D describes data distribution, the opposite of integration.

Multiple choice technology web technology
  1. MOLAP

  2. ROLAP

  3. HOLAP

  4. None of the above

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

MOLAP (Multidimensional OLAP) pre-computes aggregations and stores data in specialized multidimensional arrays optimized for fast query performance. This makes it ideal for small datasets with complex analytical models since the cubes fit in memory and calculations are pre-done. ROLAP is better suited for large data with simpler models, while HOLAP is a hybrid approach.

Multiple choice technology web technology
  1. Detailed decision making

  2. Operational reporting

  3. Drill through analysis

  4. All of the above

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

Operational Data Store (ODS) serves as an intermediate layer between operational systems and the data warehouse. It provides current, detailed data that supports operational reporting for day-to-day business monitoring, enables drill-through from aggregated warehouse data to details, and supports tactical decision-making with near real-time data access.

Multiple choice technology web technology
  1. ETL Tool processing engine

  2. Target database engine

  3. Source database engine

  4. Source and Target database engine

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

ELT (Extract, Load, Transform) loads data first into the target system, then uses the target database's processing engine for transformations. This differs from ETL, which transforms before loading using a separate ETL tool.