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
B,D
Correct answer
Explanation
DTS and SSIS are Microsoft SQL Server technologies designed specifically for data integration, transformation, and migration workflows. Conversely, SSAS is used for analytical processing (OLAP) databases, and SSRS is dedicated to generating reports from database queries.
D
Correct answer
Explanation
World Book Applications typically maintain 5 search indexes covering different content types (articles, media, dictionary, etc.). This is a specific technical fact about the World Book architecture and search infrastructure. The exact number of indexes is implementation-specific.
-
Cursor table
-
Table filter
-
Dynamic procedure
-
View
-
Summary table
D
Correct answer
Explanation
Without seeing the scenario, this appears to be about choosing between database structures for a reporting/analysis need. A View is the best choice when you need to query data from multiple tables without duplicating data. Views provide a logical abstraction layer. Table filter and dynamic procedure are not standard SQL structures, while a cursor table would be inefficient.
-
Structure
-
Design issue
-
Data source
-
Storage issue
-
Operational process
B
Correct answer
Explanation
Without the full context, in data modeling, security review typically occurs during the design issue phase where access controls, privacy requirements, and security constraints are evaluated. Structure phase defines the model, data source phase identifies data origins, storage issue phase deals with physical storage, and operational process phase covers maintenance. Security considerations must be addressed during design.
-
Data about data
-
Describes a data dictionary
-
Self-describing
-
Includes user data
-
Supports its own structure
D
Correct answer
Explanation
Metadata is 'data about data' - it describes structure, format, relationships, and other characteristics of data. It supports its own structure, is self-describing, and describes what's in a data dictionary. What metadata does NOT include is the actual user data or business data itself - that's the content, not the description. Option D correctly identifies that user data is not metadata.
-
Analysis
-
Controller
-
File server
-
Load generator/host
D
Correct answer
Explanation
The load generator (also called the host) is the machine that actually executes Vuser scripts and collects performance metrics during the test run. It monitors system resources, response times, and other performance data locally, then sends this data to the Controller. Analysis tool processes data after the run, and Controller orchestrates but doesn't store raw monitoring data.
-
At the end of the action section
-
At the beginning of the action section
-
Immediately after the rendezvous function
-
Immediately before the rendezvous function
C
Correct answer
Explanation
The Ir_start transaction should be placed immediately after the rendezvous point to measure the performance of the synchronized action. Rendezvous points cause Vusers to wait until all arrive, then proceed simultaneously. Starting the transaction after this point captures the combined load impact of all concurrent users. Placing it before would measure waiting time, and end/beginning of action would miss the synchronization effect.
-
Debug
-
Full Load
-
Top Time
-
Scalability
C
Correct answer
Explanation
During full load tests, standard logging is recommended to balance troubleshooting capability with generator performance. However, standard logging is specifically recommended for benchmark or run-time execution tests like 'Top Time' or load tests to prevent I/O overhead. Extended logging is preferred during debug runs.
-
Remote DBMS
-
Relative DBMS
-
Relational DBMS
-
Reliable DBMS
C
Correct answer
Explanation
RDBMS stands for Relational Database Management System. It organizes data into tables with relationships between them, based on the relational model proposed by E.F. Codd.
-
Repository
-
Tablespace
-
Temp Tablespace
-
Workspace
D
Correct answer
Explanation
Objects created in OWB are first stored in the Workspace, which serves as a staging area for development work. The workspace holds objects before they are deployed to the actual repository. This separation allows for version control and testing before making changes permanent.
-
Database user
-
Workspace owner
-
SYSTEM user
-
All of the above
B
Correct answer
Explanation
Registering a target schema in OWB requires workspace owner privileges. This is an administrative task that defines connection and access details for the target database. Regular database users or SYSTEM user don't perform this registration function.
B
Correct answer
Explanation
When importing objects from the database into OWB, only metadata (structure definitions) is imported, not the actual data rows. The repository stores design information about objects - table definitions, column types, constraints - but remains separate from the operational data itself.
-
procedures
-
packages
-
special packages
-
functions
B
Correct answer
Explanation
Maps are deployed to Oracle database as PL/SQL packages. Each mapping becomes a package containing procedures for the ETL logic. This package structure supports parameters, error handling, and modular execution of data transformations.
-
Free with Oracle
-
Builds complex logic easily
-
Fastest ETL tool available
-
Can be installed in mobile
A,B
Correct answer
Explanation
OWB is included at no additional cost with Oracle Database licenses and provides graphical tools for building complex ETL transformations. However, claims about it being the 'fastest' tool are subjective, and OWB is server-based enterprise software that cannot run on mobile devices.
-
sessions stored in state service
-
sessions stored in server's inbuilt memory.
-
Both A and B
-
sessions stored in database
D
Correct answer
Explanation
The answersint portal uses database-based session storage. Sessions are persisted in a database rather than server memory (B) or a state service (A). This approach provides better scalability, persistence across server restarts, and support for distributed deployments. Option C claims 'Both A and B' which is incorrect.