I have tables with relationships set up to track membership. I need to be able to move inactive members and their data in the other tables to a duplicate set of tables in case they become active again I can move them back into the active tables.
I can append all of their data to a single table and then delete it but would prefer to have the inactive information appened in duplicate inactive tables.
As I have it now;
Active Personal Information Table
Active Membership Table
linked as Enforced Ref Int, Cascase Update Related Fields, and Cascade Delete Related Records
When I append/delete it all goes to a single table, Inactive Table All
But want it to go to;
Inactive Personal Information Table
and Inactive Membership Table
I'm fairly new but can use design and can understand some SQL.
Thanks,
Steve
I can append all of their data to a single table and then delete it but would prefer to have the inactive information appened in duplicate inactive tables.
As I have it now;
Active Personal Information Table
Active Membership Table
linked as Enforced Ref Int, Cascase Update Related Fields, and Cascade Delete Related Records
When I append/delete it all goes to a single table, Inactive Table All
But want it to go to;
Inactive Personal Information Table
and Inactive Membership Table
I'm fairly new but can use design and can understand some SQL.
Thanks,
Steve