I have a d/base that houses 18 table. This d/base is something that our IT folks control and update. Every table has a common field named: IID. The problem is - none of these tables have a primary key or even an IID-ID field that will allow me to join all the tables - to allow this tool to run smoother.
There is one MAIN table. What I want to do is create an autonumber field (named: KeyID) in the main table, make it the primary key, add a column to ALL the other tables, that shows the KeyID value where the IID field is equal.
Is the possible with ALTER TABLE, OR INSERT INTO???
Any examples or suggestions??
I'm afraid that onces all the tables are joined, it will cause problems because the tables are updated every night on the network/server. Is there a way to do this everyday (alter the tables) without breaking the relationships??
Our data is very DE-normalized and I am tryin' to find a way to make it all run smoother....
Thanks in advance!!
jw
There is one MAIN table. What I want to do is create an autonumber field (named: KeyID) in the main table, make it the primary key, add a column to ALL the other tables, that shows the KeyID value where the IID field is equal.
Is the possible with ALTER TABLE, OR INSERT INTO???
Any examples or suggestions??
I'm afraid that onces all the tables are joined, it will cause problems because the tables are updated every night on the network/server. Is there a way to do this everyday (alter the tables) without breaking the relationships??
Our data is very DE-normalized and I am tryin' to find a way to make it all run smoother....
Thanks in advance!!
jw