Well I understand that for a normalized DB this would not be much help. Look at this:
One-to-one relations
Normalization will never generate two tables with a one-to-one relationship between them. There is no theoretical reason to separate a single entity like this with some fields in a single record of one table and others in a single record of another table but you might want to split a table into two for practical reasons in order to:
* reduce the number of fields in a table and meet some limit in the programming language.
* store large and rarely-used fields in a separate table so that you do not waste time transferring and processing them during routine operations.
* separate sensitive information from commonly-used fields so that the tables can be stored and backed-up separately.
Since I'm no expert take my comments as such.
Reputation Points: 10
Solved Threads: 4
Junior Poster in Training
Offline 51 posts
since Jun 2009