How to normalise logical data models

Descripción

(Data Normalisation) Systems Analysis & Design Apunte sobre How to normalise logical data models, creado por callumh93 el 12/05/2013.
callumh93
Apunte por callumh93, actualizado hace más de 1 año
callumh93
Creado por callumh93 hace más de 12 años
34
0

Resumen del Recurso

Página 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

Mostrar resumen completo Ocultar resumen completo

Similar

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