The dependency dialog in SQL Server Management Studio does not appear to be particularly reliable, not returning some dependencies.
The solution is to use the
sys.dm_sql_referenced_entities table function:
select * from sys.dm_sql_referenced_entities (<ENTITY>, 'object')
No comments:
Post a Comment