Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Come trovare tutte le dipendenze di una tabella in SQL Server

I seguenti sono i modi che possiamo usare per controllare le dipendenze:

Metodo 1:utilizzo di sp_depends

 sp_depends 'dbo.First'
 GO

Metodo 2:utilizzo di information_schema.routines

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

Metodo 3:utilizzo di 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