Guys, how would you create second form of this table (primary key is: {isbn,copy}):
isbn AB-1234-X
authorID IC45
authorName I.Conn
title The final curtain
copy 2
classification Detectivefiction
userID xyz44

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

A relation is in 2NF iff

  • it's in 1NF, and
  • every non-prime attribute is dependent on the whole of every candidate key (not on just part of any candidate key)

The only candidate key is {isbn, copy}. So the question becomes three questions.

  1. Is this relation in 1NF?
  2. Are any of the non-prime attributes {authorID, authorName, title, classification, userID} dependent only on {isbn}?
  3. Are any of the non-prime attributes {authorID, authorName, title, classification, userID} dependent only on {copy}?

What do you think?


Later . . .

Then I'm creating separate table with attributes: isbn, autorID, autorName, title, Classification and another table with attributes: isbn, copy, userID.

Yes. In "relational speak", you replaced the original relation R with these two projections.

  • R1 = {isbn, copy, userid}
  • R2 = {isbn, authorid, authorname, title, classification}

If you've done that correctly, you should be able to create R again by joining R1 and R2 on {isbn}.

Now both R1 and R2 are in 2NF. (I think that was the point of the homework question.) You might want to consider whether R1 and R2 are in

  • 3NF
  • BCNF
  • 4NF
  • 5NF

Still later . . .

Speaking informally, a relation is in 3NF iff

  • it's in 2NF, and
  • there are no transitive dependencies.

When I say "it's in 2NF", I mean the relation in question is in 2NF and it's not already in 3NF, BCNF, 4NF, or 5NF.

What normal form are R1 and R2 in? You'll want to explain your reasoning, otherwise your lecturer is liable to make you look foolish. And we don't want that.

  • R1 = {isbn, copy, userid}
  • R2 = {isbn, authorid, authorname, title, classification}

And still later . . .

R1 is in 5NF. R2 is in 2NF.

R2 isn't in 3NF, because there's a transitive dependency between "isbn" and "authorname".

  • isbn->authorid, and
  • authorid->authorname

Remove this transitive dependency by replacing R2 with these two projections (R3 and R4).

  • R1 = {isbn, copy, userid} (5NF)
  • R3 = {isbn, authorid, title, classification}
  • R4 = {authorid, authorname}

I don't think there's a functional dependency between title and classification.

link|improve this answer
@Catcall could you please provide a proper answer (some form of table) instead of asking me a question? I don't find it helpful at all. As for answering your question: Yes, Yes, Yes – There is nothing we can do Mar 20 '11 at 12:40
1  
@There is nothing we can do: I could provide tables, but that wouldn't be helping you with your homework. It would be doing your homework for you. Which non-prime attributes are dependent only on {isbn}? And having identified those attributes, what are you supposed to do with them? – Catcall Mar 20 '11 at 12:52
1  
@CatCall Attributed dependent only on isbn: authorID, authorName, title and classification. Then I'm creating separate table with attributes: isbn, autorID, autorName, title, Classification and another table with attributes: isbn, copy, userID. What do you say to that? – There is nothing we can do Mar 20 '11 at 13:17
@There is nothing we can do: I say, "Good job." Which non-prime attributes are dependent only on {copy}? – Catcall Mar 20 '11 at 13:43
@Catcall the other attributes which are dependent only on copy it looks like it is userID but somewhat cannot understand that. – There is nothing we can do Mar 20 '11 at 15:10
show 15 more comments
feedback

Have your classification & author in a separate table, like so:

Book Table:

isbn AB-1234-X

authorID IC45

title The final curtain

copy 2

classificationID 1

userID xyz44

Author Table:

AuthorID

AuthorName

Classfication:

ClassificationID

ClassificiationName

link|improve this answer
@James and that's it? – There is nothing we can do Mar 20 '11 at 12:04
Move your AuthorName to a separate table also (didn't see that on first pass :P) I've edited my answer (might need a little help with formatting) – James Love Mar 20 '11 at 12:08
@James according to what rules did you've created this tables? Where did you take ClassificationID, and ClassificationName from? And could you please clearly state where is the start of each table. – There is nothing we can do Mar 20 '11 at 12:15
1  
@JamesLove: Surrogate keys don't have anything to do with normalization. – Catcall Mar 20 '11 at 13:07
1  
@JamesLove: Inventing a new attribute called ClassificationID has nothing to do with normalization and 2NF. – sqlvogel Mar 20 '11 at 19:19
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.