Popular Posts

SQLblog.com - The SQL Server blog spot on the web

Saturday, September 30, 2017

Object Dependency

SQLServerCentral » Latest topics
Object Dependency
Hi All,
I am using SQL below to get the object dependency.
select Obj.name,dep.referenced_entity_name from sys.sql_modules as Module,sys.objects AS Obj ,sys.sql_expression_dependencies
as Dep ,sys.objects as DepObj
where obj.object_id=

No comments: