1. Fundamentals of Data Management
Data management involves organising, storing, and maintaining data. A collection of related data is called a dataset. This data is typically stored in tables, which are structured with columns and rows. Each column represents a field (a single piece of information, like 'First Name'), and each row represents a record (a complete set of information for one item, like a single person). To ensure data integrity and prevent duplication, a primary key is used. This is a unique identifier for each record in a table, like a 'StudentID' number. Protecting this data is crucial, as it often contains private information that organisations have a legal responsibility to keep secure.
Key term
Examiner insight
Common pitfall
Worked example 13 marks
The table below shows data for a local library. Identify the fields, one complete record, and suggest a suitable primary key.
- 1
- Identify the Fields: The fields are the column headings, which are 'MemberID', 'FirstName', 'LastName', and 'Postcode'.
- 2
- Identify a Record: A record is a single row of data. For example, the first record is ('LIB001', 'Anika', 'Sharma', 'SW1A 0AA').
- 3
- Suggest a Primary Key: The 'MemberID' field is the most suitable primary key. Each member has a unique ID ('LIB001', 'LIB002', etc.), whereas names or postcodes could be duplicated for different members.
Recap
- A dataset is a collection of related data.
- Data is organised into tables made of fields (columns) and records (rows).
- A field is a single attribute, while a record is a complete entry for one item.
- A primary key is a unique identifier for each record in a table.
- Organisations must keep personal data secure to protect privacy.
Quick check
- What is the difference between a field and a record?2 marks
- Why is a person's name not always a good choice for a primary key?1 mark