If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > General > Database Concepts & Design > can you help with this? Normalization

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-28-11, 19:48
Abicus Abicus is offline
Registered User
 
Join Date: Nov 2011
Posts: 1
can you help with this? Normalization

Describe and illustrate the process of normalization for the following relation to Second (2NF), and Third (3NF).

R(ABCDEF)

A→B
D→E
B→C
E→F
Reply With Quote
  #2 (permalink)  
Old 12-08-11, 21:03
caseyvandenaard caseyvandenaard is offline
Registered User
 
Join Date: Dec 2011
Posts: 6
to place this in 2NF we see that E and F is depended on D.
and B and C is functionally depended on A.
So you would have tables:

R(ABC)
R(DEF)

which leaves in in 2NF, because none of D, E or F is depended on A.

To place this now in 3NF we have to eliminate transitive dependencies. This is A->B->C thus C is transitively dependent on A since A NOT -> C.
When eliminating these you just split it up further and have resulting database in 3NF:

R(AB)
R(BC)
R(DE)
R(EF)
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On