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. It is based on the Secondary Index

  2. It is based on the primary key of the table

  3. It is on the partitioning column

  4. It is based on the Primary Index of the table

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

With a Partitioned Primary Index (PPI), data distribution across AMPs is still determined by the Primary Index hash value, just like a regular PI. The partitioning component adds a secondary organization layer within each AMP, but does not affect how rows are distributed to AMPs initially. The partitioning column defines how data is organized within each AMP, not across AMPs.

Multiple choice technology databases
  1. It is the Primary Key of the table, which guarantees uniqueness

  2. It allows instantaneous dropping of old data and rapid addition of new data

  3. It avoids full table scans without the overhead of a secondary index.

  4. It places all data in a specific range on the same AMP.

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

PPI provides two key advantages: (C) It enables efficient range queries and eliminates full table scans without requiring a secondary index structure, and (D) It ensures all data within a specific range is stored on the same AMP, improving range query performance. Option A is incorrect because NUPI, not PPI, guarantees uniqueness. Option B is incorrect - while PPI facilitates data removal/addition by partition, it's not instantaneous.

Multiple choice technology databases
  1. A logon, submittal of work, and logoff

  2. A single sql statement

  3. A logical unit or work

  4. A single sql, statement and the unit of recovery

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

A transaction is defined as a logical unit of work (LUW) - one or more SQL statements that are treated as a single atomic operation. Either all statements in the transaction complete successfully, or none do (ACID properties). A transaction is not simply a logon/logoff sequence, nor is it limited to a single SQL statement, and while it relates to recovery, it's not defined solely by recovery units.

Multiple choice technology performance
  1. a.Send messages only when error occurs

  2. b.Extended log with Parameter substitution

  3. c.Standard Log

  4. d.Extended log with Data returned by server

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

Default logging in performance testing tools like LoadRunner is minimal - only errors are logged. This reduces I/O overhead during load tests, which is critical for accurate performance measurements.

Multiple choice technology
  1. Metadata for transformation

  2. Source schema

  3. Target schema

  4. None

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

The Informatica Repository stores ALL metadata including transformation rules, mappings, workflows, source definitions, target definitions, and sessions. However, given the question structure requiring a single choice, 'Metadata for transformation' is the most comprehensive and central answer. Source and target schemas are stored but are subsets of the broader metadata. The repository is essentially a metadata database managing all ETL artifacts.

Multiple choice technology
  1. WebI

  2. DeskI

  3. Universe

  4. None

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

Universe is the semantic layer in BusinessObjects that maps database objects to business terminology. It acts as an abstraction layer between the physical database and end-user reporting tools like WebI and DeskI. The universe contains classes, objects, and measures that users see in their reporting interface.

Multiple choice technology
  1. The session will not initiate.

  2. The session will initiate but will fail.

  3. The session will run successfully without writing the source, target, log, bad & cache files.

  4. The session will run successfully & write successfully into the source, target, log, bad & cache files.

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

When Informatica server cannot write to required directories (session log, bad files, cache files), the session initiates but fails during execution when it attempts to write these files. The initialization succeeds, but the runtime fails due to permission issues.

Multiple choice technology mainframe
  1. Relative Data Field

  2. Relative Definition Field

  3. Record Data Field

  4. Record Definition Field

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

RDF stands for Record Definition Field in database/records management contexts. The other options (Relative Data Field, Relative Definition Field, Record Data Field) are not standard abbreviations. RDF is used to define the structure and format of data records.

Multiple choice technology platforms and products
  1. The attribute that uniquely identifies the person

  2. The attribute that contains the full name of the person

  3. The attribute that is used by IBM Tivoli Identity Manager to resolve account ownerships during reconciliations

  4. The attribute that contains the fully qualified DN of the person in the IBM Tivoli Identity Manager ou=person container

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

In IBM Tivoli Identity Manager (TIM) CSV feed configuration, the name attribute maps to the attribute that uniquely identifies each individual person record in the source CSV file during reconciliation.

Multiple choice technology platforms and products
  1. Only reconcile once per week.

  2. Disable policy evaluation during all reconciliations.

  3. Exclude any attributes in the reconciliation that are not related to policy evaluation.

  4. Increase the size of the memory in the WebSphere JVM (Java Virtual Machine) until the reconciliation meets performance requirements.

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

Excluding attributes unrelated to policy evaluation reduces data transfer and processing overhead, improving reconciliation performance. Weekly reconciliation frequency is unrelated to performance optimization. Disabling policy evaluation would compromise functionality, and JVM tuning should follow proper sizing rather than arbitrary increases.