I have this problem decomposing a relation schema into a set of schemas that are in 3NF.
I have this relation schema: R= (A, B, C, D, E, F)
With the following set F of functional dependencies:
A → ABCDEF
B → C
D → E
Can anyone help me out?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
RA = (A, B, D, F)
RB = (B, C)
RD = (D, E)
Why? 3NF requires the removal all transitive dependencies.
In R, C is transitively dependent on A through B, and the same is true for E through D. To remove those properties, you need to decompose the tables such that those transitive relationships are removed, which you do by extracting the table and using the middle term as keys.