Assume that the relation is obtained through decomposition from a relation with attributes ABCDEFGHI and that dependencies over ABCDEFGHI are listed below.
R(A,B,F) B->E A->F
We need to convert this relation into BCNF
What i have done till now is
R1(AB) R2(AF) R3(BE)
Is there anything more I should do? Is this proper BCNF or am I missing something?