Computer » Database Basics and Architecute
The DBMS acts as an interface between what two components of an enterprise-class database system?
Database application and the database
Data and the database
The user and the database application
Database application and SQL
Computer » Database Basics and Architecute
Which of the following products was an early implementation of the relational model developed by E.F. Codd of IBM?
IDMS
DB2
dBase-II
R:base
Computer » Database Basics and Architecute
The following are components of a database except ________ .
user data
metadata
reports
indexes
Computer » Database Basics and Architecute
An application where only one user accesses the database at a given time is an example of a(n) ________ .
single-user database application
multiuser database application
e-commerce database application
data mining database application
Computer » Database Basics and Architecute
An on-line commercial site such as Amazon.com is an example of a(n) ________ .
single-user database application
multiuser database application
e-commerce database application
data mining database application
Computer » Database Basics and Architecute
Which of the following products was the first to implement true relational algebra in a PC DBMS?
IDMS
Oracle
dBase-II
R:base
Computer » Database Basics and Architecute
SQL stands for ________ .
Structured Query Language
Sequential Query Language
Structured Question Language
Sequential Question Language
Computer » Database Basics and Architecute
Because it contains a description of its own structure, a database is considered to be ________ .
described
metadata compatible
self-describing
an application program
Computer » Database Basics and Architecute
The following are functions of a DBMS except ________ .
creating and processing forms
creating databases
processing data
administrating databases
Computer » Database Basics and Architecute
Helping people keep track of things is the purpose of a(n) ________ .
database
table
instance
relationship
Computer » Database Basics and Architecute
Which of the following products implemented the CODASYL DBTG model?
IDMS
DB2
dBase-II
R:base
The data model proposed by the CODASYL DBTG (see CODASYL) in which data is organized into records of different types and records are organized into sets of different types, both record and set types being named. A particular set type is defined as having an owner record type and one or more member record types.
Computer » Database Basics and Architecute
An Enterprise Resource Planning application is an example of a(n) ________ .
single-user database application
multiuser database application
e-commerce database application
data mining database application
Computer » Database Basics and Architecute
A DBMS that combines a DBMS and an application generator is ________ .
Microsoft's SQL Server
Microsoft's Access
IBM's DB2
Oracle Corporation's Oracle
Computer » Database Basics and Architecute
You have run an SQL statement that asked the DBMS to display data in a table named USER_TABLES. The results include columns of data labeled "TableName," "NumberOfColumns" and "PrimaryKey." You are looking at ________ .
user data.
metadata
A report
indexes
Computer » Database Basics and Architecute
Which of the following is not considered to be a basic element of an enterprise-class database system?
Users
Database applications
DBMS
COBOL programs
Computer » SQL
You can add a row using SQL in a database with which of the following?
ADD
CREATE
INSERT
MAKE
Computer » SQL
The command to remove rows from a table 'CUSTOMER' is:
REMOVE FROM CUSTOMER ...
DROP FROM CUSTOMER ...
DELETE FROM CUSTOMER WHERE ...
UPDATE FROM CUSTOMER ...
Computer » SQL
The SQL WHERE clause:
limits the column data that are returned.
limits the row data are returned.
Both A and B are correct.
Neither A nor B are correct.
Computer » SQL
Which of the following is the original purpose of SQL?
To specify the syntax and semantics of SQL data definition language
To specify the syntax and semantics of SQL manipulation language
To define the data structures
All of the above.
Computer » SQL
The wildcard in a WHERE clause is useful when?
An exact match is necessary in a SELECT statement.
An exact match is not possible in a SELECT statement.
An exact match is necessary in a CREATE statement.
An exact match is not possible in a CREATE statement.