Hey Mike,
I need to know if there is any way to disable transactions. The problem is this: I am running a script which does an update to several rows in a table based on iterating through a collection. The problem, is that if one row fails, none of them get updated.
While I understand the need and purpose of transactions, this is not the desired result in this case. These records are for the most part, unrelated. Basically, we are copying a bunch of records from one database to another, so if there is an FK error or something, then I would like for only the 'bad' record to fail, not the entire collection.
I also would rather not load these one at a time - since that would take FOREVER!
Any suggestions?