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. DBA Team servicing the global database environment

  2. Customer information repository

  3. Customer payment system

  4. Customer Global New Account Generation system for

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

In specific enterprise database architecture contexts, CMHDB serves as a customer information repository (often storing customer history data). The distractors incorrectly define it as the database administration team itself, a payment transaction system, or a global new account generator system, which represent different components.

Multiple choice technology
  1. Financial data of a customer like payments

  2. Personal information of a customer like name & address

  3. Transactions done by a customer

  4. Interest charges for a customer

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

Demographic data refers to personal information about customers such as name, address, phone number, age, gender, and similar individual characteristics. Financial data (payments, transactions, interest charges) are separate categories of customer information stored in different systems and used for different purposes.

Multiple choice technology
  1. VSAM

  2. DB2

  3. IMS

  4. IDMS

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

CMHDB commonly uses DB2 as its database storage system. DB2 is IBM's relational database product commonly used in mainframe and enterprise environments. VSAM, IMS, and IDMS are alternative database/storage technologies but DB2 is the standard for CMHDB.

Multiple choice technology
  1. Oracle

  2. IMS database

  3. IDMS database

  4. None of the above

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

The CMHDB process does not store data in Oracle, IMS, or IDMS databases directly. It likely uses a different database system or storage mechanism altogether, hence None of the above is correct. This question specifically refers to the CMHDB process storage, not general CMHDB data storage.

Multiple choice technology
  1. EPRD

  2. WROC

  3. LDEV

  4. PDEV

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

For DB2 testing, CMHDB uses tables in the PDEV environment. PDEV likely stands for Production Development or a parallel development environment used for testing DB2-related functionality. EPRD, WROC, and LDEV are not the correct table environments for DB2 testing.

Multiple choice technology
  1. CRD_PROD_LOOKUP

  2. MARKET_LOOKUP

  3. CUST_LOOKUP

  4. CM_LOOKUP

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

CRD_PROD_LOOKUP (Card Product Lookup) is the CMHDB table that stores product-level information. This table name directly indicates its purpose - looking up card product details. The other tables (MARKET_LOOKUP, CUST_LOOKUP, CM_LOOKUP) serve different purposes for market, customer, and credit management lookups respectively.

Multiple choice technology
  1. Daily

  2. Weekly

  3. Monthly

  4. Both daily and monthly

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

Current tables load data on a monthly basis, providing regular snapshots of current state without requiring daily refresh cycles. This monthly frequency balances data freshness with system performance and resource utilization.

Multiple choice technology
  1. CARD_RUNSTAT

  2. CARD_ACCT_XREF

  3. cARD_LOOKUP

  4. all of above

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

CARD_RUNSTAT specifically tracks active card member status and runtime information. The other tables serve different purposes: CARD_ACCT_XREF maps card-account relationships, CARD_LOOKUP provides reference data, and option D incorrectly claims all tables contain the same data.

Multiple choice technology databases
  1. Logical representation of machine

  2. collection of domains

  3. Distributed set of administrative services

  4. Distribute set of application services and Service Manger

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

In network domains (specifically Windows Active Directory or similar directory services), a node represents a single machine or computer account within the domain structure. It's the logical representation of that physical or virtual machine's identity and membership in the domain.

Multiple choice technology databases
  1. Logical representation of machine

  2. collection of domains

  3. Distributed set of administrative services

  4. Distribute set of application services and Service Manger

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

In distributed systems and domain architecture, a node is the logical representation of a physical or virtual machine within a domain. Option A correctly defines this relationship. A node is NOT a collection of domains (B), administrative services (C), or application services (D).

Multiple choice technology
  1. SystemPilotDatabase

  2. SystemSelectorSubsystem

  3. SystemConfiguration

  4. SystemFPC

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

The SystemPilotDatabase Management Object in BSSM contains both PDB (Pilot Database) and Cell ID related data. This MO serves as the central repository for pilot information and cell identification data.

Multiple choice technology
  1. PDB Table

  2. CELL ID Table

  3. FPC Array

  4. Non FPC Array

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

PDB data structure includes PDB Table, CELL ID Table, and FPC Array. Non FPC Array is not part of the standard PDB data composition.

Multiple choice technology
  1. Oracle/MySQL

  2. Objectivity

  3. PCUFP

  4. DSFP

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

PDB data is stored on DSFP (Data Storage Facility Peripheral) cards. Oracle/MySQL are databases, Objectivity is an ODBMS, and PCUFP is unrelated to PDB storage.

Multiple choice technology databases
  1. DBA

  2. SYSTEM ADMIN

  3. APPLICATION DEVELOPERS

  4. ALL

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

Performance tuning in database systems involves collaboration across roles: DBAs handle database-level optimization, system admins manage hardware and OS configuration, and application developers optimize SQL queries and application code.

Multiple choice technology databases
  1. SHU IMMEDIATE

  2. ADDING MORE REDO LOGS

  3. BOTH A AND B

  4. NONE OF THE ABOVE

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

"Checkpoint not complete" occurs in Oracle databases when the DBWR cannot write dirty blocks fast enough before the redo logs wrap around. Adding more redo log groups or increasing their size gives DBWR more time to complete checkpoints. SHUTDOWN IMMEDIATE does not resolve this runtime performance issue.