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 platforms and products
  1. Creating Mappings

  2. Import Source and target definitions

  3. Import store code and design definitions

  4. Create API definitions

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

In Oracle Warehouse Builder, metadata can be created through importing source/target definitions, importing stored code and design definitions, and creating API definitions. Creating mappings is primarily about designing data transformation logic rather than creating metadata structures, making it the exception in this context.

Multiple choice technology platforms and products
  1. Delimiting

  2. File sampling

  3. Create external tables

  4. Importing file

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

Warehouse Builder captures file structure into its metadata repository through file sampling. By analyzing sample data from the file, OWB can automatically detect and infer the file structure, delimiters, and data types, which is more efficient than manual definition or simple importing.

Multiple choice technology platforms and products
  1. Read/Write

  2. Access not permitted

  3. Read-only

  4. read,export

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

Technical users require full read/write access to the OWB metadata repository to perform development, deployment, and maintenance tasks. Read-only access would prevent essential operations, while no access would make technical work impossible.

Multiple choice technology platforms and products
  1. Resides in different DB Kernel

  2. Resides in same DB Kernel

  3. Resides in DB

  4. Resides in repository

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

Oracle 9i integrated relational and OLAP structures within the same database kernel, allowing seamless interoperability. This unified approach eliminated the need for separate OLAP engines and enabled efficient mixed workloads.

Multiple choice technology web technology
  1. cabinets.xml

  2. connectionpool.properties

  3. service.properties

  4. workingdocument

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

In Genesys configuration systems, database queries and definitions are typically stored in XML configuration files. The 'cabinets.xml' file is a standard Genesys configuration file that contains database query definitions and connection specifications. The other files listed handle different aspects (connection pooling, service properties, working documents).

Multiple choice technology databases
  1. USER_VIEWS

  2. USER_TAB_COLUMNS

  3. USER_TABLES

  4. USER_OBJECTS

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

USER_OBJECTS is the correct Oracle system view that shows all objects owned by the current user, including views and their status (VALID or INVALID). USER_VIEWS contains view text/definitions but not status. USER_TAB_COLUMNS describes column information, and USER_TABLES only lists tables.

Multiple choice technology operating systems
  1. Pointer data

  2. Metadata

  3. Information data

  4. backup data

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

The question asks what blocks pointing to data blocks (single indirect, double indirect) are collectively known as. While these are technically part of the inode's indirect pointer structure, 'Metadata' (option B) is the best available answer among the options, though it's not entirely precise - they're more accurately called indirect pointer blocks or simply indirect blocks.

Multiple choice technology databases
  1. True

  2. False

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

Materialized views store actual data physically, unlike regular views which are just stored queries. When base tables are dropped, the materialized view's data remains in storage. The view may become invalid or unusable, but the data is not automatically deleted. The statement is false.

Multiple choice technology platforms and products
  1. Restart the client machine alone

  2. Verify the parameters in the tnsnames.ora file. If required parameters are not present provide it, save it and just connect again

  3. Verify the parameters in the tnsnames.ora file. If required parameters are not present provide it, save it and just connect again.Then restart the forms server for the changes to get reflected.

  4. Only restart the forms server.

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

ORA-12154 indicates the TNS listener cannot resolve the service name. The solution is to verify and correct the tnsnames.ora file parameters. Once corrected and saved, reconnecting is sufficient - restarting the client machine or forms server is unnecessary and excessive.

Multiple choice technology
  1. for handling multi valued dimensions

  2. for integrating data marts into a data warehouse

  3. for event tracking

  4. for explaining why a record exists in a fact table

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

Conformed dimensions are dimensions that have the same meaning and content across multiple data marts. They enable integration of disparate data marts into a coherent data warehouse by ensuring consistent dimension keys and definitions. This allows drilling across data marts without data integrity issues.

Multiple choice technology
  1. Data explosion

  2. Data integration

  3. Scalability

  4. Data warehouse performance

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

Compound Growth Factor (CGF) measures how data volume grows over time in a data warehouse environment. As historical data accumulates and new sources are added, the data can explode exponentially. CGF quantifies this growth phenomenon, particularly relevant for storage capacity planning and performance management.