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. Communication structure

  2. Transfer rules

  3. Update rules

  4. Transfer structure

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

An InfoSource in SAP BW consists of communication structure, transfer rules, and transfer structure. Update rules are associated with InfoCubes/ODS objects, not the InfoSource itself.

Multiple choice technology
  1. Flat files

  2. Third-party extraction and load tools

  3. ACCESS database files

  4. CSV files only

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

Non-SAP data can enter SAP BW via flat files and third-party extraction tools. CSV files are a subset of flat files, not a separate category (D is incorrect). ACCESS files are not directly supported as standard data sources without middleware.

Multiple choice technology web technology
  1. 1

  2. 0

  3. -1

  4. 2

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

To solve this question, the user needs to know about the parameter CM.DbConnectPoolMax which is related to concurrent database connections in the content store.

The answer to the question is:

The default value of the parameter CM.DbConnectPoolMax is -1.

Explanation:

The parameter CM.DbConnectPoolMax specifies the maximum number of concurrent database connections that are allowed to the content store. The default value of this parameter is -1, which means that there is no limit to the number of concurrent connections.

Option A (1) is incorrect because the default value of CM.DbConnectPoolMax is not 1.

Option B (0) is incorrect because the default value of CM.DbConnectPoolMax is not 0.

Option D (2) is incorrect because the default value of CM.DbConnectPoolMax is not 2.

Therefore, the correct answer is option C ( -1).

Multiple choice technology
  1. Data volume of the SAP BW Statistics cannot be anticipated, as it is very strongly

  2. SAP BW Statistics are delivered as a part of the technical content

  3. All SAP BW Statistics query objects start with OSAP

  4. SAP BW Statistics is loaded in the InfoCube via an internal InfoSource

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

SAP BW Statistics are delivered as part of the technical content (B). Option A is grammatically incomplete and unclear. SAP BW Statistics query objects start with '0SAP' not 'OSAP' (C), and they are loaded via an internal process but not specifically via an internal InfoSource (D).

Multiple choice technology
  1. Always

  2. They are useful only for key figures with aggregation SUM, MIN, or MAX

  3. To increase the speed of loading during data update

  4. For reorganizations and realignments

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

Aggregates are pre-computed summaries that improve query performance. They are useful for key figures with aggregation types SUM, MIN, or MAX (B). Aggregates don't help with loading speed (C), are not always useful (A), and are not specifically for reorganizations (D).

Multiple choice technology
  1. Data from the BDS

  2. Data from the ITS

  3. Data about the data

  4. Data that do not change often

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

Metadata is 'data about data' - it describes the structure, format, and characteristics of data (C). Metadata is not specifically from BDS or ITS (A, B), and while it may not change frequently, that's a characteristic not the definition (D).

Multiple choice technology mainframe
  1. USED TO RESTART A PROGRAM AFTER ABNORMAL TERMINATION

  2. RESTART FROM SPECIFIC CHECKPOINT ID

  3. MUST BE THE FIRST CALL IN THE PROGRAM

  4. All of the above

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

The XRST (Restart) call in CICS/IMS serves multiple purposes: it restarts a program after abnormal termination, allows restarting from a specific checkpoint ID for recovery, and must be the first call in the program to properly initialize the restart process. All three statements about XRST are true.

Multiple choice technology enterprise content management
  1. Move documents between storage classes

  2. Remove records from RMDB which have been marked for Deletion

  3. Remove deleted documents from lbosdata

  4. All of above

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

The Migrator process in Content Manager is responsible for moving documents between storage classes, removing deleted records from RMDB, and cleaning up deleted files from storage, making 'All of above' correct.

Multiple choice technology enterprise content management
  1. To delete those records from RMDB which are marked for Deletion

  2. To permanently delete the documents from lobosdata

  3. To maintain the staging area size

  4. All of above

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

The primary role of the Purger process in IBM Content Manager Resource Manager is to clean up and maintain the size of the staging area by removing cached files.

Multiple choice technology enterprise content management
  1. Cache objects from Tivoli Storage Manager

  2. Cache objects from Remote resource managers

  3. LAN Cache

  4. All of above

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

The staging area in Content Manager serves as a cache to temporarily store objects retrieved from Tivoli Storage Manager, remote resource managers, or via LAN cache, making 'All of above' correct.

Multiple choice technology databases
  1. System tablespace

  2. Users tablespace

  3. Default tablespace for the user

  4. Oracle will give an error

  5. Undefined

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

When a user creates an object without specifying a TABLESPACE, Oracle stores it in the user's default tablespace. This is assigned to the user when created or altered with the DEFAULT TABLESPACE clause. The SYSTEM tablespace is for dictionary objects, not user data.

Multiple choice technology databases
  1. Anything Goes

  2. Shared Nothing

  3. Shared Everything

  4. Dual Redundant

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

Teradata is widely known as a 'shared nothing' architecture, where each node has its own CPU, memory, and disk storage, and nodes communicate through a high-speed interconnect. This design allows for linear scalability and high performance in parallel processing.