 |
|
 |
JLRodgers Level: Moderator
 Registered: 04-04-2002 Posts: 1616
|
Re: DataBase Normalization
Just curious really.... but unless you're having poor performance and optimized queries for retrieving data, is there any other reason to make the table smaller?
Afterall, if you have a program or front-end to the database, not all the fields or rows are used at once.
To keep something in mind also, it is possible that by having multiple tables over a single table, it could take a bit longer to retrieve the data (ex: instead of one "SELECT" you have multiple "SELECT" statements or "INNER JOIN" or similar to retrieve the same data)
of course, you could just make 10 copies of the table structure, then import the data that belongs there. Then every query will have to be modified to make sure it uses the proper table, and potentially not trying to access a field that doesn't exist. It could end up in a major re-write of the program as well.
____________________________
Everywhere's Local (classifieds, job postings, & more for everycity in the world - user entered)
|
|
14-03-2006 at 05:57 PM |
|
|
|
|
 |
 |