Viewing 5 posts - 1 through 5 (of 5 total)
Just make sure that there are no open transactions left over from previous attempts.
"SELECT @@TRANCOUNT" should return 0 before you attempt to run it again.
Hope that helps, it definitely works...
January 13, 2009 at 6:17 am
Your code seems correct, but are you committing or rolling back the transaction before running it a second time?
Remember that if you don't, a new transaction will not be started,...
January 13, 2009 at 5:57 am
Thanks Paul, that's exactly what I was looking for...:)
January 13, 2009 at 2:21 am
Have a lool at my suggestion above
The problem with that solution is that it's very tightly integrated with the logic. It would require changes to the specific application doing the...
November 28, 2008 at 5:13 am
could you explain the problem in more detail.
Sure, I'll try my best...New example:
Let's say I have an application. Whenever a user updates a row in the [Client] table, 2 things...
November 28, 2008 at 4:08 am
Viewing 5 posts - 1 through 5 (of 5 total)