2,723 views

3 Answers

Best answer
8 votes
8 votes

E1(A,B,C) with A is Candidate key and  C is mltivalue attribute 

R(A,D) with AD is candidate key

E2(D,E,F) with D is Candidate key and  F is mltivalue attribute .

To make relation in 1nf no multivalue attribute present in relation so 

E1 break in E1(AB) with Ais candidate key

E1 break in E1(AC) with AC is candidate key

E2 break in E2(DE) with D is candidate key

E2 break in E2(DF) with DF is candidate key

R(AD) will not combine with E1(AB) OR E2(DE). because\

when R(AD) will not combine with E1(AB) then E1(ABD) A->B AND AD WILL BE THEIR AD IS CANDIDAYTE KEY PARTIALY DEPENDANCY PRESENT SO NOT COMBINE.

SAME FOR R(AD) will not combine with E2(DE). 

SO 5 TABLE REQUIRED. ALL ARE KEPT ALONE

selected by
4 votes
4 votes
5 tables are required..

E1(A,B)

E1'(A,C)

E2(D,E)

E2'(D,F)

R(A,D)  as R is many to many relation candidate key is AD
4 votes
4 votes

For Relation:-

           1:n ->No Table

           1:1 ->No Table

           M:N -> A Table required

--------------------------------------------------------------------------------------

For Strong Entity:- 

            A table is required

-----------------------------------------------------------------------------------------

For Weak Entity:- 

                        A table is required

-----------------------------------------------------------------------------------------

For Multivalued Atrributes:-

                     A table is required

----------------------------------------------------------------------------------------

Therefore in the above ER diagram:-

For Strong Entity-2

 For M:N   - 1

For Multivalued Attribute  - 2

total table:2+1+2=5

Answer:

Related questions

3 votes
3 votes
4 answers
1
Himanshu1 asked Nov 5, 2015
2,627 views
1 votes
1 votes
1 answer
2
shikharV asked Dec 8, 2015
2,825 views
Given answer is 2, but I think that for each multivalue attribute we need a relation and one for the main entity, therefore 3 should be the answer. Please correct me if I...
3 votes
3 votes
1 answer
4
Manu Thakur asked Sep 17, 2017
1,912 views
this question is from virtual gate test series. what is the minimum number of RDBMS tables needed for the following er diagram: