in Databases edited by
1,347 views
5 votes
5 votes

Consider the following E-R diagram:

 

What is the minimum relations required which satisfied the 2nd normal form?

A) 1
B) 2
C) 3
D) 4
in Databases edited by
1.3k views

4 Comments

yups..
0
0
Suppose if it were asked to cal number of tables for BCNF with same diagram except that C should be single valued then we will have 3 tables

E1((A)BC)

R((AD))

E2((D)EF)

because if we merge all in one then that will be in 1nf but not even 2nf because of PDs

A--> BC

D --> EF

ryt.
0
0
yes, correct.
0
0

3 Answers

6 votes
6 votes

There will be 4 tables as follows:

$E_1$(A,C) (for mutivalued attribute C)

$E_1$(A,B)  

$E_2$(D,E,F) 

R(A,D)  (for m:n relationship )

edited by

4 Comments

Here relationship type is not given. Are we supposed to think it as m:n relationship?
0
0
how 3?

if there are no arrows it means many to many relationship.
0
0

line without arrow head (------------) means 'n'

line with arrow head (----------->) means '1'

5
5
0 votes
0 votes

3 table is required

0 votes
0 votes

4 table is required --

R1(A,B)

R2(A,C)

R3(A,D) 

R4(D,E,F)

Related questions

3 votes
3 votes
4 answers
3