INF 214
Class Activity 6: Normalisation
Dependency Diagrams
Design the dependency diagram for the data given below in 1st, 2nd and 3rd normal form. You are given the following flat
file with tourist data:
PROPOSED SOLUTION
1NF
ClientNr ClientName ClientSurname ClientCell ID NrOfPeople DestinationNr DestinationDescr DailyCost AgentNr TravelAgent CommissionPerc DaysSold AdminFee
2NF
ClientNr ClientName ClientSurname ClientCell ID
ClientNr DestinationNr NrOfPeople AdminFee DaysSold
AgentNr TravelAgent CommissionPerc
DestinationNr DestinationDescr DailyCost
3NF
ClientNr ClientName ClientSurname ClientCell ID
DestinationNr DestinationDescr DailyCost AgentNr
ClientNr DestinationNr NrOfPeople AdminFee DaysSold
AgentNr TravelAgent CommissionPerc