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. Physical configuration

  2. Logical configuration

  3. Both 1 and 2

  4. None

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

A logical configuration defines how system components are architecturally structured and connected, regardless of their hardware deployment. When the application and database servers are installed on the same physical machine, they are logically separated but physically shared, representing a logical configuration rather than a physical one.

Multiple choice technology
  1. Usage

  2. Format

  3. Data Type

  4. Semi-Aggregate

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

The Usage property determines how a query item can be used in reports - as a fact, attribute, or identifier. This is the most critical setting to verify immediately after import because it affects how data can be aggregated and displayed. Format, Data Type, and Semi-Aggregate are important but secondary to Usage.

Multiple choice technology
  1. Defining multiple connections to the data source.

  2. Specifying the usage property for generated query items.

  3. Converting inner joins in the database to outer joins in the model

  4. Generating relationships based on existing primary and foreign key relationships in the database

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

When importing metadata, Framework Manager can automatically generate relationships between query subjects based on existing primary key and foreign key relationships in the database. This saves significant modeling time and ensures referential integrity. Multiple connections must be defined separately, usage is set manually, and join types are not automatically converted.

Multiple choice technology
  1. EquiJoin

  2. FullouterJoin

  3. LeftOuterJoin

  4. RightOuterJoin

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

In DataStage, when you configure a join stage without specifying the join type, it defaults to a Left Outer Join. This means all records from the left input link are included, and matching records from the right link are included where available. Equi-join requires exact matches on both sides, Full Outer includes all records from both sides, and Right Outer prioritizes the right input.

Multiple choice technology
  1. Designing Jobs

  2. Monitoring Jobs

  3. Creation/Deletion of Projects

  4. Import/Export Jobs

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

The DataStage Administrator role focuses on system-level management tasks including creating and deleting projects, managing users, and configuring system settings. Job design is done by developers, monitoring by operators, and import/export functions are available in Designer. The Administrator tool is specifically for project and user management.

Multiple choice technology testing
  1. Data file not present

  2. Data file too large

  3. Table is accessible to the user

  4. Data in wrong format

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

Negative testing validates how the system handles error conditions, such as missing files, format errors, or oversized inputs. Ensuring the database table is accessible to the user is a baseline requirement for normal operations, making it a positive test scenario rather than a negative one.

Multiple choice technology databases
  1. SYSTEM

  2. USERS

  3. SYSAUX

  4. INDEX

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

AWR (Automatic Workload Repository) data is stored in the SYSAUX tablespace in Oracle 10g and later. SYSAUX was introduced specifically to relieve the SYSTEM tablespace of auxiliary data like AWR statistics, making option C correct. SYSTEM is for core dictionary data, USERS for user objects.

Multiple choice technology packaged enterprise solutions
  1. Pooled

  2. Cluster

  3. Transparent

  4. View

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

Transparent tables in ABAP Dictionary have a 1:1 relationship with database tables - same name, same fields, same structure. Pooled and Cluster tables store multiple logical tables in fewer database tables. Views are virtual tables based on queries, not physical 1:1 mappings.

Multiple choice technology packaged enterprise solutions
  1. Master Data

  2. System data

  3. Project Data

  4. Organizational Data

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

In ABAP Dictionary, standard data classes are Master Data (master records), Transaction Data (transactional documents), Organization Data (customizing/organizational units), and System Data (system configuration). 'Project Data' is not a standard data class, making option C the correct answer to the negative question.

Multiple choice technology packaged enterprise solutions
  1. When you activate a transparent table in the Dictionary

  2. When you activate a transparent table in the ABAP Workbench

  3. When you create a transparent table

  4. When Basis creates the tablespace at the OS layer

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

In SAP ABAP, transparent tables are physically created in the underlying database when you activate them in the ABAP Dictionary. The activation process generates and executes the DDL statements that create the actual database table structure. Simply creating the table definition without activation does not create the physical table.