B
Bob
I have a database that records employee details. Each employee is identified
by 4 letters. The first 3 letters from their last name and the first letter
from their first name.
This system has proven to be sufficiently robust to use this field as a
primary key in several tables
As it is a primary key there isn't any one place that is looked up.
Occasionally, someone gets married and changes their name.
Is their a way to cycle through all tables in the database, finding a value
and replacing it with another.
I know I can do it with one table with an update query, but what about
several tables at once.
I should add that the way this database has evolved its current design may
be far from ideal, buts thats the problem ... it evolved, rather than
instantly created from a good design.
by 4 letters. The first 3 letters from their last name and the first letter
from their first name.
This system has proven to be sufficiently robust to use this field as a
primary key in several tables
As it is a primary key there isn't any one place that is looked up.
Occasionally, someone gets married and changes their name.
Is their a way to cycle through all tables in the database, finding a value
and replacing it with another.
I know I can do it with one table with an update query, but what about
several tables at once.
I should add that the way this database has evolved its current design may
be far from ideal, buts thats the problem ... it evolved, rather than
instantly created from a good design.