테이블 인덱스
Reorganize 시키는 커맨드
SSMS(Sql Server Management Studio) UI상에서 마우스로 클릭해서 할 수도 있지만
query 입력처럼 동작하도록 하는 script
USE [데이터베이스 이름]
GO
ALTER INDEX [인덱스 이름] ON [테이블이름]
REORGANIZE;
GO
의 형태로 사용하면 동작한다.
인덱스를 모두 Reorganize 시키는 Reorganize ALL동작은 인덱스 이름 부분을 ALL로 바꿔주면 된다.
USE [데이터베이스 이름]
GO
ALTER INDEX ALL ON [테이블이름]
REORGANIZE;
GO
* example
USE AdventureWorks2012;
GO
-- Reorganize the IX_Employee_OrganizationalLevel_OrganizationalNode index on the HumanResources.Employee table.
ALTER INDEX IX_Employee_OrganizationalLevel_OrganizationalNode ON HumanResources.Employee
REORGANIZE ;
GO
참조 : https://technet.microsoft.com/en-us/library/ms189858(v=sql.110).aspx#TsqlProcedureReorg
'불특정 다양한 기록 Part. IT' 카테고리의 다른 글
MSSQL 프로시저 문법 반복문으로 테이블 지우기 (0) | 2017.05.18 |
---|---|
javascript replace replaceAll . 점 dot 문자바꾸기 (0) | 2016.06.30 |
spring maven dependency 에 mssql jdbc 추가하기 (0) | 2016.06.08 |
엑셀(excel) 새창 열기 (따로 열기) (0) | 2016.05.19 |
Solutions of “Windows cannot be installed to disk 0 partition 1” (0) | 2016.05.13 |