반응형
A테이블에 의존하는 모든 객체 가져오는 명령문
Returns all the objects that depend on ATable
Select * from sys.dm_sql_referencing_entities('dbo.ATable','Object')
sys.dm_sql_referencing_entities - 참조하는 엔티티
sys.dm_sql_referenced_entities - 참조되어지는 엔티티
example:
Create view VwEmployees --> Referencing entity
as
Select * from Employees --> Referenced entity
스키마 바운드 종속성 vs Non 스키마 바운드 종속성
Schema-bound dependency VS Non-Schema-bound dependency
스키마 바운드 종속성은 참조하는 개체가 삭제되거나 수정되는 것을 방지한다.
넌 스키마 바운드 종속성은 그런 것에 연연해 하지 않고 삭제나 수정이 가능하다.
반응형
'Database > SQL Server' 카테고리의 다른 글
SQL Server - 순서 만들기 시퀀스 Sequence object (0) | 2020.12.23 |
---|---|
sql 연습 (0) | 2020.12.22 |
SQL Server - 객체 종속성 식별 Identifying object dependencies (0) | 2020.12.22 |
SQL Server - 오프셋, 페치 넥스트 Offset, Fetch Next, Pagination (0) | 2020.12.22 |
SQL Server - DateTime vs DateTime2 차이, 비교 (0) | 2020.12.19 |