Share Dot Net Experience
SQL SERVER – Find Stored Procedure Related to Table in Database – Search in All Stored Procedure
SELECT DISTINCT o.name, o.xtype
FROM syscomments c
INNER JOIN sysobjects o ON c.id=o.id
WHERE c.TEXT LIKE '%tablename%'
‹
›
Home
View web version