Ok, I admit it.
I made a seriously bad design choice and have ended up with a flat table that now needs to be split.
Basically the incident table has fields to capture the basic details of a event:
Date
Time
Address
Incident Number
And on the same table:
Surname
Firstname
Address
Birth Date
etc
So at the moment if a person is involved in more than one incident there details are stored multiple times.
I want to now split this into two tables, table incident and table people.
I was wondering how I would go about this without having to manually re-enter data?
And would it likely break the DB? I recall reading something about views being a way to impliment the changes without breaking queries.
Cheers
-Al
I made a seriously bad design choice and have ended up with a flat table that now needs to be split.
Basically the incident table has fields to capture the basic details of a event:
Date
Time
Address
Incident Number
And on the same table:
Surname
Firstname
Address
Birth Date
etc
So at the moment if a person is involved in more than one incident there details are stored multiple times.
I want to now split this into two tables, table incident and table people.
I was wondering how I would go about this without having to manually re-enter data?
And would it likely break the DB? I recall reading something about views being a way to impliment the changes without breaking queries.
Cheers
-Al