MIDTERM QUESTIONS Flashcards
(134 cards)
Which of the following is used to uniquely identify each record?
Primary Key
A file is composed of a group of related ____________________.
Records
Analyzing historical sales data stored in a database is commonly referred to as ____.
data mining
Which of the following can be used to link the data in two or more tables together?
Common Field
What represents a characteristic or attribute that is being collected about an entity?
Field
A(n)________________ relationship cannot exist in a physical relational database.
many to many
(T/F) A bridging table can be used to eliminate a many-to-many relationship in a relational database.
True
A field is referred to as a(n) ____________________ in the physical database.
Column
If uncontrolled, what can lead to data anomalies?
Data redundancy
Which of the following terms best describes where a group of characters that represents a customer’s address would be stored in the logical design?
Field
(T/F) According to the Oracle Naming Standard, ‘-‘ (hyphen) is a legal character.
False
A DATE column consists of ____________________ bytes.
7
A column’s ____________________ identifies the type of data that can be stored in a column.
Data type
(T/F) A table name can consist of numbers, letters, and blank spaces.
False
A table name can contain the number sign and ____________________ symbols.
Underscore
(T/F) When declaring a NUMBER data type, scale is the total number of digits both to the left and to the right of the decimal point.
False
(T/F) The scale of a NUMBER column indicates the total number of digits that can be stored in the column.
False
____ commands are used to add new database objects.
DDL
(T/F) A column name can consist of up to 225 characters.
False
What is the default format for a DATE value?
DD-MON-YY
The ____________________ command can be used to modify the structure of a table.
ALTER TABLE
The ____ TABLE command is used to modify an existing column’s data declaration.
ALTER
When using the ALTER TABLE…DROP COLUMN command, which of the following is not correct?
The command can be used to delete multiple columns from a table.
The ____________________ clause of the ALTER TABLE command can be used to delete a column from an existing table.
DROP COLUMN