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
A
Correct answer
Explanation
IBM DataStage Designer is the graphical client interface used to design ETL jobs by dragging stages onto a canvas and connecting them. It is also used to compile these jobs into executable forms that the Server runs.
A
Correct answer
Explanation
A dataset in database systems is a collection of data that is stored persistently, meaning it remains available after the session or program that created it ends. This persistence is a fundamental characteristic of datasets in databases, data warehouses, and similar systems.
-
set of identical conditions
-
an identifier that can be assigned to business rules
-
property used to tag rules
-
both 2 & 3
B
Correct answer
Explanation
A category in business rule management systems is an identifier or tag that can be assigned to business rules for classification and organization purposes. It is not simply a set of identical conditions (option A) or just a property (option C). Categories help group and manage rules logically within a rule repository.
-
DBs Secured Applications Processing Environment (Citrix)
-
DB-Everywhere-Desktop
-
A and B
-
None of the above
C
Correct answer
Explanation
Dbwrap refers to DB's Secured Applications Processing Environment (utilizing Citrix) as well as DB-Everywhere-Desktop in this internal corporate environment. Consequently, the option stating that both A and B are correct represents the accurate answer, whereas the other options are incomplete.
-
Visionapp
-
TCS-DES & Visionapp
-
HCL
-
DB Internals
B
Correct answer
Explanation
SIT (System Integration Testing) and UAT (User Acceptance Testing) environments in enterprise IT often involve shared support responsibilities between multiple vendors. TCS-DES (Tata Consultancy Services - Delivery Entity) partnering with Visionapp represents a common collaborative support model for database wrapping servers.
-
Visionapp in co-ordination with TCS-DES team
-
Visionapp independently
-
DB Internals
-
TCS-DES Team Independently
A
Correct answer
Explanation
DBwrap production servers are maintained through a collaborative model where Visionapp coordinates with the TCS-DES team. This partnership ensures proper technical oversight and support for the production environment. Options suggesting independent operation by either party are incorrect, and DB Internals is not involved in this maintenance arrangement.
D
Correct answer
Explanation
The dbwrap platform supports approximately 250 applications across the organization. This represents the scale of database services provided, including transaction processing, reporting, and data management for various business applications.
-
Task
-
Role
-
Priority
-
All the above
B
Correct answer
Explanation
Dbwrap uses role-based access control (RBAC) where permissions are granted based on predefined roles rather than individual tasks or priorities. This model ensures consistent security governance and simplifies permission management across the platform.
-
SCLM
-
GAR Packaging
-
KVS
-
All the above
B
Correct answer
Explanation
Software deployment to dbwrap environments uses GAR Packaging, which is the standard deployment mechanism for this platform. SCLM is a different deployment tool used in mainframe environments, while KVS is a key-value storage system and not a deployment tool.
-
Dbwrap servers/urls not accessible
-
Appsense, Ocx and Dlls Registrations
-
All the above
-
None of the above
C
Correct answer
Explanation
Common dbwrap issues include both server/URL accessibility problems (network/connectivity issues) and registration problems with components like Appsense, OCX controls, and DLLs (client-side component registration). Both categories represent valid issue types that users encounter.
-
A class
-
An object
-
A method
-
A data field
B
Correct answer
Explanation
In object-oriented programming, an object represents a specific, distinctly identifiable real-world entity (e.g., a specific car or person) with a state and behavior. A class is a blueprint or template for creating objects, a method represents behavior, and a data field represents state or properties.
-
Enterprise Miner
-
SAS/ACCESS
-
SAS/SCL
-
SAS/CONNECT
B
Correct answer
Explanation
SAS/ACCESS is the SAS component that provides transparent access to non-native data sources like relational databases, PC files, and enterprise data systems. Enterprise Miner is for data mining, SAS/SCL is a scripting language, and SAS/CONNECT is for remote computing.
-
TSO
-
IMS
-
BATCH
-
All the above can access
D
Correct answer
Explanation
DB2 can be accessed from all three environments listed: TSO (Time Sharing Option) provides interactive access, IMS (Information Management System) allows transaction processing with DB2, and BATCH jobs can submit SQL queries to DB2. DB2 was specifically designed to support multiple access interfaces in mainframe environments.
-
COMMIT
-
ROLLBACK
-
ALLOCATE
-
DEALLOCATE
B
Correct answer
Explanation
ROLLBACK establishes a syncpoint (rollback point) when a transaction ends unsuccessfully, undoing all changes since the last commit. COMMIT establishes a syncpoint for successful transactions. ALLOCATE and DEALLOCATE are resource management commands for memory or cursors, unrelated to transaction syncpoints.
A
Correct answer
Explanation
Stored procedures are precompiled collections of SQL statements and optional control-of-flow statements that are stored on the server. They provide a way to encapsulate business logic and database operations that execute server-side, reducing network traffic and improving security.