Chapter 5 Flashcards

1
Q

Database

A

A persistent organised store of data.

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

Persistent Storage

A

Non-volatile storage on a secondary storage medium such as a hard disk.

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

Data Duplication/Data Redundancy

A

Where the same data is stored more than once, unnecessarily.

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

Data Inconsistency

A

Where different versions of the same data have different values because duplicateversions have been stored and updated differently.

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

Program-Data Independence

A

Where the applications that use a shared database are separated from the actual data by a database management system. Changes can be made to one application without it affecting another.

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

DBMS

A

Stands for Database Management System, the system that separates theapplications from the data and provides features that allow database systems to becreated, interrogated and maintained.

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

Views

A

A feature of a DBMS that provides each application or user with specific accessrights and views of the database.

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

Flat File Database

A

A persistent organised store of data where data is stored in a single file organised into fields and records.

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

Relational Database

A

A persistent organised store of data where data is stored as a collection of related tables to minimise data redundancy.

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

Entity

A

A category of, for example, person (e.g. student, customer), object (e.g. classroom, stock item) or event (e.g. holiday booking, TV program) about which data is stored in a database, and which corresponds to a table in the relational database.

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

Table

A

A collection of data organised into records and fi elds within a relational database. A table represents a real world entity.

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

Record

A

Data stored about one instance of an entity: for example, one particular person or object

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

Field

A

One specific data item being stored such as surname or date.

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

Primary Key

A

A field in a table that uniquely identifies a record.

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

Foreign Key

A

A field in one table that is the primary key in another table and is used to create a relationship between those two tables.

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

Relationship

A

The logical connection created between two tables using a primary and foreignkey pair. It allows related data about a record to be accessed from another table. A relationship between two tables can be one-to-one, one-to-many or many-tomany.

17
Q

Form

A

Input. An interactive window used for data entry that usually includes validationroutines, and uses controls such as combo boxes and radio buttons. Data input is usually saved to a database.

18
Q

Validation

A

A check made by the computer to make sure the data is sensible.

19
Q

Verification

A

A check to ensure that data has been input correctly. Sometimes this is done byprompting the user to read the data they have input and confirm it is correct. Other times the data has to be entered twice and one version is compared againstthe other to make sure it is the same.

20
Q

Query

A

A feature of a DBMS that allows the database to be interrogated. It selectsrecords from the database based on specifi ed criteria.

21
Q

Database Report

A

Output. A snapshot in time of the data from a database that can be printed. Data is formatted on a page and may be sorted or grouped. It may include totals.

22
Q

Database Module

A

Section of code within a DBMS that allows the user interface to be tailored.