Hi,
I have 2 linked databases. I have information dumped from one of the databases and put into the other at the end of the week. The information in the first database is then deleted, so the next crew coming on has an empty database. I have this code for my tables, it works for the rest of them, but not this one.
my tables are linked properly and table names are correct. I would just like to know if my information is being just deleted or if is being put somewhere. I have looked in the actual database (i:\new\all.mdb ) and the info is not there. yet, this works for all the other tables.
Andrew
I have 2 linked databases. I have information dumped from one of the databases and put into the other at the end of the week. The information in the first database is then deleted, so the next crew coming on has an empty database. I have this code for my tables, it works for the rest of them, but not this one.
my tables are linked properly and table names are correct. I would just like to know if my information is being just deleted or if is being put somewhere. I have looked in the actual database (i:\new\all.mdb ) and the info is not there. yet, this works for all the other tables.
Code:
strAppend1 = "INSERT INTO [concentrate cans1] SELECT * FROM [concentrate cans]" strAppend1 = "Delete * from [concentrate cans]" DoCmd.RunSQL strAppend1
Comment