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
  1. ETL tool

  2. Metadata Modelling tool

  3. Database

  4. Web portal

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

IBM Cognos Framework Manager is a metadata modeling tool used to create and manage data models for Business Intelligence reports. It defines the relationships between data sources, creates calculated columns, and builds the semantic layer that Report Studio uses. It is not an ETL tool (those extract/transform/load data), not a database, and not a web portal.

Multiple choice technology platforms and products
  1. Incoming Data

  2. Golden copy data

  3. intermediate data

  4. Non-conformant data

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

Suspect Items in data quality contexts refer to data that fails validation rules or doesn't conform to expected standards - hence 'Non-conformant data'. This distinguishes them from valid incoming data, golden copies (validated reference data), or intermediate processing data.

Multiple choice technology databases
  1. data definition language (DDL) for all objects in a schema

  2. DDL for all object grants on a table in the database

  3. report of invalidated objects in a schema

  4. report of statistics of an object in the database

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

DBMS_METADATA package can retrieve DDL (Data Definition Language) for all objects within a schema, making option A correct. It can also retrieve DDL for object grants on database tables, making option B correct. Options C and D describe reports that are not the primary function of DBMS_METADATA.

Multiple choice technology platforms and products
  1. a. Passes values from one Action to another

  2. b. Stores AE source code

  3. c. Stores application data

  4. d. Passes values to the PeopleSoft Process Scheduler

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

The Application Engine state record is a dedicated record that passes values between consecutive Actions within an AE program. It maintains state across the program execution, similar to how variables persist between steps. It does not store source code or application data - those are in other tables.

Multiple choice technology platforms and products
  1. a. updating the personal data record for an employee

  2. b. setting the default database type in Configuration Manager

  3. c. running an upgrade/copy in Application Designer

  4. d. updating a user profile in Maintain Security

  5. e. executing a query defined in PeopleSoft Query

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

A two-tier connection in PeopleSoft 8 means connecting directly to the application server and database server. Running an upgrade or copy in Application Designer requires this direct database access mode, unlike regular operations that can use the three-tier (web server, application server, database) architecture.

Multiple choice technology platforms and products
  1. a. Passes values from one Action to another

  2. b. Stores AE source code

  3. c. Stores application data

  4. d. Passes values to the PeopleSoft Process Scheduler

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

The Application Engine state record is specifically designed to pass values between different actions within an AE program. It serves as a temporary storage mechanism for data that needs to be shared across multiple actions in a PeopleSoft AE program. It does not store source code (that's in the database) or application data (that's in application tables), and it's not used with the Process Scheduler.

Multiple choice technology platforms and products
  1. a. updating the personal data record for an employee

  2. b. setting the default database type in Configuration Manager

  3. c. running an upgrade/copy in Application Designer

  4. d. updating a user profile in Maintain Security

  5. e. executing a query defined in PeopleSoft Query

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

A direct two-tier connection (client directly to the database) is required in PeopleSoft for administrative tasks performed in Application Designer, such as running database upgrades or copying projects. End-user activities like updating personal data, user profiles, or running queries typically go through a three-tier connection involving the application server.

Multiple choice technology platforms and products
  1. a. Partition by Key

  2. b. Partition by Round Robin

  3. c. Partition by Expression

  4. d. Partition by Range

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

Partition by Round Robin distributes records evenly across partitions by cycling through partitions sequentially - first record to partition 1, second to partition 2, and so on, then back to partition 1. This ensures balanced distribution regardless of data characteristics. Key partitioning causes skew if keys aren't uniformly distributed, Expression partitioning depends on the expression logic, and Range partitioning creates ordered but potentially uneven partitions.

Multiple choice technology platforms and products
  1. a. Partition by Key

  2. b. Partition by Round Robin

  3. c. Partition by Expression

  4. d. Partition by Range

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

Partition by Round Robin distributes records evenly across partitions by cycling through partitions sequentially - first record to partition 1, second to partition 2, and so on, then back to partition 1. This ensures balanced distribution regardless of data characteristics. Key partitioning causes skew if keys aren't uniformly distributed, Expression partitioning depends on the expression logic, and Range partitioning creates ordered but potentially uneven partitions.

Multiple choice technology programming languages
  1. sharedObject.flush

  2. sharedObject.write

  3. sharedObject.in

  4. sharedObject.open

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

The flush() method immediately writes shared object data to the local SOL file. The write() method does not exist for SharedObject, while open() and in() are not the standard methods for persisting data - open() establishes the connection and get() retrieves data.

Multiple choice technology databases
    1. Insert into
    1. Create mining structure
    1. Browse data
    1. Select from
    1. Browse mining model
Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

DMX (Data Mining Extensions) uses SELECT FROM syntax for browsing and prediction queries against mining models. This allows you to retrieve patterns and make predictions from trained models. The other options like INSERT INTO, CREATE MINING STRUCTURE are for different operations (training, creation).

Multiple choice technology databases
    1. Many dimensions, large dense datasets
    1. Few dimensions, small dense datasets
    1. Few dimensions, small sparse datasets
    1. Many dimensions, small sparse datasets
    1. Many dimensions, large sparse datasets
Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Relational OLAP (ROLAP) stores data in relational databases and is most suitable when you have few dimensions and small dense datasets. ROLAP avoids the preprocessing overhead of MOLAP and works well when data doesn't have significant sparsity. For many dimensions or large datasets, MOLAP or HOLAP would be more appropriate.

Multiple choice technology databases
    1. Comprehensive data on operations from all departments
    1. A subset of a data warehouse
    1. Individual invoices
    1. Accounting profit and loss reports
    1. Data managed by a particular department of the company
Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A dependent data mart is derived from and dependent on the enterprise data warehouse. It contains a subset of the data warehouse focused on a specific business unit or function. Independent data marts pull directly from source systems, but dependent ones are subsets of the centralized warehouse.

Multiple choice technology databases
    1. Data fields that reference numeric data should be indexed.
    1. Only data fields that change over time should be indexed.
    1. Data fields that are referenced by queries should be indexed.
    1. All data fields should be indexed.
    1. Data fields that reference text and large object data should be indexed.
Reveal answer Fill a bubble to check yourself
A Correct answer