Viewing post 1 (of 1 total)
Try this on for size. It will give you the table name base on the object id in the where clause.
SELECT *
FROM sys.objects
WHERE object_id = 632864
GO
--Here's the reverse - to...
October 12, 2016 at 1:10 pm
#1906187