vote up 0 vote down star

I want to design a database for my application, and I have a question about the way to define a relation between the entities.

I have 2 related entities which ID is compound. For example:

  • an address entity which are identified by the properties [street number, house number, city, country], and a phone number (xx-yyyyyy)
  • an entity which is identified by the properties [region number, the number].

The relation is "For each address there are several phone numbers. I have two possible ways to define the tables:

  1. Tables that connected by all the ID fields
    • Address → [street number, house number, city, country, ..., region number, the number]
    • PhoneNumber → [region number, the number, ...]
  2. Tables with an ID field (GUID) which connected by this field.
    • Address → [ID, street number, house number, city, country, ...,]
    • PhoneNumber → [ID, region number, the number, ..., AddressID]

In the first solution, the primary key will be all the fields that identifies the entity, and in the second soultion, the primary key will be only the ID field.

My question is - what is the better way? (by performance, maintanance, design, etc...)

flag

73% accept rate
Can it be that this is homework? – Tomalak Jun 3 at 9:11

2 Answers

vote up 1 vote down

The primary key will never be "all of the fields in a table". This is not how relational databases are supposed to work, so forget that approach.

The key is a key, and data is data. Never ever mix the two up. If you mix them, you end up with a situation where you need to change the key and all records in the database that use it as soon as the data changes. Which is bad.

The only proper way to design this (common) 1:n relationship is:

Address               PhoneNumber
-------               -----------
 *ID         <---+     *ID
 StreetNumber    +---  AddressID
 HouseNumber           RegionNumber
 City                  TheNumber
 Country               ...
 ...

The * denote primary keys, typically an auto-incrementing number with a unique index on it.

The arrow denotes a foreign key relationship.

link|flag
In my first approach, the key isn't all the fields in the table, it's only the keys that connects the table with the other table. When I use the second approach, then I have to add a uniqueness constraint on all those fields, which are logically form a primary key. I guess that if I add a uniqueness constraint, then I have to also add an index on those fields, since uniqueness without index will be slow (right?). By the way, in my scenario, the ID is never updated, so it seemed right to define those fields as primary. – Andy Jun 3 at 9:46
You are not very clear on which of your fields are keys, then. Maybe you should edit the question to make the fields you think should be key bold or the like, because I don't understand your idea #1. In your idea #2 you do it the wrong way around: By defining a PhoneNumberID in the Address table, you set your data model up for multiple addresses per phone number. – Tomalak Jun 3 at 10:22
vote up 0 vote down

Whether or not you have GUID the second option is easier to code and design. When you select data by joining two tables you'll only need the identifier columns indexed. The other way you need composite indexes for just this join.

Having unique primary keys in tables in a enterprise corporate system is a valuable practice in my experience. (from both dba and developer perspective)

Designing database for performance is a complicated issue involving many criteria. Rather then go after the theory, if you have Oracle at hand play with your two approaches in practice and use explain plan tools. I mean create tables with your mentioned approaches, play with indexes and use explain plan. If I am not mistaken Oracle even gives you an idea about query performance by projection (i.e. by letting you estimate number of rows in tables). I'm not sure about Express Edition version has this support

link|flag
I still need uniqueness constraint on those fields, so shouldn't I index them in both of the approaches? (I thought that uniqueness constraint validation is faster when the fields are indexed, but maybe I wrong...) – Andy Jun 3 at 9:57

Your Answer

Get an OpenID
or

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