I\'ve got various databases, and what to be sure I am removing something (a view in this case) that is truly orphaned. Is the the correct SQL to be using:
S
I am not sure but i guess you can use something like this if your view is used in some stored procedure
SELECT * FROM syscomments c INNER JOIN sysobjects o ON c.id =o.id WHERE text LIKE '%my_view_name%' AND xtype ='p'