파티션 스키마를 참조하는 인덱스 목록 보기
SELECT
PS.[name] AS PSName,
OBJECT_NAME([object_id]) AS tableName,
I.[name] AS indexName
FROM sys.indexes I
INNER JOIN sys.partition_schemes PS ON I.data_space_id = PS.data_space_id
ORDER BY PSName, tableName, indexName
'SQL Server > SQL Server Tip & Tech' 카테고리의 다른 글
SQL Server 2005 Performance Dashboard Reports에서 Difference of two datetime columns caused overflow at runtime 에러 Fix하기 (0) | 2008.09.22 |
---|---|
64bit 환경에서 Excel 작업이 포함된 SSIS Package 실행하기 (1) | 2008.08.29 |
SP, UDF, Trigger 문서 자동화 하기 (0) | 2008.07.31 |
SQL Server Internals Viewer (0) | 2008.07.25 |
varchar 타입으로 저장한 IP주소의 정렬 (2) | 2008.07.24 |