Viewing post 1 (of 1 total)
You should change dbcc inputbuffer something like that:
SELECT t.[text]
FROM sys.dm_exec_requests As r
cross apply sys.dm_exec_sql_text(Sql_handle) As t
WHERE session_id = @@spid
More better if you search in text the line of error using...
March 14, 2006 at 8:33 am
#626543