博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL Server 用SSMS查看依赖关系有时候不准确,改用代码查
阅读量:6463 次
发布时间:2019-06-23

本文共 526 字,大约阅读时间需要 1 分钟。

SQL Server 用SSMS查看依赖关系有时候不准确,明明某个sp中有用到表tohen,查看表tohen的依赖关系的时候,却看不到这个sp

用代码查看方式如下:

--依赖于表tohen的对象SELECT * FROM sys.dm_sql_referencing_entities('dbo.tohen','OBJECT')--存储过程sp_tohen依赖的对象SELECT distinct referenced_entity_name FROM sys.dm_sql_referenced_entities('dbo.sp_tohen','OBJECT')--查看所有对象的依赖关系SELECT o.name, o.type_desc, p.name as referenced_name, p.type_desc type_desc2 FROM sys.sql_expression_dependencies dINNER JOIN sys.objects o ON d.referencing_id = o.object_idINNER JOIN sys.objects p ON d.referenced_id = p.object_id

 

转载地址:http://fjhzo.baihongyu.com/

你可能感兴趣的文章