Record Limit for Using Transactions, Commit?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there practical limit for using Begin Trans, Commit on a PC with modest
RAM (e.g., 128MB)? I am updating 400,000 records and in each looping through
a list of special characters in each record to replace them. This whole
update process is batched. I could have done this w/o transactions and just
used SQL to update each record.

Thanks
 
AFAIK, the limitations are the 2gb file size, and the available disk space
for the large temp file that may be generated.

An single update query will almost certainly be more efficient than looping
through 400k records if the update can be done that way.
 

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

Back
Top