Viewing 5 posts - 1 through 5 (of 5 total)
I have used the following algorithm with success:
1. Create a table called <<name of transaction>>_lock. Table should have a single integer column in it. Insert one row in the table ...
November 7, 2006 at 12:57 pm
Since the table joins are left outter joins you could create a table variable with the full results set definition, insert the main table into it, and update the other columns...
October 5, 2004 at 7:35 am
I can think of two solutions.
1) Use profiler to trap the SQL. Save the output to a table and use a select statement similar to
SELECT textdata from <<tablename>> WHERE textdata like...
October 1, 2004 at 1:36 pm
The variable @NewClosedDetail is not referenced between the declaration and the IF statement. Since the value has never been set, it is always NULL in the procedure
October 1, 2004 at 1:33 pm
I had this happen once using a Unix network drive. The problem was that the error messages from the server were not making it back to the client because of...
August 11, 2004 at 1:01 pm
Viewing 5 posts - 1 through 5 (of 5 total)