निर्भरता की जांच के लिए हम निम्नलिखित तरीकों का उपयोग कर सकते हैं:
विधि 1:sp_depends
. का उपयोग करना
sp_depends 'dbo.First'
GO
विधि 2:information_schema.routines
. का उपयोग करना
SELECT *
FROM information_schema.routines ISR
WHERE CHARINDEX('dbo.First', ISR.ROUTINE_DEFINITION) > 0
GO
विधि 3: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