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 programming languages
  1. Use the output cache

  2. Use the cache object

  3. Use the ASP.NET central cache

  4. Use the client cache

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

Output caching stores the complete rendered page HTML, eliminating redundant database queries and page processing for historical book data that rarely changes. This server-side strategy is ideal for read-heavy data display scenarios. The Cache object requires manual implementation, client caching depends on browser settings, and ASP.NET central cache is not a standard feature.

Multiple choice technology platforms and products
  1. Cloudscape

  2. Oracle

  3. Informix

  4. Microsoft SQL (MSSQL) Server

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

WebLogic JMS with JDBC persistence supports multiple databases including Cloudscape, Oracle, Informix, and Microsoft SQL Server for persistent message storage. The JDBC store allows JMS to use any database with a compliant JDBC driver, providing flexibility in choosing the persistence backend.

Multiple choice technology platforms and products
  1. Waiters high

  2. Waiters

  3. Connections high

  4. Wait seconds high

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

The 'Waiters' attribute in the JDBC connection pool monitoring shows the current number of clients waiting for a connection. 'Waiters high' is the peak value reached, not the current count. 'Connections high' tracks maximum connections used, and 'Wait seconds high' tracks maximum wait time.

Multiple choice technology testing
  1. Bank

  2. ULIS

  3. IARD

  4. CIF

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

Bank serves as the master database in the AXA system architecture. It contains the primary customer and account records. Other applications like ULIS (life insurance), IARD (non-life insurance), and CIF (customer information interface) derive or reference data from the Bank master.

Multiple choice technology testing
  1. Back end application

  2. Front End application

  3. Interface

  4. Database

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

CIF is a Front End application. It provides the user interface for viewing and managing customer information, accessible to both internal and external users. It is not a backend application (processing logic), not an interface between systems, and not the database itself (though it accesses database data).

Multiple choice technology databases
  1. dbcc checkdb

  2. dbcc checkverify

  3. dbcc checkstorage

  4. dbcc checkalloc

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

dbcc checkstorage is the command that logs diagnostic information to the dbccdb database. It performs comprehensive storage analysis including space usage, fragmentation, and integrity checks, storing results for trend analysis.

Multiple choice technology databases
  1. Schema synonym

  2. Public synonym

  3. Private synonym

  4. Database synonym

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

Oracle supports two main types of synonyms: public synonyms (accessible to all users) and private synonyms (schema-specific). Public synonyms are created with CREATE PUBLIC SYNONYM and can be referenced by any user with appropriate privileges on the underlying object. Private synonyms are created in a specific schema and are only available to users who can access that schema. 'Schema synonym' and 'Database synonym' are not standard Oracle synonym categories.

Multiple choice technology databases
  1. Table

  2. View

  3. Procedure

  4. Package

  5. Another Synonym

  6. Sequence

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

Oracle allows creating synonyms for most database objects including tables, views, procedures, packages, sequences, and even other synonyms. This provides a flexible naming mechanism that can simplify references to objects with long names or complex schema paths. Synonyms cannot be created for all object types like indexes or triggers, but the listed options are all valid synonym targets. This capability is particularly useful for creating cleaner, more maintainable SQL code.