인덱스의 정보를 기록하는 시스템 테이블
자세한 사항은 BOL에 다 나오지만
status 칼럼에 대한 정보는 단지 시스템 상태 정보라고만 나오는데
해당 칼럼은 각 인덱스의 상태에 대한 정보를 다음 값의 합으로 나타낸다.
1 = WITH IGNORE_DUP_KEY = ON
2 = Unique index.
4 = Cancel command if attempt to insert duplicate row.
16 = Clustered index.
64 = Index allows duplicate rows.
2048 = Index used to enforce PRIMARY KEY constraint.
4096 = Index used to enforce UNIQUE constraint.
자세한 사항은 BOL에 다 나오지만
status 칼럼에 대한 정보는 단지 시스템 상태 정보라고만 나오는데
해당 칼럼은 각 인덱스의 상태에 대한 정보를 다음 값의 합으로 나타낸다.
1 = WITH IGNORE_DUP_KEY = ON
2 = Unique index.
4 = Cancel command if attempt to insert duplicate row.
16 = Clustered index.
64 = Index allows duplicate rows.
2048 = Index used to enforce PRIMARY KEY constraint.
4096 = Index used to enforce UNIQUE constraint.
'DATABASE' 카테고리의 다른 글
| SQL Server 2K Job Schedule 문서화 스크립트 (0) | 2009/06/16 |
|---|---|
| SQL 2K 테이블 명세를 WIKI문법으로 뽑아내기 (0) | 2009/05/22 |
| SQL 2K sysindexes Table (0) | 2009/05/16 |
| MSSQL에서 사용자와 로그인 매핑 방법 (0) | 2009/05/14 |
| 테이블 명세 문서화 (0) | 2009/05/03 |
| FILLFACTOR 와 PAD_INDEX (0) | 2009/03/31 |