Normalisation Flashcards

1
Q

Define data normalisation, data redundancy and data consistency.

A

A staged mathematical process that removes repeated groups of data. A staged mathematical process that removes data duplication and inconsistencies.

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

Define data redundancy and data consistency.

A

Data is redundant when it is duplicated unnecessarily. For example, a customer’s address should only be stored in one place, so it can be updated easily. Data must be consistent as it moves from input to processing to output. For example, if the designer decides the date should be in the format 16/03/17, it shouldn’t sometimes appear as 16th March 2017.

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

A hospital unit uses a relational database. A patient is allocated to a ward and to a physiotherapist. One table in this database is structured as follows: tblWard (WardID, WardName, Capacity, FreeBeds) Give two other tables you could expect to see in this database.

A

Something like:

tblPatient (PatientID, FirstName, Surname, DateOfBirth, BloodType, Address, NextOfKin, WardID*, PhysioID*)

tblPhysio (PhysioID, FirstName, Surname, Phone)

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