前端之家收集整理的这篇文章主要介绍了
确定SQL Server中视图中引用的表,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何了解
sql Server中视图中使用的表?是否有脚本或工具可以让我知道视图中使用的表格,还可以列出字段?
希望这能解决问题.如果没有,请告诉我.
请指导!谢谢!
select
cols.*
from
sys.sql_expression_dependencies objs
outer apply sys.dm_sql_referenced_entities ( OBJECT_SCHEMA_NAME(objs.referencing_id) + N'.' + object_name(objs.referencing_id),N'OBJECT' ) as cols
where
objs.referencing_id = object_id('view_name_here')
参考:sys.dm_sql_referenced_entities (Transact-SQL) .
原文链接:https://www.f2er.com/mssql/84311.html