LebronJames
Programmer
- Apr 5, 2003
- 93
When I use an append query on a table of 1000 records, the new fields are added ok. When I use the same append query in table of 300000. Not all the records are brought over. I am using Access 2000. Is there an option in Access that allows me to change the Deafult Max records. Or can I program this in code?
Here is the query I am using:
INSERT INTO Table1
SELECT *
FROM Table2
WHERE (((Table1.field1) Not In (select Field1 from Table1)));
Here is the query I am using:
INSERT INTO Table1
SELECT *
FROM Table2
WHERE (((Table1.field1) Not In (select Field1 from Table1)));