key terms Flashcards

1
Q

The column or set of columns that can be used to uniquely identify a record in a table.

A

Primary Key

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A column in a table that refers to a primary key column in another table.

A

Foreign Key

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A primary key that includes more than one column.

A

Composite Key

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A record in the table. For example in a students table the row is all the information about one student.

A

Row

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

A category of data in a table such as name, address, cost, etc.

A

Column

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

One cell in the table or one column in the record eg. the first name of the student identified by 356789.

A

Field

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

All the information about one thing in a table, eg. a row.

A

Data Record

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Mismatched, duplicated, missing or inaccurate data. It can occur during insert, update or delete of data in a table when there are insufficient data integrity constraints in a table or if the table is not normalized or structured correctly.

A

Data Anomaly

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

The opposite of a data anomaly. It describes the extent to which data is correctly matched, complete and accurate.

A

Data Integrity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

A rule that prevents duplicate data from being stored in one column of a table. For example, a primary key.

A

Uniqueness Constraints

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The relationship between related data records eg. 1-to-1, 1-to-many, many-to-many.

A

Cardinality

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The quality of data relationships between primary keys and foreign keys in a database.

A

Referential Integrity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

An outline of how that data is organized in a database. It is a graphical illustration that shows how each table is a database is laid out, including the fields, the types of data they contain and how the different tables are connected.

A

Relational Schema

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Contains information about attributes or fields of a certain data set (attribute name(field name), format, max field size, data type, etc).

A

Data Dictionary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

The SQL statement created to align with the Data Dictionary in a practical setting when creating tables.

A

Table Definition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Allows data administrators to provide different levels of access for users. This will link to user authentication because if their User Level Access cannot be authenticated the user will not be able to access certain data.

A

User Level Access

17
Q

A process used to secure data, databases and the overall database solution. Passwords can be hashed so they are not stored in plain text in the database table.

A

Encryption

18
Q

Databases need to be regularly backed up. Most of these processes will be automated in a Database Management System.

A

Backup and Disaster Recovery Process

19
Q

Potential security threats are malware, data theft and identity theft, invasion of privacy.

A

Security and Protection

20
Q

The type of data stored in a column. For example text, numbers, boolean, etc. The data type of a column is a type of domain constraint as it prevents the wrong type of data from being stored in a field.

A

Data Type