Computer Knowledge

Database Management Systems

5,344 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 sql-server
  1. Run the rebuild.exe program

  2. Drop the MASTER database

  3. Run the reblddb.exe program

  4. Run the sqlservr.eve program with the -m option

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

To restore the master database, SQL Server must be started in single-user mode using the sqlservr.exe command with the -m option. This prevents other connections from interfering with the restore operation. The master database cannot be restored while SQL Server is running normally.

Multiple choice .net vb
  1. DataReader

  2. Dataset

  3. DataAdapter

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

To answer this question, the user should be familiar with the concept of typed datasets and their relationship to other classes in the .NET framework.

The correct answer is:

B. Dataset

Explanation:

In the .NET framework, the base class for typed datasets is the Dataset class. A typed dataset is a dataset that is derived from the Dataset class and includes additional features such as strongly-typed data tables and data columns.

A. DataReader is not the base class for TypedDataset. The DataReader class is used for reading data from a database and does not have a direct relationship to typed datasets.

C. DataAdapter is also not the base class for TypedDataset. The DataAdapter class is used for retrieving and updating data from a database, but it is not the base class for typed datasets.

Therefore, the correct answer is B. Dataset.

Multiple choice .net vb
  1. Connection

  2. Command

  3. DataReader

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

The DataAdapter uses a Command object to execute SQL queries or stored procedures and retrieve data from the database. The Connection object (A) establishes the database connection, but the Command executes the actual query. DataReader (C) is what gets filled, not what the adapter uses.

Multiple choice web-design
  1. It uses OLE as the database technology

  2. There is no official standard

  3. It is a substitute to ActiveX control

  4. It is developed by W3C

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

Server Side Includes (SSI) is a simple interpreted server-side scripting language. Unlike many web technologies, it has no official W3C standard; different web servers (like Apache or IIS) implement their own variations and sets of directives.

Multiple choice server windows-2003
  1. all data is lost

  2. only the connection closes

  3. all applications running on the server remain active

  4. the session becomes available on the server.

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

When you end a disconnected session on a Remote Desktop server, the session terminates completely and all resources are freed, making that session slot available for new connections. Applications running in that session are closed. The session does not remain active (C), data is preserved in user profiles not lost (A), and more than just the connection closes (B).

Multiple choice xml
  1. True

  2. False

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

XSLT is a transformation language that can convert XML documents into other formats, including SQL statements. This allows database structures (tables, indexes, views) described in XML to be generated as executable SQL code. It's a common use case for XML-to-database migration and schema generation.

Multiple choice six-sigma green-belt
  1. Stable measurement system

  2. Consistent measurement procedures

  3. Same inspectors for data collection

  4. Reasonable data

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

Data consistency comes from stable measurement systems and consistent procedures, not from using the same inspectors repeatedly. Different trained inspectors following the same documented procedures can produce equally consistent data. Relying on the same inspectors is not necessary and could even introduce bias if that person has consistent measurement habits. Therefore, 'Same inspectors for data collection' is the correct exception.

Multiple choice six-sigma green-belt
  1. Attribute data

  2. Continuous data

  3. Segmented Data

  4. Stratified Data

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

Attribute data represents categorical or binary outcomes where each observation falls into distinct categories. YES/NO and pass/fail are classic examples of attribute (also called discrete or categorical) data because they have only two possible states. This differs from continuous data which can take any value within a range. Therefore, 'Attribute data' is the correct classification.

Multiple choice informatica
  1. ETL

  2. Reporting

  3. Modeling

  4. None

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

Informatica is primarily an ETL (Extract, Transform, Load) tool used for data integration and warehousing. It extracts data from various sources, transforms it according to business rules, and loads it into target systems like data warehouses. Reporting and modeling are separate activities, not the core purpose of Informatica.

Multiple choice etl
  1. Extraction,transformation and loading

  2. Extract transactions and load

  3. Enable transactions and load

  4. All the above

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

ETL is a foundational data warehousing concept standing for Extract, Transform, and Load. It describes the process of gathering data from source systems, cleaning or modifying it, and loading it into a target database.

Multiple choice etl
  1. Only Heterogeneous source

  2. Only heterogeneous Target

  3. Heterogeneous source and target

  4. Only homogeneous source and target

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

Informatica PowerCenter supports heterogeneous sources and targets - meaning it can extract data from one type of source system (e.g., Oracle) and load it into a different type of target system (e.g., SQL Server, flat file, XML) in the same workflow. This is a core ETL capability. Option A and B are incorrect because Informatica is not limited to only heterogeneous on one side. Option D is incorrect because Informatica specifically supports and is designed for cross-platform (heterogeneous) data integration.

Multiple choice ssas
  1. Delivers online analytical processing (OLAP)

  2. Delivers data mining functionality

  3. Both 1 and 2

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

SQL Server Analysis Services (SSAS) provides both OLAP functionality for multidimensional analysis and data mining capabilities for predictive analytics. The "Both 1 and 2" option correctly identifies that SSAS handles both analytical processing and data mining.

Multiple choice ssas basics
  1. Synchronization

  2. Replication

  3. Collation

  4. Copy

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

Replication is the SQL Server feature designed to copy and distribute data from one database to another, supporting various models like snapshot, transactional, and merge replication. Synchronization implies bidirectional updates, collation refers to text encoding rules, and Copy is not a standard SQL Server feature.

Multiple choice ssas basics
  1. Star schema

  2. Snow flake schema

  3. Both a and b

  4. Database

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

OLAP cubes derive their metadata from dimensional schemas, specifically both star and snowflake schemas which define dimensions, measures, and relationships. While databases store the data, the cube's structure comes from these schema patterns.