Computer Knowledge

Database Management Systems

5,344 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 db2
  1. Develop and debug an SQL stored procedure

  2. Develop and debug a user-defined data type

  3. Develop and debug a user-defined function

  4. Develop and run XML queries

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

Developer Workbench supports SQL stored procedures, user-defined functions, and XML queries with debugging capabilities. User-defined data types (UDTs) are typically managed through Data Studio or command-line tools, not the Developer Workbench. UDTs require different administrative interfaces.

Multiple choice db2
  1. Control Center

  2. Journal

  3. Task Center

  4. Health Center

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

To solve this question, the user needs to have a basic understanding of database management systems.

The correct answer is A. Control Center.

Explanation of each option:

A. Control Center: This is a graphical user interface (GUI) tool that allows database administrators to perform a wide range of administrative tasks, such as creating and managing database objects, monitoring database performance, and configuring database security.

B. Journal: This option is incorrect. A journal is a record of database changes that is used for recovery purposes in case of system failure or other issues. It does not provide a way to perform administrative tasks against database objects.

C. Task Center: This option is incorrect. The Task Center is a tool that allows users to schedule and automate tasks within the database, such as backups and maintenance routines. It does not provide a way to perform administrative tasks against database objects.

D. Health Center: This option is incorrect. The Health Center is a tool that monitors the health of the database and provides diagnostic information about potential issues. It does not provide a way to perform administrative tasks against database objects.

Therefore, the correct answer is:

The Answer is: A. Control Center.

Multiple choice db2
  1. Task Center

  2. Visual Explain

  3. Configuration Assistant

  4. Satellite Administration Center

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

To set DB2 registry parameters, the correct tool is:

C. Configuration Assistant

Configuration Assistant is a DB2 tool that allows users to configure and customize various aspects of DB2, including setting DB2 registry parameters. It provides an interface for managing system configuration, such as registry settings, database manager configuration, and database configuration.

A. Task Center: Task Center is a tool used for managing and scheduling tasks in DB2, but it does not directly allow users to set DB2 registry parameters.

B. Visual Explain: Visual Explain is a tool used for analyzing and optimizing SQL queries in DB2, but it does not have the functionality to set DB2 registry parameters.

D. Satellite Administration Center: Satellite Administration Center is a tool used for managing and monitoring database replication in DB2, but it does not have the functionality to set DB2 registry parameters.

Therefore, the correct answer is C. Configuration Assistant.

Multiple choice db2
  1. Visual Explain

  2. Alert Center

  3. Journal

  4. Configuration Assistant

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

Visual Explain is the IBM DB2 tool used to analyze and catalog database access plans and performance metrics. Alert Center manages notifications, Journal tracks activity logs, and Configuration Assistant helps with setup. Cataloging databases to understand their structure and optimization is done through Visual Explain.

Multiple choice knowledge
  1. It is a physical representation of the data

  2. It allows a many-to-many relationship

  3. It is conceptually simple

  4. It will be dominant data base of the future

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

The network data model's key advantage is that it allows many-to-many relationships between records, unlike hierarchical models which only allow one-to-many. Option A is incorrect because it's a logical model, not physical. Option C is incorrect - network models are complex.

Multiple choice knowledge
  1. spreadsheet program

  2. word processor program

  3. graphics program

  4. all of the above

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

DBMS can export and import data to and from various applications including spreadsheets (for analysis), word processors (for reports), and graphics programs (for visualization). Modern DBMS support multiple data export/import formats.

Multiple choice knowledge
  1. DB/DC dictionary

  2. TOTAL

  3. ACCESS

  4. Datapac

  5. Data Manager

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

DB/DC Dictionary (Database/Data Communications Dictionary) is a data dictionary software tool that stores metadata about the database structure. TOTAL, ACCESS, Datapac, and Data Manager are database management systems or related products, not data dictionary tools.

Multiple choice knowledge
  1. bit-byte-record-field-file-database

  2. byte-bit-field-record-file-database

  3. bit-byte-field-record-file-database

  4. bit-byte-file-record-field-database

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

Data hierarchy in ascending order is: bit (smallest) → byte → field (combination of bytes) → record (combination of fields) → file (combination of records) → database (collection of files). Option C correctly orders these from smallest to largest.

Multiple choice crystal report-reporting
  1. Connect to Data Sources

  2. Create ODBC DSNs

  3. Add tables to a report

  4. Link the tables used in a report

  5. Add fields to a report

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

Database Expert connects to data sources, adds tables to reports, links related tables via joins, and adds fields from those tables to the report layout. Creating ODBC DSNs is done outside Crystal Reports in Windows ODBC Administrator, not within the Database Expert itself.

Multiple choice crystal report-reporting
  1. Database Fields

  2. Formula Fields

  3. Another Text Object

  4. Special Fields

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

Text objects in Crystal Reports can embed database fields to display data, other text objects for complex formatting, and special fields like page numbers or dates. Formula fields are typically separate objects that perform calculations, not embedded content within text objects.

Multiple choice sap abap
  1. Index Table

  2. Hashed table

  3. Sorted Table

  4. Standard Table

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

SAP ABAP defines three Standard Internal Table types: Standard Table (default, unsorted), Sorted Table (automatically sorted by key), and Hashed Table (accessed by hash algorithm). 'Index Table' is not a separate table type - it's a category that includes Standard and Sorted tables which can be accessed by index. The question asks what is NOT a type.

Multiple choice sap abap
  1. Call transaction

  2. Session method

  3. Direct input method

  4. All of the Above

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

BDC (Batch Data Communication) in SAP supports three techniques: Call Transaction (direct, synchronous processing), Session Method (creates sessions to be processed later), and Direct Input Method (for bulk data transfer via special interface). Since all three are valid techniques, 'All of the Above' is the correct answer.

Multiple choice sap abap
  1. Table

  2. Function Module

  3. Domain

  4. Structure

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

In the ABAP Data Dictionary, the core objects are Tables (store data), Domains (define field technical properties like type and length), and Structures (define complex types without storage). Function Modules are code objects stored in the Function Builder, not dictionary objects used for data definitions.