sql-server – 如何在sql server中查找表的所有依赖项

前端之家收集整理的这篇文章主要介绍了sql-server – 如何在sql server中查找表的所有依赖项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个数据库,我有表,过程,视图和触发器的列表.
但是我想要一个查询获取包含父表的子表的所有依赖项.

解决方法

以下是可以检查的依赖方式

方法1:使用sp_depends

sp_depends 'dbo.First'
 GO

方法2:使用information_schema.routines

SELECT *
 FROM information_schema.routines ISR
 WHERE CHARINDEX('dbo.First',ISR.ROUTINE_DEFINITION) > 0
 GO

方法3:使用DMV sys.dm_sql_referencing_entities

SELECT referencing_schema_name,referencing_entity_name,referencing_id,referencing_class_desc,is_caller_dependent
 FROM sys.dm_sql_referencing_entities ('dbo.First','OBJECT');
 GO
原文链接:https://www.f2er.com/mssql/82401.html

猜你在找的MsSQL相关文章