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
-
Communication structure
-
Transfer rules
-
Update rules
-
Transfer structure
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.
-
Flat files
-
Third-party extraction and load tools
-
ACCESS database files
-
CSV files only
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.
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).
-
Data volume of the SAP BW Statistics cannot be anticipated, as it is very strongly
-
SAP BW Statistics are delivered as a part of the technical content
-
All SAP BW Statistics query objects start with OSAP
-
SAP BW Statistics is loaded in the InfoCube via an internal InfoSource
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).
-
Always
-
They are useful only for key figures with aggregation SUM, MIN, or MAX
-
To increase the speed of loading during data update
-
For reorganizations and realignments
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).
-
Data from the BDS
-
Data from the ITS
-
Data about the data
-
Data that do not change often
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).
-
HIERARCHICAL INDEXED
-
HIERARCHICAL SEQUENTIAL
-
HIERARCHICAL DIRECT
-
HIERARCHICAL ACCESS
B,C
Correct answer
Explanation
DL/I provides two primary database organization methods: Hierarchical Sequential (where segments are physically adjacent) and Hierarchical Direct (which uses pointers to link segments).
-
USED TO RESTART A PROGRAM AFTER ABNORMAL TERMINATION
-
RESTART FROM SPECIFIC CHECKPOINT ID
-
MUST BE THE FIRST CALL IN THE PROGRAM
-
All of the above
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.
C
Correct answer
Explanation
A Map is a collection data structure designed to associate unique key objects with corresponding value objects, allowing efficient retrieval of values based on their keys.
-
Move documents between storage classes
-
Remove records from RMDB which have been marked for Deletion
-
Remove deleted documents from lbosdata
-
All of above
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.
-
To delete those records from RMDB which are marked for Deletion
-
To permanently delete the documents from lobosdata
-
To maintain the staging area size
-
All of above
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.
-
Cache objects from Tivoli Storage Manager
-
Cache objects from Remote resource managers
-
LAN Cache
-
All of above
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.
A
Correct answer
Explanation
When a client deletes a document in IBM Content Manager, the metadata and entries are immediately removed from the library server database tables.
-
System tablespace
-
Users tablespace
-
Default tablespace for the user
-
Oracle will give an error
-
Undefined
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.
-
Anything Goes
-
Shared Nothing
-
Shared Everything
-
Dual Redundant
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.