Showing posts with label How to find all the dependencies of a table in sql server. Show all posts
Showing posts with label How to find all the dependencies of a table in sql server. Show all posts

Wednesday, April 15, 2015

How to find all the dependencies of a table in sql server

Following are the way can check the depedencies


Method 1: Using sp_depends

 sp_depends 'dbo.First'  
 GO  


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


Method 3: Using 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 referencing_id, referencing_class_desc, is_caller_dependent  
 FROM sys.dm_sql_referencing_entities ('dbo.First', 'OBJECT');  
 GO