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. There is no such thing as Reporting consistency

  2. Reports generated by all users on the infocube are the same

  3. New rows added to infocube cannt be used until aggregates are updated

  4. None

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

Reporting consistency means that all users querying the same InfoCube get identical results. If User A and User B run the same report on the same data, outputs must match - this is fundamental to data warehouse integrity.

Multiple choice technology platforms and products
  1. Web Inteligence

  2. Import Wizard

  3. CMC

  4. CMS

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

The Import Wizard is the official SAP BusinessObjects tool for migrating content from older Business Objects versions (like 5.x or 6.x) to BusinessObjects XI or later versions. It transfers universes, reports, documents, and other metadata while preserving as much configuration and formatting as possible.

Multiple choice technology databases
  1. DBD

  2. PSB

  3. PCB

  4. IMSCB

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

IMS DB has three control blocks: DBD (Database Descriptor) describes the database structure, PSB (Program Specification Block) describes the program's view of the database, and PCB (Program Communication Block) is the actual interface used by the program. IMSCB is not a standard IMS control block.

Multiple choice technology databases
  1. BATCH DL/I

  2. MPP

  3. BMP

  4. ALL

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

IMS DB supports two primary processing modes: online (MPP - Message Processing Program) and batch (BMP - Batch Message Processing and Batch DL/I). Option D 'ALL' correctly encompasses all available processing modes. The other options list individual modes but don't represent the complete set.

Multiple choice technology databases
  1. PCB

  2. SENSEG

  3. SENFLD

  4. PROCOPT

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

PROCOPT (Processing Options) is the parameter that defines what types of database operations are permitted - such as GET (read), INSERT (create), REPLACE (update), and DELETE. It is specified in the PCB and SENSEG statements to control access rights at the database or segment level. PCB, SENSEG, and SENFLD are structure definitions, not access control specifications.

Multiple choice technology databases
  1. TIMESTAMP

  2. . INTERVAL MONTH TO DAY

  3. INTERVAL DAY TO SECOND

  4. INTERVAL YEAR TO MONTH

  5. TIMESTAMP WITH DATABASE TIMEZONE

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

TIMESTAMP and INTERVAL types (DAY TO SECOND, YEAR TO MONTH) are valid SQL datetime data types for column definitions. INTERVAL MONTH TO DAY is not a valid interval type (should be INTERVAL DAY TO MONTH), and TIMESTAMP WITH DATABASE TIMEZONE is incorrect syntax.

Multiple choice technology mainframe
  1. Storage dataset

  2. Temporary dataset

  3. Both

  4. None of the above

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

Temporary datasets in JCL are created with DSN=&&prefix and are used only for the duration of the job. They are automatically deleted after job completion. Storage datasets are permanent datasets that persist beyond the job, making 'Temporary dataset' the correct answer.

Multiple choice technology web technology
  1. DATACOUNT

  2. DCOUNT

  3. DCOUNTA

  4. None of the Above

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

DCOUNT is a database function that counts cells containing numbers within a specified database range. This differs from DCOUNTA which counts all non-blank cells regardless of content type. DCOUNT specifically targets numeric data only, making it useful for numerical database analysis.

Multiple choice technology web technology
  1. DATACOUNT

  2. DCOUNT

  3. DCOUNTA

  4. None of the Above

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

DCOUNTA counts all non-blank cells in a database, regardless of whether they contain numbers, text, or other data types. This makes it more inclusive than DCOUNT which only counts numeric cells. The 'A' suffix typically indicates 'all' or 'any' content type in database functions.

Multiple choice technology databases
  1. iBATIS is a O/R Mapping tool.

  2. iBATIS is a first class persistence framework with support for custom SQL, stored procedures and advanced mappings.

  3. iBATIS is a java development tool.

  4. iBATIS is a first class persistence framework, and will not support for custom SQL, but will support stored procedures.

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

iBATIS is a persistence framework that maps SQL statements to Java objects, emphasizing full control over custom SQL and stored procedures rather than full object-relational mapping (ORM).