Student Activity 6.1.1: Vocabulary Study Guide
Student Activity 6.1.1: Vocabulary Study Guide
Lesson Objective:
6.1: Master review of the Database Administration Fundamentals review lessons.
This objective may include but is not limited to: deleting data from single
or multiple tables; ensuring data and referential integrity by using
transactions.
4NF—Fourth Normal Form (4NF); the equivalent of 3NF Plus, this has
the same rules as 3NF, plus the following:
• It has no multi-valued dependencies. This form is mostly academic
and rarely used.
5NF—Fifth Normal Form (5NF); the equivalent of 4NF Plus, this has the
same rules as 4NF, plus the following:
• States that no nontrivial join dependencies exist. This form is
mostly academic and rarely used.
4.2. Understand primary, foreign, and composite keys.
This objective may include but is not limited to: understanding the reason
for keys in a database, choosing appropriate primary keys, selecting
appropriate data type for keys, selecting appropriate fields for composite
keys, understanding the relationship between foreign and primary keys.
primary key—a unique key that defines the items in the records.
foreign key—a foreign key in one table points to a primary key in another
table.
data integrity—a set of constraints or rules that protect the data.
composite key—a key that is made up of two or more columns.
surrogate key—a key that is not generated by the data of the database but
a generated unique key used as a primary key. Also, a key that stands in
place of the other key and takes care of business.
4.3. Understand indexes.
This objective may include but is not limited to: understanding clustered
and non-clustered indexes and their purpose in a database.
This objective may include but is not limited to: understanding the need to
secure a database, what objects can be secured, what objects should be
secured, user accounts, and roles.
full backup—a type of backup where all files are copied or backed up.
incremental backup—a type of backup where only files that have been
changed since the last backup.
differential backup—a type of backup where only files that have been
changed since the last full backup.
replicated services—reproduce or replicate the database and server
environment to create a clone of the database and/or the servers that the
database is located on.