Ke kontrole závislostí můžeme použít následující způsoby:
Metoda 1:Použití sp_depends
sp_depends 'dbo.First'
GO
Metoda 2:Použití information_schema.routines
SELECT *
FROM information_schema.routines ISR
WHERE CHARINDEX('dbo.First', ISR.ROUTINE_DEFINITION) > 0
GO
Metoda 3:Použití 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