How to normalise logical data models

Beschreibung

Systems Analysis & Design (Data Normalisation) Notiz am How to normalise logical data models, erstellt von callumh93 am 12/05/2013.
callumh93
Notiz von callumh93, aktualisiert more than 1 year ago
callumh93
Erstellt von callumh93 vor mehr als 12 Jahre
34
0

Zusammenfassung der Ressource

Seite 1

Do any attributes have multiple values for a single instance of an entity?

0. Unnormalised Form

Yes - remove the repeating attributes and repeating groups. Create an entity that describes the attributes. Often you will need to add a relationship to connect the old and new entities.No - the data model is in first normal form.

1. First Normal Form

Is the identifier composed of more than one attribute? If so, are any attribute values dependent on just one part of the identifier?

Yes - remove the partial dependency. Move attributes to an entity in which their values are dependent on the entire identifier. Usually you will need to create a new entity and add a relationship to connect it to the old.No - the data model is in second normal form.

2. Second Normal Form

Do any attribute values depend on an attribute that is not the entity's identifier?

Yes -  remove the transitive dependency or derived attribute. Move the attributes to an entity in which their values are dependent on the identifier. Create a new entity and a relationship that links it to the old entity. No - the data model is in third normal form.

New Page

Zusammenfassung anzeigen Zusammenfassung ausblenden

ähnlicher Inhalt

Data Normalisation Basics
callumh93
DFD Basics
callumh93
Game and Sarson Symbols
callumh93
Relational Algebra
callumh93