Re: [GENERAL] Transaction blocks

2004-08-10 Thread Scott Marlowe
On Tue, 2004-08-10 at 14:45, Jonathan Barnhart wrote: > Is there a way to continue a transaction after an error? I've got a > situation where I have a transaction open and I'm inserting data, but > some of it could fail on validation. I want to keep the good stuff, > leave out the bad, and get th

Re: [GENERAL] Transaction Blocks

2003-07-08 Thread Jay O'Connor
On 2003.07.07 11:56 Mat wrote: > I believe that its more efficient to group INSERT's together and COMMIT > them in groups. > However, I am automatically entering a lot of data and some of its is > not unique. How can I reap the benefits of using BEGIN and COMMIT > without the whole block of transac

[GENERAL] Transaction Blocks

2003-07-07 Thread Mat
I believe that its more efficient to group INSERT's together and COMMIT them in groups. However, I am automatically entering a lot of data and some of its is not unique. How can I reap the benefits of using BEGIN and COMMIT without the whole block of transactions failing if one is duplicated. Than