2017. 2. 23. 06:00

1. table에 index 존재 여부 확인 방법

exec SP_HELPINDEX [table명]

ex) table명 : testTable인경우

exec SP_HELPINDEX [testTable]


2. table에 index 추가(*noncluster 방법임)

create index index명 on table명(Column1, Column2)

ex) table명 : testTable, index명 : testIndex, Column1 : id, Column2: name 인경우

create index testIndex on testTable(id, name)



'DB > MSSQL' 카테고리의 다른 글

Try Catch 예제  (0) 2017.09.05
오전오후 -> datetime 변환  (0) 2017.03.28
MSSQL express to standard upgrade  (0) 2016.11.18
[MSSQL] MSSQL MANAGEMENT에서 테이블 수정 안되는 오류  (0) 2015.12.14
[MSSQL] Password 분실  (0) 2015.12.02
Posted by 까망후니