I have the following:
R = (A,B,C,D,E,F,G) FD = (A->B, C->D, E->F, ACE->G)
I'm struggling with the decomposition into 3NF. I've read through several of the other posts and managed to confuse myself. Any assistance is greatly appreciated.
I have the following:
R = (A,B,C,D,E,F,G) FD = (A->B, C->D, E->F, ACE->G)
I'm struggling with the decomposition into 3NF. I've read through several of the other posts and managed to confuse myself. Any assistance is greatly appreciated.
The only key is ACE.
A->B is a partial key dependency. R is not in 2NF.
R2 is in 5NF. R1 still has a partial key dependency: C->D.
R2 didn't change; it's still in 5NF. R4 is in 5NF. R3 still has a partial key dependency: E->F.
All four of those are now in 5NF. (So they're also in 3NF.)