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. Warning threshold

  2. Critical threshold

  3. Both A and B

  4. Neither A or B

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

Oracle Database Control supports both warning and critical thresholds for alert configuration. When monitoring tablespace free space, you can set a warning threshold to alert when free space drops to a concerning level, and a critical threshold for more urgent alerts when space becomes critically low.

Multiple choice technology databases
  1. In the DBA_ALERTS data dictionary view

  2. In the V$ALERTS dynamic performance view
  3. In the EM Database Control main screen

  4. No alert information is sent or displayed.

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

When no email address is configured, EM Database Control displays alert information on its main console screen. The alerts remain visible in the EM interface for administrators to review. Alerts are not stored in data dictionary views like DBA_ALERTS or dynamic performance views like V$ALERTS when no email is specified.

Multiple choice technology programming languages
  1. A view contains data

  2. Views can be buffered

  3. Views can not be buffered

  4. None of above

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

This appears to be a SAP ABAP-specific question. In SAP, views can be buffered (option to buffer view data in memory for performance), though views themselves don't contain physical data - they store queries that generate data when accessed. The correct answer depends on SAP's view buffering capability, which does exist.

Multiple choice technology
  1. Presentation Interface.

  2. Database Interface.

  3. Operating system Interface.

  4. All the above

  5. None of the above

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

The SAP R/3 system architecture consists of three central interfaces that handle different communication layers: the Presentation Interface manages user interactions, the Database Interface handles data persistence and retrieval, and the Operating System Interface manages system-level operations. These three interfaces work together to form the complete R/3 architecture, making option D correct.

Multiple choice technology databases
  1. listener.ora

  2. sqlnet.ora server file

  3. sqlnet.ora client file

  4. tnsnames.ora server file

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

The AUTOMATIC_IPC parameter is configured in the sqlnet.ora file on the Oracle server side. It controls whether Oracle uses Inter-Process Communication (IPC) for local database connections automatically. The listener.ora handles listener configuration, tnsnames.ora contains connection descriptors, and the client sqlnet.ora manages client-side network settings.

Multiple choice technology platforms and products
  1. Oracle only

  2. SQL Server Only

  3. Oracle & SQL Server Only

  4. Oracle, SQL Server & DB2

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

TIBCO iProcess Engine supports multiple major database platforms. While Oracle is common in enterprise deployments, iProcess also supports Microsoft SQL Server and IBM DB2, giving organizations flexibility in their database choice. Options A, B, and C are all incorrect because they artificially limit the supported platforms.

Multiple choice technology databases
  1. create user ops$admin identified by os;
  2. create user ops$admin identified externally;
  3. create user ops$admin nopassword;
  4. create user ops$admin authenticated by os;
Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

To solve this question, the user needs to have knowledge about Oracle database user authentication methods.

Option A: This option creates an Oracle user account with the name 'ops$admin' and the password 'os'. However, it uses a password file for authentication, not the operating system. Therefore, this option is incorrect.

Option B: This option creates an Oracle user account with the name 'ops$admin' and identifies it as an external user, which means that authentication is done by the operating system. Therefore, this option is correct.

Option C: This option creates an Oracle user account with the name 'ops$admin' and no password. This is not a secure method of authentication and is not related to operating system authentication. Therefore, this option is incorrect.

Option D: This option creates an Oracle user account with the name 'ops$admin' and specifies that it should be authenticated by the operating system. However, it does not create an operating system account for the user. Therefore, this option is incorrect.

The Answer is: B

Multiple choice technology
  1. Report Specifications

  2. Packages

  3. Connection Information for datasources

  4. Actual Data stored in Query Database

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

The Content Store is a database storing Cognos metadata - report specs, packages, models, security settings, data source connections, and portal configuration. It does NOT store actual business data from source databases.

Multiple choice technology databases
  1. The size of an undo block

  2. The size of the redo log files.

  3. The size of the database buffer cache.

  4. The value of the UNDO_RETENTION parameter.

  5. Undo blocks generated per second.

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

The UNDO tablespace size depends on three key factors: the physical size of each undo block, the UNDO_RETENTION parameter value (how long undo data must be kept), and the rate of undo block generation per second. The redo log size and buffer cache size influence general database performance but do not directly determine UNDO tablespace sizing.

Multiple choice technology programming languages
  1. SYSABEND

  2. SYSMDUMP

  3. SYSUDUMP

  4. Any of the above

  5. None

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

All three DD statements (SYSABEND, SYSMDUMP, and SYSUDUMP) are used to request storage dumps upon a program failure. They differ in the level of detail and format (formatted vs. unformatted), but any of them will trigger a dump.

Multiple choice technology web technology
  1. a. ERROR

  2. b. WARNING

  3. c. INFO

  4. d. CRITICAL

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

JDBC connection failures during server startup are logged at ERROR level because they prevent proper initialization of the application server. ERROR messages indicate problems that affect system functionality. CRITICAL is not a standard WebLogic logging level.