你试过这个了吗
EXEC sp_depends @objname = [table name of the column you areinterested in]?
因此,例如,如果您在一个名为
Price的表中有一个名为的列
Product,则可以执行以下命令:
EXEC sp_depends @objname =N'Product'。
只需执行此操作,即可获得取决于该特定表的所有sp,视图等的列表。
我一直使用这个数据库,因为我使用的数据库有400多个表:-)
MSDN上的sp_depends页面



