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
-
Web
-
EJB
-
Database
-
All of the above
-
Store information
-
Store attendees
-
Store documents
-
Store tasks related to a specific meeting.
A,B,D
Correct answer
Explanation
A meeting workspace in SharePoint is designed to store and organize information related to a specific meeting, including attendees and tasks. While it can store documents (option C is actually correct in practice), this question's marked answers focus on the core meeting-specific features. This is an MC-2 question with multiple correct answers.
-
Technology Adapters
-
Technology Connectors
-
Both of the above
-
None
A
Correct answer
Explanation
Oracle SOA Suite uses Technology Adapters (JCA adapters) to integrate with heterogeneous systems like files, databases, JMS, and MQ. These adapters follow the Java Connector Architecture standard. 'Technology Connectors' is not the standard Oracle terminology.
-
BPEL Process Manager
-
Technology Connectors
-
Both of the above
-
BPEL Process Monitor
D
Correct answer
Explanation
BPEL Process Monitor (or BPEL Sensors) captures process data and sends it to Oracle BAM for monitoring and analytics. The Process Manager handles execution, and Technology Connectors handle external system integration - neither is designed for BAM communication.
-
Co-Relation Id
-
Co-Relation Sets
-
Co-Relation Values
-
Co-Relation Variables
B
Correct answer
Explanation
In Oracle BPEL Process Manager, Correlation Sets are used to associate asynchronous messages with specific running BPEL process instances. They define a set of properties (business data keys) to ensure message routing matches the correct instance flow.
-
Monitor the execution of activities within a BPEL Process
-
Monitor variables or part of variables of a BPEL process
-
Monitor BPEL Faults
-
None of the above
A
Correct answer
Explanation
Activity Sensors in Oracle BPEL Process monitor the execution of activities within a BPEL process. They capture data about activity lifecycle events like start, end, and duration for monitoring and tracking purposes. Variable sensors are a separate sensor type used for monitoring variables (option B), and fault sensors specifically handle BPEL fault tracking (option C).
-
BAM Adapter
-
Socket Adapter
-
OSB Adapter
-
AQ Adapter
C
Correct answer
Explanation
Oracle BPEL supports various technology adapters including BAM Adapter (option A), Socket Adapter (option B), and AQ Adapter for Advanced Queuing (option D). However, OSB Adapter (option C) is not a valid adapter - Oracle Service Bus (OSB) is a separate product and integration is done through direct calls or other mechanisms, not a dedicated BPEL adapter.
-
Logging
-
Monitoring
-
Reporting
-
Dehydration
D
Correct answer
Explanation
Dehydration is the mechanism used by Oracle BPEL Process Manager to automatically persist the state of long-running processes to a database. When a process waits for a response (like in an asynchronous call), Oracle BPEL dehydrates the process state, allowing it to be resumed later without keeping memory resources occupied. Logging is for tracking, Monitoring is for runtime observation, and Reporting is for analytics - none of these handle process state persistence.
-
Data Sets
-
Data Fields
-
Data files
-
Data Objects
D
Correct answer
Explanation
In Oracle BAM (Business Activity Monitoring), the BAM Adapter publishes data to Data Objects. Data Objects are the primary entities in BAM that store and organize incoming data for reporting and analytics. Data Sets, Data Fields, and Data files are not the correct terminology - BAM's data model is built around Data Objects which contain Data Fields and can be organized into Data Sets, but the publish destination is the Data Object itself.
-
Instals the backend database for Oracle SOA Suite
-
Creates the metadata repositories and schemas for various components within Oracle SOA Suite
-
Configures the back end database for Oracle SOA Suite
-
None of the above
B
Correct answer
Explanation
Oracle's Repository Creation Utility (RCU) creates the database schemas and metadata repositories required by various Oracle Fusion Middleware components, including Oracle SOA Suite. It does not install or configure the actual underlying database server software.
-
odbcc.cpl
-
odbcconfig.cpl
-
odbccp32.cpl
-
adminodbc.cpl
C
Correct answer
Explanation
odbccp32.cpl is the 32-bit ODBC Data Source Administrator that opens the ODBC Datasource administration window. ODBC stands for 'Open Database Connectivity', and this file manages database drivers and data source names (DSNs) for Windows applications.
-
Installs the backend database for Oracle SOA Suite
-
Creates the metadata repositories and schemas for various components within Oracle SOA Suite
-
Configures the back end database for Oracle SOA Suite
-
None of the above
B
Correct answer
Explanation
RCU (Repository Creation Utility) creates the metadata repositories and schemas required for Oracle SOA Suite components. It sets up the database structures that SOA Suite uses to store configuration, runtime data, and metadata. RCU does not install or configure the backend database itself - the database must already exist.
A
Correct answer
Explanation
A single database server can indeed support multiple application servers simultaneously. This is a common architecture in enterprise systems where several application server instances connect to one central database to serve different users or applications.
-
application data
-
PeopleSoft metadata
-
business logic
-
both 1 and 2
D
Correct answer
Explanation
The PeopleSoft database server maintains both application data (the actual business data and transactions) and PeopleSoft metadata (information about the application structure, objects, and configuration). Both are essential for the system to function.
-
application server
-
database server
-
batch server
-
client server
A
Correct answer
Explanation
The application server is responsible for executing business logic and generating SQL queries based on the metadata stored in the database. It acts as the intermediary between client applications and the database, interpreting business rules and translating them into appropriate database operations.