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 platforms and products
  1. Data warehouse Admin Tool

  2. Data Administration Console

  3. Database Administration Console

  4. Data warehouse Administration Console

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

In Oracle Business Intelligence (OBI), DAC stands for Data Warehouse Administration Console. It is a centralized command and control center used to configure, manage, and monitor data warehouse execution plans and ETL processes.

Multiple choice technology databases
  1. records

  2. fields

  3. articles

  4. names

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

A database is divided into records (also called rows or tuples). Each record represents a single entity, item, or entry in the database. Records are composed of fields (attributes/columns), but 'records' is the fundamental unit of division. Fields, articles, and names are components or abstractions, not the primary division.

Multiple choice technology databases
  1. one book, journal, video, CD, etc.

  2. one author

  3. one subject

  4. all of the above

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

In a library catalogue database, each record typically represents one bibliographic item (book, journal, video, CD, etc.). While a record CONTAINS information about the author(s) and subject(s), it doesn't represent the author or subject themselves - those would be in separate tables in a normalized database. 'All of the above' is incorrect because a single record doesn't represent an author or subject.

Multiple choice technology databases
  1. the whole article

  2. a summary of the article

  3. the title of the article

  4. the author, title and source of the article

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

Electronic article indexes (bibliographic databases) contain citations, not full text. A citation includes the author, title, source (journal name, volume, issue, page numbers, date), and sometimes an abstract/summary. The database does NOT contain the whole article (that would be full-text) or just the title or summary alone - it contains the complete bibliographic citation.

Multiple choice technology databases
  1. an actor

  2. a director

  3. a year

  4. a movie

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

In a movies database where you're organizing your Top 100 list, each record should represent one movie. The record would contain fields for Title, Actor(s), Director, Year, Genre, etc. A record representing an actor, director, or year would only capture partial information - you want the complete entity (the movie) as your primary record.

Multiple choice technology databases
  1. DB2 Everyplace

  2. DB2 Express Edition

  3. DB2 Workgroup Server Edition

  4. DB2 Enterprise Server Edition

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

DB2 Express Edition is IBM's free/low-cost community edition of DB2, designed for small to medium workloads. DB2 Everyplace is for mobile devices, DB2 Workgroup Server Edition is for small-medium business (higher cost), and DB2 Enterprise Server Edition is for large enterprises (highest cost). For a Windows server with 2 CPUs, Express Edition is the lowest cost legally installable option.

Multiple choice technology databases
  1. INT

  2. XML

  3. CHAR

  4. DOUBLE

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

In DB2, INT (4 bytes), CHAR (fixed by definition), and DOUBLE (8 bytes) are all fixed-length data types. XML is a variable-length data type because XML documents have inherently unpredictable sizes and are stored using LOB-like mechanisms internally. The XML type dynamically allocates storage based on the actual document size.

Multiple choice technology databases
  1. SMALLINT

  2. NUMERIC

  3. INTEGER

  4. DOUBLE

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

Identity columns in DB2 require exact numeric types with a scale of zero (whole numbers): SMALLINT, INTEGER, or BIGINT. DECIMAL/NUMERIC with scale 0 also work. DOUBLE is a floating-point type with imprecise representation and cannot be used for identity columns because identity values must be exact, predictable integers.

Multiple choice technology databases
  1. Tablespaces

  2. Buffer pools

  3. Tables

  4. Rows

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

DB2 locking mechanisms can lock tables, rows, and other database objects at various granularities. Buffer pools are memory cache areas used for data page storage and are not database objects that can be locked - locking applies to logical data structures (tables, rows), not memory management structures.

Multiple choice technology testing
  1. Multiple items as filter

  2. Two items as a filter

  3. Five items as filter

  4. Single item as a filter

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

Quality Center allows you to define multiple filter criteria simultaneously to narrow down your data view. You're not limited to a single filter - you can combine several conditions to create complex queries. Options B and C incorrectly suggest arbitrary limits, while D is too restrictive.

Multiple choice technology databases
  1. True

  2. False

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

The nzsql -d flag specifies which database to connect to (requires a database name as argument), it does not list databases. To list all databases in nzsql, use the \l command once inside an nzsql session, not the -d command-line flag.

Multiple choice technology programming languages
  1. SetTransObject()

  2. SetTrans()

  3. SetDBTrans()

  4. SetLimitTrans()

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

SetTrans() pools database connections by sharing a single connection among multiple Datawindows, releasing it after each transaction. This is efficient when connections are limited. SetTransObject() maintains a dedicated connection per Datawindow, which is more efficient for frequent database access but uses more connections.

Multiple choice technology web technology
  1. D-List

  2. Access Table

  3. File Map

  4. Allocation Table

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

In Cognos Analyst, the core components include D-Lists (dimension lists containing items), D-Cubes (multidimensional data structures), D-Links (data transfer mechanisms), Allocation Tables (for distributing values), and File Maps (for import/export). Access Tables are not an Analyst component - this appears to be a distractor mixing terminology. Access is typically associated with database permissions or Microsoft Access, not Analyst architecture.

Multiple choice technology
  1. Database cache optimizes, worklists items.

  2. Database cache optimizes, reading values.

  3. PEGARULES database cannot be accessed by external reporting tools.

  4. none

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

The PEGARULES database is Pega's internal database schema with restricted access. External reporting tools cannot directly query this database due to its proprietary structure and access restrictions. Database cache optimization refers to performance aspects, not external access.