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
-
Publishing report through a web portal.
-
Cleaning of Source data
-
Data Mining
-
Forecasting
-
Statistical Analysis
B
Correct answer
Explanation
Data cleaning is part of the Extract, Transform, and Load (ETL) data integration phase, which prepares data for analysis. In contrast, reporting, data mining, forecasting, and statistical analysis are analytical features directly utilized by end-users within Business Intelligence systems to derive insights from already cleaned data.
-
Java Callout
-
DB Adapter
-
both A and B
-
None of the above
C
Correct answer
Explanation
Stored procedures in OSB can be called using both Java Callout and DB Adapter. Java Callout enables procedural logic while DB Adapter directly connects to databases to execute stored procedures.
-
File
-
Database
-
both A and B
-
None of the above
B
Correct answer
Explanation
OSB reports are stored in databases for persistent storage and querying. While files could theoretically store reports, the standard and reliable storage method is databases which provide querying capabilities.
-
DBAdapter & JMSAdapter
-
DBAdapter,JMSAdapter,AQAdapter & Oracle Apps adapter
-
DBAdapter,AQAdapter & Oracle Apps adapter
-
None of the above
-
Database connections
-
key column
-
metrics
-
Dimension
A,B,C
Correct answer
Explanation
User requirements in a universe (data context) typically include database connections for data access, key columns for identification, and metrics for analysis. Dimensions are structural elements rather than user requirements.
A
Correct answer
Explanation
In Informatica and similar ETL tools, a report can be created using data from multiple databases. This is a fundamental capability of reporting tools that allows combining data from different sources into a single output.
-
static
-
persistent
-
dynamic
-
shared
C
Correct answer
Explanation
The default caching mechanism for lookup transformation is dynamic caching. This means the cache is built as needed during transformation execution rather than being static or persistent across multiple runs.
-
Source Table
-
External Tables
-
Source Qualifier
-
Table Function
B
Correct answer
Explanation
External Tables transformation allows you to define database table structures over flat files. This enables treating flat files as if they were database tables, providing a consistent interface for data access.
-
System tablespace
-
Users tablespace
-
Default tablespace for the user
-
Oracle will give an error
-
Undefined
C
Correct answer
Explanation
Each Oracle user has a default tablespace attribute defined in their user profile. When creating objects without specifying TABLESPACE clause, Oracle stores the segment in that user's default tablespace. The SYSTEM tablespace is for dictionary objects, and Oracle won't error - it uses the predefined default.
-
Analysis System
-
transaction system
-
Repository system
-
none of the above
A
Correct answer
Explanation
A Data Warehouse is an Online Analytical Processing (OLAP) system designed for analysis, reporting, and data mining, distinguishing it from operational transaction systems (OLTP) that handle day-to-day operations.
-
Atomic History
-
Building Block
-
Staging
-
Datamart
B
Correct answer
Explanation
Building Block is a data warehousing concept where tables are scattered (distributed) or merged (consolidated) to meet end-user requirements. Atomic History maintains historical atomic transactions, Staging is for temporary ETL storage, and Datamart contains subject-specific subsets.
B
Correct answer
Explanation
Aliases/Shortcuts in Framework Manager are metadata references within the model, not database objects. They don't consume any database storage space - they exist only in the Framework Manager project file.
-
File
-
Database
-
both A and B
-
None of the above
B
Correct answer
Explanation
OSB stores all reports generated during message processing in a database for persistence and querying. This allows historical analysis and monitoring of service interactions through the reporting framework.
-
DBAdapter & JMSAdapter
-
DBAdapter,JMSAdapter,AQAdapter & Oracle Apps adapter
-
DBAdapter,AQAdapter & Oracle Apps adapter
-
None of the above
C
Correct answer
Explanation
OSB 10gR3 provides out-of-box adapters for database connectivity (DBAdapter), Advanced Queuing (AQAdapter), and Oracle Applications integration. JMS is natively supported within OSB core rather than as a separate adapter, which is why it's excluded from this specific list.
-
Java Callout
-
DB Adapter
-
both A and B
-
None of the above
C
Correct answer
Explanation
In Oracle Service Bus (OSB), a stored procedure can be invoked either by using a Java Callout to execute JDBC code or directly via a JCA-based Database (DB) Adapter, making both methods valid and viable options for integration.