| 
 A file is an organised collection of related
records. 
A record is a collection of related
fields. 
A field is a single  data item. 
A master file is the main file for an
application - a large file of  semi-permanent data.
Most data is never changed, but some of the fields may need to be updated
occasionally. 
A transaction file is a   temporary file
used to store data which will be used to update the master file. 
Example. The diagram shows a small part
of a school database which stores information about its pupils. 
    
        | NUMBER | 
        SURNAME | 
        FORENAME | 
        YEAR | 
        FORM | 
        DOB | 
     
    
        | 92013 | 
        JONES | 
        Sidney | 
        12 | 
        B | 
        23/04/78 | 
     
    
        | 92107 | 
        LAIDLAW | 
        Lorraine | 
        12 | 
        Y | 
        12/11/79 | 
     
    
        | 92114 | 
        MERRITT | 
        Mandy | 
        12 | 
        G | 
        08/03/79 | 
     
    
        | 92167 | 
        NASH | 
        Natasha | 
        12 | 
        B | 
        19/08/78 | 
     
 
There are 4 records
displayed. 
Each record has 6  fields. 
The primary key field
is the field which  uniquely identifies each record. 
The key field in the example is NUMBER 
       
        |