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
  1. Single Query

  2. Multi Query

  3. Nested Query

  4. All the above

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

Matrix reports in Oracle Reports can be created using three query approaches: single-query (cross-tabulation from one query), multi-query (combining data from multiple queries), and nested (embedding matrix within matrix). All three types are valid.

Multiple choice technology
  1. SRW.message

  2. SRW.user_Exit

  3. SRW.Do_sql

  4. All the above

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

The SRW package in Oracle Reports contains multiple built-in procedures including SRW.MESSAGE (for displaying messages), SRW.USER_EXIT (for calling user exits), and SRW.DO_SQL (for executing dynamic SQL). All are standard procedures in the SRW package.

Multiple choice technology
  1. Database

  2. Double Byte

  3. Data Block

  4. Driver Boot

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

DB is the standard abbreviation for Database, which is an organized collection of structured information or data typically stored electronically in a computer system. Options B, C, and D (Double Byte, Data Block, Driver Boot) are not the standard meanings.

Multiple choice technology
  1. Database

  2. Double Byte

  3. Data Block

  4. Driver Boot

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

In computer terminology and database contexts, 'DB' is the standard abbreviation for Database. This is a universally recognized abbreviation used in academic, professional, and technical documentation to refer to structured collections of data.

Multiple choice technology
  1. Report

  2. Field

  3. Record

  4. File

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

In database terminology, a field is the smallest unit of data storage that holds only one type of information. For example, in a customer database, 'Last Name' would be a field containing text data, while 'Birth Date' would be a field containing date data. Fields are grouped together to form a record (a complete set of data about one entity), and records are stored in files or tables.

Multiple choice technology programming languages
  1. proc sql; describe as select * from sasuser.payrollmaster;

  2. proc sql; describe contents sasuser.payrollmaster;

  3. proc sql; describe table sasuser.payrollmaster;

  4. proc sql; describe * from sasuser.payrollmaster;

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

Option C uses the correct PROC SQL syntax DESCRIBE TABLE to display table structure in the SAS log. Option A incorrectly combines DESCRIBE with a SELECT statement. Option B uses CONTENTS which is valid for dictionaries but not the correct syntax for tables. Option D incorrectly uses DESCRIBE with a wildcard.

Multiple choice technology platforms and products
  1. True

  2. False

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

Option B (False) is correct: Oracle BI Repository does not support Oracle Long Objects (LOB, BLOB, CLOB). These large object data types cannot be directly mapped or used in the repository physical layer. Alternative approaches like storing references or using VARCHAR2 with size limits are needed.

Multiple choice technology testing
  1. Recovery scenario

  2. Smart identification

  3. Handling object

  4. all the above

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

Smart identification is the specific mechanism in HP/Micro Focus UFT (QTP) used to identify test objects during a run session when the learned properties do not uniquely identify the object. Recovery scenarios are for handling unexpected events, not standard object identification.

Multiple choice technology platforms and products
  1. Create data source definitions

  2. Design and create target database schema

  3. Design and create the OLAP environment

  4. Define and create data flows between sources and targets

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

Oracle Warehouse Builder (OWB) is an ETL tool for data warehousing. It allows designing and creating target database schemas, designing and creating OLAP environments, and defining and creating data flows between sources and targets. OWB is a comprehensive data integration and warehousing solution.

Multiple choice technology platforms and products
  1. Objects

  2. Mappings and mapping data

  3. Tables,Schema,Mapping

  4. Metadata definitions

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

Repositories in data management or metadata repositories (like Informatica or OBI) store metadata definitions. Metadata describes data models, mappings, schemas, and configurations. While objects, mappings, and tables are defined, the repository fundamentally stores their metadata definitions rather than the actual raw data or transient mappings.

Multiple choice technology platforms and products
  1. Materialized Views

  2. Tables and Views

  3. Facts and Dimesions

  4. Logical database objects

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

In Oracle Warehouse Builder (OWB), OLAP (Online Analytical Processing) constructs are represented by dimensional objects. OWB allows developers to design Facts and Dimensions, which form the star or snowflake schemas crucial for OLAP cubes.