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 platforms and products
  1. Enable IBM Tivoli Identity Manager server-side sorting.

  2. Limit the number of attributes returned by the adapter and processed by IBM Tivoli Identity Manager.

  3. Decrease the default maximum duration as specified in the reconciliation schedule.

  4. Decrease the SearchALUnusedTimeout configuration parameter in the RMI Dispatcher.

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

Limiting attributes returned by the adapter reduces processing overhead and improves performance. Server-side sorting is not a performance lever for reconciliation. Decreasing duration might cause incomplete reconciliations. SearchALUnusedTimeout is unrelated to this performance issue.

Multiple choice technology testing
  1. All DDL statements

  2. All DML statements

  3. SPs, functions and triggers

  4. DDL & DML

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

Database unit tests in VSTT are designed to test programmable database objects like Stored Procedures (SPs), functions, and triggers because these contain business logic that can be validated through testing. DDL statements (CREATE, ALTER, DROP) define database structure and are typically tested through integration or schema tests, while DML statements (INSERT, UPDATE, DELETE) are data operations that are better tested at a higher level.

Multiple choice technology databases
  1. View

  2. Index

  3. Default

  4. Extended stored procedure

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

Stored procedures can execute DDL commands and create various database objects. While stored procedures can technically create views, defaults, and extended procedures, creating indexes within stored procedures is particularly common for maintenance tasks, performance optimization, and automated index management operations.

Multiple choice technology databases
  1. allow updates to system tables

  2. locking

  3. Setup

  4. no of lock

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

sp_configure 'allow updates' was a valid configuration parameter in older SQL Server versions, controlling whether users could directly update system tables. This option has been deprecated and removed in modern SQL Server versions for security reasons. The other options (locking, Setup, no of lock) are not valid sp_configure parameter names.

Multiple choice technology
  1. Rosario

  2. Orcas

  3. Yukon

  4. LINQ

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

LINQ (Language Integrated Query) is the unified programming model for querying objects, databases, and XML in .NET. The other options are Microsoft code names: Rosario (future Team System), Orcas (VS 2008), Yukon (SQL Server 2005). Only LINQ is the actual technology name for query integration across data sources.

Multiple choice technology platforms and products
  1. Native Integration

  2. Universal Installation Option Integration

  3. Access Management Integration

  4. SAML Integration

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

Oracle Adaptive Access Manager supports multiple integration patterns: Native (direct SDK integration), Universal Installation Option (drop-in authentication), Access Management Integration (with Oracle Access Manager), and SAML Integration (federated identity).

Multiple choice technology testing
  1. .Net Framework

  2. SQL Server

  3. Server OS

  4. All the Above

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

SharePoint requires all three components: .NET Framework for the application runtime, SQL Server for the content database, and a Windows Server operating system as it cannot run on client Windows versions.

Multiple choice technology testing
  1. As a lookup field in list column

  2. Can be derived programmatically

  3. As a lookup field in list column & Can be derived programmatically

  4. Not supported by SharePoint

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

List data in SharePoint can be reused in two primary ways: as a lookup field in another list column, and programmatically through the object model or APIs. Lookup fields create relationships between lists, while programmatic access allows custom solutions to retrieve and manipulate list data. Options A and B are each partially correct, making C the complete answer.

Multiple choice technology programming languages
  1. Changeset

  2. Check-in

  3. Shelveset

  4. None of the above

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

A shelveset in TFS allows you to store your pending changes on the server without committing them to the source control repository. This is useful for: (1) saving work-in-progress to share with others for code review, (2) switching to another task, or (3) getting a clean workspace for build. Changesets are permanent commits, and check-ins finalize changes.