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 databases
  1. A system consisting of tables and relation between the tables

  2. Writes efficient queries itself without user intervention to retrieve and manipulate the data stored

  3. Handles data retrieval and manipulation using a functional programming language called SQL (Structured Query Language)

  4. A system consisting of memory structures and background process

  5. Translates a SQL query into a series of operations that retrieve the actual data from the database

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

RDBMS is a system of tables and relationships (A). It uses SQL for retrieval and manipulation (C), and translates SQL queries into data operations (E). RDBMS doesn't automatically write efficient queries - the user must write them (B is false). Memory structures and processes describe instance architecture, not the RDBMS concept (D is false).

Multiple choice technology databases
  1. Structured Query Language

  2. Stable Query Language

  3. Synchronous Query Language

  4. System Query Language

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

SQL indeed stands for Structured Query Language, which is the standard language used for managing and manipulating relational databases. The other options - Stable Query Language, Synchronous Query Language, and System Query Language - are incorrect acronyms that do not represent what SQL means.

Multiple choice technology databases
  1. True

  2. False

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

DATAFILEs are the physical operating system files that actually store the data on disk - they are tangible physical components of the database architecture. Logical structures like tables and segments ultimately map to these physical DATAFILEs for storage.

Multiple choice technology databases
  1. RANGE

  2. HASH

  3. LIST

  4. INTERVAL

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

HASH partitioning distributes rows uniformly across partitions using a hash algorithm on the partitioning key. It's ideal when access patterns are unknown or when even data distribution is desired. RANGE requires logical ranges and LIST requires known discrete values.

Multiple choice technology
  1. An attribute of an info object cannot be made navigational if the attribute-only flag on the attribute info object has been checked.

  2. Navigational attributes can be used to create aggregates.

  3. It is possible to make a display attribute to navigational in an info cube data without deleting all the data from the info cube.

  4. Once an attribute is made navigational in an info cube, it is possible to change it back to a display attribute if the data has been deleted from the info cube.

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

Navigational attributes cannot be made navigational if the attribute-only flag is set, they can be used for aggregates, and cannot be converted back to display attributes without deleting data. Option D correctly states that once data is deleted, the attribute can be reverted to display status.

Multiple choice technology
  1. An info cube needs to contain all info objects of the compounded info object if it has been included in the info cube.

  2. An info object cannot be included as a compounding object if it is defined as an attribute only.

  3. An info object can be included as an attribute and a compounding object simultaneously.

  4. The total length of a compounded info object cannot exceed 60.

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

Compounded info objects require all component objects to be present in the cube. An attribute-only object cannot be used for compounding. An object cannot simultaneously be an attribute and compounding object. The total length is capped at 60 characters for database efficiency.

Multiple choice technology
  1. Each characteristic of info cube should be assigned to at least one dimension.

  2. One characteristic can be assigned to more than one dimensions.

  3. One dimension can have more than one characteristic.

  4. More than one characteristic can be assigned to one line item dimension.

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

Every characteristic must be assigned to at least one dimension for proper organization. A characteristic can only belong to one dimension at a time. However, a single dimension can contain multiple characteristics. Line item dimensions are exceptions to normal dimension rules.

Multiple choice technology
  1. It is possible to create ODSs without any data fields.

  2. An ODS can have a maximum of 16 key fields.

  3. Characteristics and key figures can be added as key fields in an ODS.

  4. After creating and activating, an export data source is created automatically.

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

An ODS can be created with zero data fields (just key fields). Both characteristics and key figures are valid key field types. The 16-key-field limit is incorrect (ODS has no such fixed limit). Export data sources must be created manually, not automatically.

Multiple choice technology
  1. File System+ Operating System

  2. RDBMS+ Operating System

  3. Operation System + File System + RDBMS

  4. None of the above

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

Documentum Content Server requires a three-layer foundation: the Operating System (Windows/Linux/Unix), a File System for content storage, and a Relational Database Management System (RDBMS) for metadata and object management. All three components are essential - Content Server cannot run without any of them.

Multiple choice technology
  1. Docbase, File Storage

  2. RDBMS, File Storage

  3. File Storage, Repository

  4. Docbase, Repository

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

In Documentum terminology, a Docbase (better known as a Repository) is where all Documentum objects are stored. The Repository uses both the RDBMS (for metadata/object definitions) and file storage (for actual content files), but the term 'Docbase' or 'Repository' refers to the complete logical storage unit.

Multiple choice technology
  1. Properties file

  2. Database properties

  3. Docbase Config

  4. none of the above match the blank

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

In Documentum architecture, the Docbase Config object stores configuration and operational parameters for servers accessing the repository. This includes connection settings, server preferences, and runtime information.

Multiple choice technology
  1. Object type tables

  2. Type indexes

  3. Content files

  4. All of the above

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

A Documentum repository contains three core components: object type tables (defining custom types), type indexes (for querying), and content files (actual stored content). All are essential for repository operation.