MVIT (4/2/2015)
i have object with name "utils..deletelist" in my database .where can i find the same in the object explorer ? what kind of object it is ? is it a table or proc etc ...?
Quick suggestion, run this code and check what it brings back
😎
USE utils;
/* The object is in the utils database (utils..deletelist)
and will only show up there in the object explorer
*/
GO
SELECT
*
FROM sys.all_sql_modules ASM
WHERE ASM.definition LIKE N'%deletelist%';