스크립트로 인덱스 생성하기
USE AdventureWorks2012; GO -- Create a new table with three columns. CREATE TABLE dbo.TestTable (TestCol1 int NOT NULL, TestCol2 nchar(10) NULL, TestCol3 nvarchar(50) NULL); GO -- Create a clustered index called IX_TestTable_TestCol1 -- on the dbo.TestTable table using the TestCol1 column. CREATE CLUSTERED INDEX IX_TestTable_TestCol1 ON dbo.TestTable (TestCol1); GO
'프로그래밍 > DBMS' 카테고리의 다른 글
MYSQL 그룹별 RANK함수 구현하기 (0) | 2021.03.16 |
---|---|
Mysql 칼렌더 덤프 데이터 만들기 (0) | 2021.02.17 |
MSSQL 모든 상위 부서 찾기 프로시저 (0) | 2018.05.07 |
mssql log 파일 축소 (0) | 2018.03.27 |
[MSSQL] Create Table (0) | 2017.10.31 |
[MSSQL] 컬럼 추가 템플릿, Add Column (0) | 2017.10.19 |
MSSQL 테이블 사용하는 프로시저 찾기 (0) | 2017.09.21 |
Oracle 연결시에 BadImageFormatException 32비트 문제 발생 시 (2) | 2016.11.22 |