I need to design database which would keep track of the following attributes:

    stdnum       // student number
    postcode     // postal code
    phone_number // student phone number
    city         // student address: city

Also listed are functional dependencies:

    stdnum -> postcode
    stdnum -> phone_number
    postcode -> city
    phone_number -> city

I need to find lossless-join, dependency preserving, 3rd normal form decomposition of the attributes.
I have tried different decompositions but there was no one that obeys all requirements (they are: lossless-join, dependency preserving, 3rd normal form).
E. g. if I leave original relation without changes (table would have all 4 attributes) I would get lossless-join, dependency preserving but not 3NF, only 2NF.
The following decomposition:

(stdnum, postcode, phone_number, city) = 
=(stdnum, postcode, phone_number) JOIN (postcode, city) JOIN (phone_number, city)

is in 3NF, dependency preserving, but not lossless-join.
Is there any solution for my problem?

Thank.

link|improve this question
Homework? Use the "homework" tag. – Catcall Nov 3 '11 at 13:13
@catcall - the homework tag is deprecated. Either the question is interesting or it's not. Who cares whether it's homework? – APC Nov 3 '11 at 13:14
@APC: I didn't find anything about "homework" being deprecated in the tag itself, in the FAQ, or on Meta. Can you point me in the right direction? – Catcall Nov 3 '11 at 13:23
@catcall : meta.stackoverflow.com/questions/34503/… – APC Nov 3 '11 at 13:42
@APC: That answer's almost two years old; moderators haven't removed the tag, and they haven't edited its description to suggest it's deprecated. Anything official and more recent? – Catcall Nov 3 '11 at 14:52
show 1 more comment
feedback

2 Answers

Perhaps the purpose of the assignment is to make you discover the negative answer to your question "Is there any solution for my problem?".

Having your database as a single 4-attribute thing necessarily means there can be only one D (city) for each A (stud). Decomposing in the usual way for the B->D and C->D FDs, necessarily introduces the possibility of having two distinct D's associated with each A.

Dealing with that requires the introduction of a database constraint into the design, but database constraints are outside the scope of normalization theory proper.

And not decomposing necessarily means that you won't get 3NF.

Hence : perhaps the purpose of the assignment is to make you discover that normalization isn't a holy grail of database design. I think you were already on that track.

link|improve this answer
"Decomposing in the usual way for the B->D and C->D FDs, necessarily introduces the possibility of having two distinct D's associated with each A." In other words, normalisation reveals an error ih the original data model. I think that's a validation of the normalisation exercise, not a strike against it. – APC Nov 7 '11 at 13:36
Huh ? I don't think it does. If you do think it does, it seems up to you to reveal what the error is, precisely. What is wrong with the concept of "if you know the zipcode, then you know the city", and what is wrong with the concept of "if you know the phone number, then you know the city", and what is wrong with those two concepts applying simultaneously ? ... – Erwin Smout Nov 8 '11 at 23:15
... (I mean, of course, from a theoretical perspective, e.g. if phone companies organized their phone number allocations such that the first n digits of any phone number really are a determinant factor that allows one to determine the city from this.) (I mean : the consideration that this does not happen to be the case in practice, today, that consideration does not count.) – Erwin Smout Nov 8 '11 at 23:17
feedback

Your breakdown of the original relation presumes these dependencies point to the same CITY.

postcode -> city
phone_number -> city

In real life that is not always the case. For instance, in my own locality there are addresses which have a phone number with a LONDON area code but which lie in a KINGSTON, SURREY postcode. And then there are mobile phones, which don't map to any geographical location.

So I would resolve your problem by changing the data model.


"Attributes are abstraction. You don't need to understand meaning of atributes. All information about them is in the functional dependencies listed in the task."

Thinking with concrete examples is a better way to understand the flaws in our abstractions. In this case perhaps you really have five attributes not four. Or perhaps there is functional dependency postcode -> city is valid but phone_number -> city is bogus. Or perhaps you need to model the fact that a student can have more than one phone number e.g. digs landline (shared), mobile (personnel).

link|improve this answer
Thank for reply, but the specific of my task is that I can`t determine dependencies, they are already defined in the task. You can use symbols like A,B,C,D instead of given attributes. Attributes are abstraction. You don't need to understand meaning of atributes. All information about them is in the functional dependencies listed in the task. – user1027405 Nov 3 '11 at 14:19
feedback

Your Answer

 
or
required, but never shown

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