Följande är sätten vi kan använda för att kontrollera beroenden:
Metod 1:Använd sp_depends
sp_depends 'dbo.First'
GO
Metod 2:Använda information_schema.routines
SELECT *
FROM information_schema.routines ISR
WHERE CHARINDEX('dbo.First', ISR.ROUTINE_DEFINITION) > 0
GO
Metod 3:Använd 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