Deck 15: Normalize a Database for Effective Design

Full screen (f)
exit full mode
Question
While several orders can be placed on the same day,one order cannot be placed on more than one date.Thus,order date is ________ the key of Order ID.

A)determined by
B)dependent on
C)transitioning to
D)reliant on
Use Space or
up arrow
down arrow
to flip the card.
Question
A(n)________ anomaly forces you to enter data about two different entities when you have data on only one entity.

A)insertion
B)update
C)delete
D)cascade
Question
A database record equivalent is also known as a(n)________.

A)attribute
B)entity
C)nonkey field
D)tuple
Question
A(n)________ key is created from nonnaturally occurring data that is visible to the user,such as sequential numbering from the AutoNumber data type.

A)surrogate
B)artificial
C)candidate
D)concatenated
Question
A depends on B and B depends on C,thus A implies C.If C is a candidate key and B is not a candidate key,this is a(n)________.

A)transitive dependency
B)determinate
C)partial dependency
D)atomic record
Question
A(n)________ is when the field only depends on one part of a composite or concatenated key.

A)determinate
B)transitive dependency
C)partial dependency
D)atomic record
Question
The ________ requires that the table has to be free of transitive dependencies and that all lower levels of NF are satisfied.

A)1NF
B)2NF
C)3NF
D)BCNF
Question
When multiple fields are used to identify a record,it is a(n)________ key.

A)artificial
B)natural
C)alternate
D)composite
Question
________ will update a foreign key automatically when the primary key changes.

A)Referential integrity
B)Cascade update
C)Cascade delete
D)Domain integrity constraints
Question
Which of the following is NOT true regarding second normal form?

A)The second normal form requires that the table has no fields with partial dependencies on a composite or concatenated key.
B)The table satisfies 1NF.
C)The table may contain a transitive dependency.
D)The table could have a partial dependency.
Question
A(n)________ anomaly forces you to change data in multiple records,such as when you need to change the name of a product and you must change multiple rows.

A)insertion
B)update
C)delete
D)cascade
Question
A(n)________ key is created from naturally occurring data outside of the database,such as a driver's license number.

A)natural
B)artificial
C)alternate
D)composite
Question
Which of the following is NOT true regarding normal forms?

A)If a database is stated to be 3NF,this means that all tables in the database meet the criteria for the first three normal forms.
B)The highest level of normal form is 3NF.
C)Each level represents the table's vulnerability to redundancy,anomalies,and inaccuracies.
D)The highest normal form is the level that a table satisfies along with all levels below.
Question
Which of the following is NOT true regarding anomalies?

A)Anomalies can be categorized into three types-insert,delete,and update.
B)One goal of concatenating fields is to minimize anomalies.
C)Update anomalies can be difficult to detect.
D)Anomalies are unmatched or missing data that is caused by limitations in database design.
Question
Which of the following is NOT true when deciding when to use a surrogate key?

A)The advantage with a surrogate key is that it can help prevent some cascading changes from primary to foreign key errors.
B)A surrogate key can increase the file size and require more joins.
C)If the key never has a foreign key,you need a surrogate key.
D)If you have a primary key with a foreign key that may need to be changed frequently or more than normal,a surrogate key should be considered.
Question
The ________ requires that all determinants are candidate keys and that all lower levels of NF are satisfied.

A)1NF
B)2NF
C)3NF
D)BCNF
Question
________ are frequently shown in a functional dependency diagram.

A)Dependencies
B)Determinants
C)Entities
D)Normal forms
Question
Candidate keys that are not used for the primary keys are ________ keys.

A)artificial
B)natural
C)alternate
D)composite
Question
Which of the following is NOT true regarding first normal form?

A)The first normal form dictates that the table must not have repeating groups of values in a single column or anomaly and that it must have a key.
B)In 1NF each nonkey field needs some sort of dependency on the key.
C)A record is considered atomic when none of the values are repeating or concatenated for a single column.
D)If the values are repeated in the rows that are currently blank,each row will become atomic and each row will represent one database record or tuple.
Question
________ will remove every record with the foreign key if the record with the value is deleted from the primary table.

A)Cardinality
B)Cascade update
C)Cascade delete
D)Domain integrity constraints
Question
Which of the following is NOT true about identifying the attributes in an ERD?

A)A second inside circle is used for multivalued attributes.
B)Key attributes are bolded.
C)Derived values are represented with a dashed oval line.
D)Attributes are information about the entity or the data.
Question
In a small business,a department might be managed by no more than one manager,and each manager manages no more than one department.This is an example of a ________ relationship.

A)many-to-many
B)one-to-one
C)one-to-many
D)You cannot create this type of relationship without a junction table.
Question
A deletion anomaly forces you to delete one piece of data when you wanted to delete two pieces of data.
Question
Which of the following is NOT true about identifying the cardinality in an ERD?

A)You may need to add a join table.
B)Use 1:N or 1:M for a one-to-many relationship.
C)Use M:M for a many-to-many relationship.
D)Use 1:1 for a one-to-one relationship.
Question
Which of the following is NOT true about identifying the entities in an ERD?

A)Entities are people,places,or items that you want to keep data about.
B)Bridge entities use a composite key.
C)Composite keys are drawn in a diamond with a rectangle around it.
D)Weak entities have a primary key.
Question
Which of the following is NOT true regarding entity relationship diagrams?

A)The asterisk next to the field name designates the foreign key field in each table.
B)An ERD does not tell you anything about data flow.
C)An ERD is a fixed view of the database structure.
D)An ERD is a way of visually expressing the database structure.
Question
Which of the following is NOT a step that you would take when creating an ERD?

A)Identify the entities.
B)Determine the functionality of the relationships.
C)Identify the relationships.
D)Identify the attributes.
Question
________ are rules that are specific for each field in a table.

A)Cardinality
B)Integrity constraints
C)Junctions
D)Domain integrity constraints
Question
An update anomaly forces you to change data in multiple records,such as when you need to change the name of a product and you must change multiple rows to make the update.
Question
Normalization is the process of minimizing the duplication of information in a relational database through effective database design.
Question
An insertion anomaly suggests that you enter data about two different entities when you have data on only one entity.
Question
Access allows you to add some ________ to your database to help ensure the data's validity.

A)Cardinality
B)Integrity constraints
C)Junctions
D)Domain integrity constraints
Question
The 1NF dictates that the table must have atomicity.
Question
One goal of normalization is to minimize anomalies,in particular three anomalies-insert,delete,and update.
Question
A product can be in many different orders and each order can have many products in inventory.This is an example of a ________ relationship.

A)many-to-one
B)one-to-one
C)one-to-many
D)You cannot create this type of relationship without a junction table.
Question
Which of the following is NOT a shape included on an ERD?

A)Rectangle
B)Diamond
C)Triangle
D)Oval
Question
In an ERD,the ________ approach will list the tables in a database as rectangles with lines and symbols representing the types of relationships between them.

A)crow's feet
B)visual
C)basic shapes
D)symbolic
Question
Atomicity refers to unmatched or missing data that is caused by limitations in database design.
Question
Delete anomalies can be difficult to detect.
Question
________ indicate(s)the number of instances of one entity that relates to one instance of another entity.

A)Referential integrity
B)Anomalies
C)Cascading
D)Cardinality
Question
A dependency requires that the table has no fields with partial dependencies on a composite or concatenated key and satisfies 1NF.
Question
A transitive dependency is when the field only depends on one part of a composite or concatenated key.In other words,the field is determined by only one piece of a multifield key.
Question
Each employee can only be in the employees table exactly one time.However,an employee can be in the orders table many times,once for each sale.
Question
A primary key is a field that uniquely identifies a record.
Question
When multiple fields are used to identify a record,it is a composite key,which is sometimes referred to as a concatenated key.
Question
Candidate keys that are used for the primary key are alternate keys.
Question
An entity relationship diagram tells you about data flow and is a fixed view of the database structure.
Question
A surrogate key is not visible to the user.
Question
A product can be in many different orders.Also,each order can have many products in inventory.This is an example of a M:N relationship.
Question
Another name for a field in a table is a tuple.
Question
A partial dependency is when a field depends on another field in the table,which then depends on a candidate key.
Question
An example of an artificial key is a driver's license number.
Question
An example of a natural key is sequential numbering from the AutoNumber data type.
Question
By normalizing to BCNF,you are eliminating all transitive dependencies.
Question
In a small business,a department might be managed by no more than one manager,and each manager manages no more than one department.This is an example of a 1:1 relationship.
Question
A surrogate key can increase the file size and require more joins.
Question
A record is considered atomic when none of the values are repeating or concatenated for a single column.
Question
The third normal form requires that the table has to be free of transitive dependencies and that the table satisfies both 1NF and 2NF.
Question
Referential integrity in relationships requires that only values that have a corresponding value in the primary table can be entered for a foreign key.
Question
Cardinality indicates the number of instances of one entity that relates to one instance of another entity.
Question
The process of normalization holds each table to a progressive series of criteria known as ________.
Question
Candidate keys that are not used for the primary key are ________ keys.
Question
A key can be a(n)________ key that is nonnaturally occurring data that is visible to the user,such as sequential numbering from the AutoNumber data type.
Question
A database record equivalent is also known as a(n)________.
Question
The ________ normal form requires that the table has to be free of transitive dependencies.
Question
By normalizing to ________,you are eliminating all functional dependencies.
Question
________ are unmatched or missing data that is caused by limitations in database design.
Question
________ in relationships requires that only values that have a corresponding value in the primary table can be entered for a foreign key.
Question
A(n)________ is when a field depends on another field in the table,which then depends on a candidate key.
Question
A(n)________ exists when a field relates to a key.
Question
A(n)________ forces you to enter data about two different entities when you have only data on only one entity.
Question
A(n)________ is a field that determines the value of another field.
Question
The ________ normal form is the level that a table satisfies along with all levels below.
Question
A key can be a(n)________ key which is nonnaturally occurring data that is not visible to the user.
Question
A(n)________ is when the field only depends on one part of a composite or concatenated key.In other words,the field is determined by only one piece of a multifield key.
Question
In the ________ normal form,the table has no fields with partial dependencies on a composite or concatenated key.
Question
________ is the process of minimizing the duplication of information in a relational database through effective database design.
Question
A(n)________ key that is created from naturally occurring data generated outside of a database such as a driver's license number.
Question
The ________ normal form dictates that the table must not have repeating groups of values in a single column and that it must have a key.
Question
Each employee can only be in the employees table exactly one time.However,an employee can be in the orders table many times,once for each sale.This is an example of a(n)________ relationship.
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/89
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 15: Normalize a Database for Effective Design
1
While several orders can be placed on the same day,one order cannot be placed on more than one date.Thus,order date is ________ the key of Order ID.

A)determined by
B)dependent on
C)transitioning to
D)reliant on
B
2
A(n)________ anomaly forces you to enter data about two different entities when you have data on only one entity.

A)insertion
B)update
C)delete
D)cascade
A
3
A database record equivalent is also known as a(n)________.

A)attribute
B)entity
C)nonkey field
D)tuple
D
4
A(n)________ key is created from nonnaturally occurring data that is visible to the user,such as sequential numbering from the AutoNumber data type.

A)surrogate
B)artificial
C)candidate
D)concatenated
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
5
A depends on B and B depends on C,thus A implies C.If C is a candidate key and B is not a candidate key,this is a(n)________.

A)transitive dependency
B)determinate
C)partial dependency
D)atomic record
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
6
A(n)________ is when the field only depends on one part of a composite or concatenated key.

A)determinate
B)transitive dependency
C)partial dependency
D)atomic record
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
7
The ________ requires that the table has to be free of transitive dependencies and that all lower levels of NF are satisfied.

A)1NF
B)2NF
C)3NF
D)BCNF
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
8
When multiple fields are used to identify a record,it is a(n)________ key.

A)artificial
B)natural
C)alternate
D)composite
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
9
________ will update a foreign key automatically when the primary key changes.

A)Referential integrity
B)Cascade update
C)Cascade delete
D)Domain integrity constraints
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
10
Which of the following is NOT true regarding second normal form?

A)The second normal form requires that the table has no fields with partial dependencies on a composite or concatenated key.
B)The table satisfies 1NF.
C)The table may contain a transitive dependency.
D)The table could have a partial dependency.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
11
A(n)________ anomaly forces you to change data in multiple records,such as when you need to change the name of a product and you must change multiple rows.

A)insertion
B)update
C)delete
D)cascade
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
12
A(n)________ key is created from naturally occurring data outside of the database,such as a driver's license number.

A)natural
B)artificial
C)alternate
D)composite
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
13
Which of the following is NOT true regarding normal forms?

A)If a database is stated to be 3NF,this means that all tables in the database meet the criteria for the first three normal forms.
B)The highest level of normal form is 3NF.
C)Each level represents the table's vulnerability to redundancy,anomalies,and inaccuracies.
D)The highest normal form is the level that a table satisfies along with all levels below.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
14
Which of the following is NOT true regarding anomalies?

A)Anomalies can be categorized into three types-insert,delete,and update.
B)One goal of concatenating fields is to minimize anomalies.
C)Update anomalies can be difficult to detect.
D)Anomalies are unmatched or missing data that is caused by limitations in database design.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
15
Which of the following is NOT true when deciding when to use a surrogate key?

A)The advantage with a surrogate key is that it can help prevent some cascading changes from primary to foreign key errors.
B)A surrogate key can increase the file size and require more joins.
C)If the key never has a foreign key,you need a surrogate key.
D)If you have a primary key with a foreign key that may need to be changed frequently or more than normal,a surrogate key should be considered.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
16
The ________ requires that all determinants are candidate keys and that all lower levels of NF are satisfied.

A)1NF
B)2NF
C)3NF
D)BCNF
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
17
________ are frequently shown in a functional dependency diagram.

A)Dependencies
B)Determinants
C)Entities
D)Normal forms
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
18
Candidate keys that are not used for the primary keys are ________ keys.

A)artificial
B)natural
C)alternate
D)composite
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
19
Which of the following is NOT true regarding first normal form?

A)The first normal form dictates that the table must not have repeating groups of values in a single column or anomaly and that it must have a key.
B)In 1NF each nonkey field needs some sort of dependency on the key.
C)A record is considered atomic when none of the values are repeating or concatenated for a single column.
D)If the values are repeated in the rows that are currently blank,each row will become atomic and each row will represent one database record or tuple.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
20
________ will remove every record with the foreign key if the record with the value is deleted from the primary table.

A)Cardinality
B)Cascade update
C)Cascade delete
D)Domain integrity constraints
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
21
Which of the following is NOT true about identifying the attributes in an ERD?

A)A second inside circle is used for multivalued attributes.
B)Key attributes are bolded.
C)Derived values are represented with a dashed oval line.
D)Attributes are information about the entity or the data.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
22
In a small business,a department might be managed by no more than one manager,and each manager manages no more than one department.This is an example of a ________ relationship.

A)many-to-many
B)one-to-one
C)one-to-many
D)You cannot create this type of relationship without a junction table.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
23
A deletion anomaly forces you to delete one piece of data when you wanted to delete two pieces of data.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
24
Which of the following is NOT true about identifying the cardinality in an ERD?

A)You may need to add a join table.
B)Use 1:N or 1:M for a one-to-many relationship.
C)Use M:M for a many-to-many relationship.
D)Use 1:1 for a one-to-one relationship.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
25
Which of the following is NOT true about identifying the entities in an ERD?

A)Entities are people,places,or items that you want to keep data about.
B)Bridge entities use a composite key.
C)Composite keys are drawn in a diamond with a rectangle around it.
D)Weak entities have a primary key.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
26
Which of the following is NOT true regarding entity relationship diagrams?

A)The asterisk next to the field name designates the foreign key field in each table.
B)An ERD does not tell you anything about data flow.
C)An ERD is a fixed view of the database structure.
D)An ERD is a way of visually expressing the database structure.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
27
Which of the following is NOT a step that you would take when creating an ERD?

A)Identify the entities.
B)Determine the functionality of the relationships.
C)Identify the relationships.
D)Identify the attributes.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
28
________ are rules that are specific for each field in a table.

A)Cardinality
B)Integrity constraints
C)Junctions
D)Domain integrity constraints
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
29
An update anomaly forces you to change data in multiple records,such as when you need to change the name of a product and you must change multiple rows to make the update.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
30
Normalization is the process of minimizing the duplication of information in a relational database through effective database design.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
31
An insertion anomaly suggests that you enter data about two different entities when you have data on only one entity.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
32
Access allows you to add some ________ to your database to help ensure the data's validity.

A)Cardinality
B)Integrity constraints
C)Junctions
D)Domain integrity constraints
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
33
The 1NF dictates that the table must have atomicity.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
34
One goal of normalization is to minimize anomalies,in particular three anomalies-insert,delete,and update.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
35
A product can be in many different orders and each order can have many products in inventory.This is an example of a ________ relationship.

A)many-to-one
B)one-to-one
C)one-to-many
D)You cannot create this type of relationship without a junction table.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
36
Which of the following is NOT a shape included on an ERD?

A)Rectangle
B)Diamond
C)Triangle
D)Oval
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
37
In an ERD,the ________ approach will list the tables in a database as rectangles with lines and symbols representing the types of relationships between them.

A)crow's feet
B)visual
C)basic shapes
D)symbolic
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
38
Atomicity refers to unmatched or missing data that is caused by limitations in database design.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
39
Delete anomalies can be difficult to detect.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
40
________ indicate(s)the number of instances of one entity that relates to one instance of another entity.

A)Referential integrity
B)Anomalies
C)Cascading
D)Cardinality
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
41
A dependency requires that the table has no fields with partial dependencies on a composite or concatenated key and satisfies 1NF.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
42
A transitive dependency is when the field only depends on one part of a composite or concatenated key.In other words,the field is determined by only one piece of a multifield key.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
43
Each employee can only be in the employees table exactly one time.However,an employee can be in the orders table many times,once for each sale.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
44
A primary key is a field that uniquely identifies a record.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
45
When multiple fields are used to identify a record,it is a composite key,which is sometimes referred to as a concatenated key.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
46
Candidate keys that are used for the primary key are alternate keys.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
47
An entity relationship diagram tells you about data flow and is a fixed view of the database structure.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
48
A surrogate key is not visible to the user.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
49
A product can be in many different orders.Also,each order can have many products in inventory.This is an example of a M:N relationship.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
50
Another name for a field in a table is a tuple.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
51
A partial dependency is when a field depends on another field in the table,which then depends on a candidate key.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
52
An example of an artificial key is a driver's license number.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
53
An example of a natural key is sequential numbering from the AutoNumber data type.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
54
By normalizing to BCNF,you are eliminating all transitive dependencies.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
55
In a small business,a department might be managed by no more than one manager,and each manager manages no more than one department.This is an example of a 1:1 relationship.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
56
A surrogate key can increase the file size and require more joins.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
57
A record is considered atomic when none of the values are repeating or concatenated for a single column.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
58
The third normal form requires that the table has to be free of transitive dependencies and that the table satisfies both 1NF and 2NF.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
59
Referential integrity in relationships requires that only values that have a corresponding value in the primary table can be entered for a foreign key.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
60
Cardinality indicates the number of instances of one entity that relates to one instance of another entity.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
61
The process of normalization holds each table to a progressive series of criteria known as ________.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
62
Candidate keys that are not used for the primary key are ________ keys.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
63
A key can be a(n)________ key that is nonnaturally occurring data that is visible to the user,such as sequential numbering from the AutoNumber data type.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
64
A database record equivalent is also known as a(n)________.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
65
The ________ normal form requires that the table has to be free of transitive dependencies.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
66
By normalizing to ________,you are eliminating all functional dependencies.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
67
________ are unmatched or missing data that is caused by limitations in database design.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
68
________ in relationships requires that only values that have a corresponding value in the primary table can be entered for a foreign key.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
69
A(n)________ is when a field depends on another field in the table,which then depends on a candidate key.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
70
A(n)________ exists when a field relates to a key.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
71
A(n)________ forces you to enter data about two different entities when you have only data on only one entity.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
72
A(n)________ is a field that determines the value of another field.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
73
The ________ normal form is the level that a table satisfies along with all levels below.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
74
A key can be a(n)________ key which is nonnaturally occurring data that is not visible to the user.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
75
A(n)________ is when the field only depends on one part of a composite or concatenated key.In other words,the field is determined by only one piece of a multifield key.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
76
In the ________ normal form,the table has no fields with partial dependencies on a composite or concatenated key.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
77
________ is the process of minimizing the duplication of information in a relational database through effective database design.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
78
A(n)________ key that is created from naturally occurring data generated outside of a database such as a driver's license number.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
79
The ________ normal form dictates that the table must not have repeating groups of values in a single column and that it must have a key.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
80
Each employee can only be in the employees table exactly one time.However,an employee can be in the orders table many times,once for each sale.This is an example of a(n)________ relationship.
Unlock Deck
Unlock for access to all 89 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 89 flashcards in this deck.