Let's say my database tracks bird sightings (Note: I'm really scraping the bottom of the barrel for examples).
The fields are:
sighting_id | common_name | park_name | location | time | etc....
Although I'm assuming that a park will always be in the same location, the website is like a spreadsheet. The user enters park_name and location for every entry. Also please note that my actual schema has other fields that are dependent on the analogous "park name" as well (e.g. state).
I do not have a way for the user to predefine parks, so I can't know them ahead of time. Should I even attempt to dynamically normalize this data? For example, should my program automatically populate a parks table, replacing the park_name and location column in the bird sighting table with a park_id?
I'm worried about performance, mostly. Listing every sighting would require a join to populate park and location. Also, dynamically managing this would almost certainty require more resources than it would save. I would probably need a Cron job to eliminate orphaned Parks, since they may be referenced in multiple sightings.
parkstable. Even if two parks (say in different states) have the same name, they are two different parks (as noted) and this should be captured. Start with a good model -- and don't worry about performance until it is analyzed and determined to be an issue. It's easier to improve performance than fix bad data and a "good model" will be just as fast -- if not faster -- here. – pst Jun 11 '11 at 22:21