System resource exceeded with linked ODBC MS SQL 2000 table

J

jrajotte

Hi,

I have a simple query that reads from a linked Access table a bunch of
records (300 000) and append to a linked ODBC MS SQL 2000 table. With
this configuration, I receive the error "System resource exceeded". If
I replace the linked ODBC table by a linked Access table, it works
without error and I can append many hundred thousands of records at a
time.

Can someone explain me what is happening,
Tx
 
R

Rick Brandt

Hi,

I have a simple query that reads from a linked Access table a bunch of
records (300 000) and append to a linked ODBC MS SQL 2000 table. With
this configuration, I receive the error "System resource exceeded".
If I replace the linked ODBC table by a linked Access table, it works
without error and I can append many hundred thousands of records at a
time.

Can someone explain me what is happening,
Tx

That append is being logged on the SQL Server and the transaction log might be
running out of room. Generally DTS FROM SQL Server is better for bulk moves
like this because they are not logged. Doing it with append queries you might
have to break it up into several smaller chunks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top