SQL 2000 on Win2003 Server
I am inserting rows into Table1Archive from Table1 based on a Trigger. Since the two tables are a mirror of each other, do I need to specify each field?
I know this will not work but it would be great to replicate this idea:
INSERT INTO Table1Archive
SELECT * FROM Table1
Any help would be greatly appreciated!