Database Design & Development Flashcards
Flat File Database
All data is stored in a single table. Results in duplication of data that wastes storage space and causes modification anomalies.
Relational Database
Database composed of several linked tables/entities.
Record occurrence
This is data held on one particular thing or person, e.g. information on a single employee.
Field/attribute
A heading/name of an item of data in a record
Primary Key
A field that uniquely identifies a record in a table
Foreign Key
This is a primary key in another table. This allows two tables to be connected.
Validation
This can be applied to fields in the design of a database to allow only certain data to be entered
Length Check
This ensures that data can only be a certain number of characters long.
Range Check
This will ensure that the user is entering data between certain specified values.
Restricted Choice
This means the user can only enter data from within a list. Created by a lookup list. FOREIGN KEY must have this.
Presence Check
This checks whether the data exists. This means the user may not enter a null value into the field. PRIMARY KEY must have this.
Sort
To put a field/s in order of ascending/descending.
Compound Key
When two are more fields that are primary keys in other tables are used to create a primary key.
Data Dictionary
Shows the structure of the database. This is part of the design stage.
One to One
This type of relationship indicates when there is a single item in one table linked to another singular item in another table.