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 web technology
  1. True

  2. False

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

SQL is Oracle's standard query language for data manipulation and retrieval, while PL/SQL is Oracle's procedural extension to SQL that adds programming constructs like variables, conditions, and loops. Both are fundamental languages for working with Oracle databases - SQL for declarative data operations and PL/SQL for complex procedural logic. This statement accurately describes the two core languages used in Oracle database environments.

Multiple choice technology databases
  1. Cant protect the code

  2. Third party utilities

  3. Binary wrapper utility

  4. Only DBA's are allowed to protect

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

Oracle provides the wrap utility, which is a binary wrapper utility that obfuscates PL/SQL source code. This protects intellectual property by preventing users from reading the code while still allowing the database to compile and execute it normally.

Multiple choice technology
  1. Thru' DS Director

  2. Thru’ DS Administrator

  3. Thru' Multi Client Manager

  4. None of the above

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

Purged job logs in DataStage cannot be retrieved through DS Director, DS Administrator, or Multi Client Manager. Once a log is purged, it is permanently deleted from the system. The correct answer is that none of these tools can recover purged logs.

Multiple choice technology databases
  1. True

  2. False

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

SQL*Loader can handle EBCDIC data through character set conversion specifications in the control file. EBCDIC (Extended Binary Coded Decimal Interchange Code) is commonly used on IBM mainframes, and SQL*Loader includes built-in support for converting EBCDIC to ASCII during the load process.

Multiple choice technology databases
  1. True

  2. False

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

SQL*Loader can load binary data including images, sound clips, and documents using LOB (Large Object) datatypes like BLOB, BFILE, and CLOB. The control file can specify LOBFILE directives to load LOB data from separate files, making it capable of handling multimedia content.

Multiple choice technology web technology
  1. 3

  2. 2

  3. 4

  4. 1

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

The NBT Application uses three databases. This multi-database architecture likely separates concerns such as user authentication, business data, and reporting/analytics. Using multiple databases improves performance, security, and maintainability by isolating different data domains.

Multiple choice technology programming languages
  1. A DataSet can be synchronised with the database.

  2. A DataSet can be synchronised with a RecordSet.

  3. A DataSet can be converted to XML.

  4. You can infer the schema from a DataSet.

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

ADO.NET DataSets and classic ADO RecordSets are fundamentally different technologies that cannot be directly synchronized. DataSets are XML-based, disconnected data containers from .NET, while RecordSets are COM-based objects from classic ADO. You can sync DataSets with databases, convert them to XML, and infer schemas, but there's no direct DataSet-to-RecordSet synchronization mechanism.

Multiple choice technology architecture
  1. Service Activator

  2. Data Access Object

  3. Domain Store

  4. Business Object

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

The Data Access Object (DAO) pattern encapsulates all data access logic, providing a clean separation between business logic and data persistence. It enables loose coupling by abstracting the underlying data source and providing CRUD operations. Service Activator enables async processing, Domain Store handles transparent persistence, and Business Object represents business entities.

Multiple choice technology databases
  1. System tablespace

  2. Users tablespace

  3. Default tablespace for the user

  4. Oracle will give an error

  5. Undefined

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

When you create an object without specifying a TABLESPACE clause, Oracle automatically stores it in that user's default tablespace. This default tablespace is assigned when the user account is created. The system tablespace is reserved for data dictionary objects, not user data.

Multiple choice technology packaged enterprise solutions
  1. True

  2. False

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

FS-LDM (Financial Services Logical Data Model) is Teradata's industry data model for financial services. While it serves as a reference framework, organizations typically customize and adapt it rather than using it as a strict guideline. The statement's absolute wording 'would be used' makes False the correct answer - EDW architecture requires customization.