我更改了表格中列的名称。有一个很好的脚本可以让我看到所有受影响的视图/功能/程序吗?应该在SQL Server 2008上运行。
谢谢:)
答案 0 :(得分:2)
查看此帖子可以帮助您找到:http://pranayamr.blogspot.com/2009/10/query-to-seaarch-out-table-and-sps-and.html
select
so.name,
sc.text
from
sysobjects so
inner join syscomments sc on so.id = sc.id
where
sc.text like '%ROLES%'-- name of the table
and sc.text like '%select%'--found procedure where select * from table name used
另请查看:http://www.codeproject.com/Tips/61424/Find-Sp-from-database-which-is-related-to-using-ta.aspx
第1步:
第2步: