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

Multiple choice technology databases
  1. to move data from one data source to another

  2. powerful ETL tool

  3. To design various kind of reports

  4. to provide business information to a wider audience within an organization

Reveal answer Fill a bubble to check yourself
A,B,D Correct answer
Explanation

SQL Server Integration Services (SSIS) is primarily designed as an ETL (Extract, Transform, Load) tool used to move and transform data between various data sources. Designing and presenting reports to a wider audience is the primary function of SQL Server Reporting Services (SSRS), not SSIS.

Multiple choice technology security
  1. Critical transactions

  2. Account Lockout

  3. Page load times for all application pages

  4. Login/Logout events for users

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

Logging page load times for all application pages is inappropriate for continuous logging because it generates excessive volume of low-value data, degrades performance, and makes it difficult to find meaningful security events. Continuous logging should focus on security-relevant events like logins, lockouts, and critical transactions.

Multiple choice technology security
  1. Data is validated against a list of values that are known to be valid

  2. Data is validated against a list of values that are known to be invalid

  3. Both of the above

  4. None of the above

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

To understand what "White List" data validation means, the user needs to know the basics of data validation and filtering.

"White List" data validation refers to the process of validating data against a list of values that are known to be valid. This means that the data is filtered and compared against a pre-defined list of acceptable values. If the data matches any of the values on the list, it is considered valid. If it does not match any of the values on the list, it is considered invalid.

Option A is the correct answer, as it accurately describes what "White List" data validation means.

Option B is incorrect, as it describes the opposite of what "White List" data validation means.

Option C is incorrect because it includes option B, which is incorrect.

Option D is also incorrect because "White List" data validation is a real concept and option A accurately describes it.

The Answer is: A

Multiple choice technology security
  1. Oracle

  2. MySQL

  3. Both of the above

  4. Oracle, MySQL, Sybase, DB2

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

The security API (OWASP ESAPI) contains built-in codecs for both Oracle (OracleCodec) and MySQL (MySQLCodec) to prevent SQL injection attacks. While other databases can also be supported via custom implementations, these two databases are explicitly covered by default SQL codecs provided in the core library.

Multiple choice technology enterprise content management
  1. File System based repository

  2. Database based repository

  3. Both

  4. Others

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

TeamSite is built on a specialized virtual file system (called Tempesta or TeamSite File System - TSFS) rather than a traditional relational database. This allows developers and editors to interact with assets using native file system operations instead of SQL databases.

Multiple choice technology databases
  1. Logically

  2. Physically

  3. Both of the above

  4. None of the above

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

A schema describes a database both logically (data structures, relationships, constraints) and physically (storage details, indexing, file organization). This dual description helps understand how data is organized conceptually and how it's stored on disk. Neither logical nor physical alone is complete.

Multiple choice technology platforms and products
  1. ODS

  2. MP

  3. Infocube

  4. Infoset

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

In SAP Business Objects Universes for OLAP sources, direct access is supported for MultiProviders (MP) and Infocubes. These are valid SAP BW/BI data structures that can be directly accessed in universe design. ODS and Infoset are not typically direct-access OLAP sources in this context.

Multiple choice technology platforms and products
  1. Hierarchies

  2. Variables

  3. Display attributes

  4. Basic key Figures

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

When creating a Business Objects universe on an SAP BW Infocube, the BI metadata features available include Hierarchies, Display Attributes, and Basic Key Figures. These are standard metadata objects exposed from Infocube structures. Variables are not part of the base Infocube metadata in this context.

Multiple choice technology platforms and products
  1. Personal

  2. Secured

  3. Shared

  4. None

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

To export an OLAP universe to the Business Objects repository, a Secured connection must be used. Personal connections are local to the machine, while Secured connections are stored in the repository and allow sharing. Universe exports require repository access via secured connections.

Multiple choice technology platforms and products
  1. Sum

  2. Database Delegated

  3. Percentage

  4. None

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

For key figures involving percentages in Business Objects universes, the 'Database Delegated' aggregation function must be used. This ensures percentage calculations are performed at the database level rather than aggregated incorrectly (summing percentages would produce wrong results).

Multiple choice technology web technology
  1. Data Time Ready

  2. Define The Relationship

  3. Design Time Repository

  4. Digital Time Radio

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

DTR stands for Design Time Repository in the SAP NetWeaver context. It stores development-time metadata and version information for SAP development objects. The other options - Data Time Ready, Define The Relationship, and Digital Time Radio - are not valid SAP technology terms.

Multiple choice technology operating systems
  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 a disconnected session ends, the session state becomes available on the server for reconnection. The applications remain running, and data is preserved. Options A and C are incorrect because data and applications persist. Option B is incorrect because more than just the connection closes - the session state changes.