M
Mike Thomas
In Access 2000, what would be the best way to compare the structures of two
tables which should always have the same structure? Id like to compare for
field name and data type.
This is a case of inserting records from a temp table into an archive table
using the * character.
INSERT INTO InvoiceArchive
SELECT xTemp.*
FROM xTemp;
It is a new routine, and I am sure the stru of the temp table which feeds
into the archive table will change in the next year, and that I will forget
to change the archive table at some point. I want to be sure the stru of
the archive table is in sync, or else put up a message that the archive
table must be checked and modified before inserting the contents of the temp
table.
Many thanks
Mike Thomas
tables which should always have the same structure? Id like to compare for
field name and data type.
This is a case of inserting records from a temp table into an archive table
using the * character.
INSERT INTO InvoiceArchive
SELECT xTemp.*
FROM xTemp;
It is a new routine, and I am sure the stru of the temp table which feeds
into the archive table will change in the next year, and that I will forget
to change the archive table at some point. I want to be sure the stru of
the archive table is in sync, or else put up a message that the archive
table must be checked and modified before inserting the contents of the temp
table.
Many thanks
Mike Thomas