I've created the Entity-relationship model of my database and the I normalized it, but I've a issue, I don't know if after of the normalization I've to create new relations between news tables derived from normalization and the original tables or not.

link|improve this question

18% accept rate
can you provide a concrete example? – Randy Jan 22 at 3:46
feedback

1 Answer

When you say "relations", you mean constraints, correct? :-) Normalizing a relational database means you broke the tables up to reduce redundancy and dependency. If you are making more tables, then yes you need to create new constraints (keys). You'll also need to run a conversion on your database to move the data to the new tables appropriately.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.