Rows in the table are stored in the order of the clustered index key.
테이블의 데이터는 클러스터형 인덱스의 순서대로 저장됩니다. Data in the table is stored in the order of the clustered index.
This includes the clustered index that contains the data rows of the table.
여기에는 테이블의 데이터 행이 있는 클러스터형 인덱스가 포함됩니다. This includes the clustered index that contains the data rows of the table.
For a clustered table,the row locator is the clustered index key.
클러스터형 테이블의 경우 행 로케이터는 클러스터형 인덱스 키입니다. For a clustered table,the row locator is the clustered index key.
The key values from the clustered index are used by all nonclustered indexes as lookup keys.
클러스터형 인덱스로 구한 키 값은 모든 비클러스터형 인덱스에 의해 조회 키로 사용됩니다. The key values from the clustered index are used by all nonclustered indexes as lookup keys.
The pages in the data chain and the rows in them are ordered on the value of the clustered index key.
데이터 체인의 페이지와 페이지 행은 클러스터형 인덱스 키의 값에 따라 정렬됩니다. The pages in the data chain and the rows in them are ordered on the value of the clustered index key.
The bottom, or leaf, level of the clustered index contains the actual data rows of the table.
클러스터형 인덱스의 최하위 수준인 리프 수준에는 테이블의 실제 데이터 행이 있습니다. The bottom, or leaf, level of the clustered index contains the actual data rows of the table.
The clustered index key is automatically included in all nonclustered indexes, including filtered indexes..
클러스터형 인덱스 키는 필터링된 인덱스를 비롯하여 모든 비클러스터형 인덱스에 자동으로 포함됩니다. The clustered index key is automatically included in all nonclustered indexes, including filtered indexes.
If a table already has a clustered index, drop the clustered index to return the table to a heap.
테이블에 이미 클러스터형 인덱스가 포함되어 있는 경우 클러스터형 인덱스를 삭제하여 테이블을 힙에 반환합니다. If a table already has a clustered index, drop the clustered index to return the table to a heap.
The clustered index will also have one LOB_DATA allocation unit per partition if it contains large object(LOB) columns.
또한 힙에는 LOB(Large Object) 열이 포함된 경우 파티션당 하나의 LOB_DATA 할당 단위가 있으며The heap will also have one LOB_DATA allocation unit per partition, if it contains large object (LOB) columns.
This can produce a covered query without specifying the clustered index columns in the definition of the nonclustered index..
이를 통해 비클러스터형 인덱스 정의에 클러스터형 인덱스 열을 지정하지 않고도 쿼리에 사용되는 열이 모두 포함될 수 있습니다. This can produce a covered query without specifying the clustered index columns in the definition of the nonclustered index.
The clustered index key of the table does not need to be a key or included column in the filtered index definition.
테이블의 클러스터형 인덱스 키가 필터링된 인덱스 정의의 포괄 열 또는 키여야 할 필요는 없습니다. The clustered index key of the table does not need to be a key or included column in the filtered index definition.
A clustered index sorts and stores the data columns of a table or view in order, based on the clustered index key.".
클러스터형Clustered 클러스터형 인덱스는 클러스터형 인덱스 키에 기반하여 테이블 또는 뷰의 데이터 행을 순서대로 정렬 및 저장합니다.A clustered index sorts and stores the data rows of the table or view in order based on the clustered index key.
After the row with the first value is found by using the clustered index, rows with subsequent indexed values are guaranteed to be physically adjacent.
클러스터형 인덱스를 사용하여 첫 번째 값을 가진 행을 찾으면 다음의 인덱싱된 값은 반드시 물리적으로 인접해 있습니다. After the row with the first value is found by using the clustered index, rows with subsequent indexed values are guaranteed to be physically adjacent.
For example, when you create a clustered index on a view,distribution statistics cannot be evaluated, because the clustered index does not yet exist.
예를 들어 뷰에서 클러스터형 인덱스를 만드는 경우 클러스터형 인덱스가 아직 생성되지 않았으므로 배포 통계를 계산할 수 없습니다. For example, when you create a clustered index on a view,distribution statistics cannot be evaluated, because the clustered index does not yet exist.
The clustered index is implemented as a B-tree index structure that supports fast retrieval of the rows, based on their clustered index key values.
클러스터형 인덱스는 클러스터형 인덱스 키 값에 기반하여 행의 빠른 검색을 지원하는 B-트리 인덱스 구조로 구현됩니다. The clustered index is implemented as a B-tree index structure that supports fast retrieval of the rows, based on their clustered index key values.
Rebuilds the table(if there is no clustered index) or rebuilds the clustered index to reclaim space used by the old column.
테이블을 다시 작성하거나(클러스터형 인덱스가 없는 경우) 클러스터형 인덱스를 다시 작성하여 이전 열에 사용된 공간을 회수합니다. Rebuilds the table (if there is no clustered index) or rebuilds the clustered index to reclaim space used by the old column.
Generally, nonclustered indexes should be designed to improve the performance of frequently used queries that are not covered by the clustered index.
일반적으로 클러스터형 인덱스를 적용할 수 없고 자주 사용되는 쿼리의 성능을 개선하도록 비클러스터형 인덱스를 디자인해야 합니다. Generally, nonclustered indexes should be designed to improve the performance of frequently used queries that are not covered by the clustered index.
If the clustered index is not created with the UNIQUE property, the Database Engine automatically adds a 4-byte uniqueifier column to the table.
클러스터형 인덱스가 UNIQUE 속성으로 생성되지 않는 경우 데이터베이스 엔진Database Engine은 4바이트 고유 식별자 열을 테이블에 자동으로 추가합니다. If the clustered index is not created with the UNIQUE property, the 데이터베이스 엔진Database Engine automatically adds a 4-byte uniqueifier column to the table.
If the table has nonclustered indexes, all the nonclustered indexes must all be recreated whenever the clustered index is changed.
테이블에 비클러스터형 인덱스가 포함되어 있는 경우 클러스터형 인덱스가 변경될 때마다 모든 비클러스터형 인덱스를 다시 만들어야 합니다. If the table has nonclustered indexes, all the nonclustered indexes must all be recreated whenever the clustered index is changed.
If the table has a clustered index, the column or columns defined in the clustered index are automatically appended to the end of each nonclustered index on the table.
테이블에 클러스터형 인덱스가 있으면 클러스터형 인덱스에 정의된 열이 자동으로 테이블의 각 비클러스터형 인덱스 끝에 추가됩니다. If the table has a clustered index, the column or columns defined in the clustered index are automatically appended to the end of each nonclustered index on the table.
If the table has a clustered index, orthe index is on an indexed view, the row locator is the clustered index key for the row.
테이블에 클러스터형 인덱스가 있거나 인덱스가 인덱싱된 뷰에 있는 경우 행 로케이터는 행에 대한 클러스터형 인덱스 키입니다. If the table has a clustered index, or the index is on an indexed view,the row locator is the clustered index key for the row.
Move a table from one filegroup to another by dropping the clustered index and specifying a new filegroup or partition scheme in the MOVE TO clause of the DROP INDEX statement or by using the CREATE INDEX statement with the DROP_EXISTING clause.
클러스터형 인덱스를 삭제한 후 새 파일 그룹이나 파티션 구성표를 DROP INDEX 문의 MOVE TO 절에 지정하거나 CREATE INDEX 문에 DROP_EXISTING 절을 사용하여 한 파일 그룹에서 다른 파일 그룹으로 테이블을 이동합니다. Move a table from one filegroup to another by dropping the clustered index and specifying a new filegroup or partition scheme in the MOVE TO clause of the DROP INDEX statement or by using the CREATE INDEX statement with the DROP_EXISTING clause.
If using a uniqueidentifier as PRIMARY KEY,the recommendation is to create it as a nonclustered index, and use another column such as an IDENTITY to create the clustered index.
기본 키로 uniqueidentifier를 사용할 경우 비클러스터형 인덱스를 만들고 IDENTITY 같은 다른 열을 사용하여 클러스터형 인덱스를 만드는 것이 좋습니다. If using a uniqueidentifier as PRIMARY KEY, the recommendation is to create it as a nonclustered index,and use another column such as an IDENTITY to create the clustered index.
When migrating a disk-based table to memory-optimized, the size of the memory-optimized table will roughly correspond to the size of the clustered index or heap of the original disk-based table.
디스크 기반 테이블을 메모리 액세스에 최적화되도록 마이그레이션하는 경우 메모리 액세스에 최적화된 테이블의 크기는 대략 원래 디스크 기반 테이블의 힙 또는 클러스터형 인덱스 크기에 해당합니다. When migrating a disk-based table to memory-optimized, the size of the memory-optimized table will roughly correspond to the size of the clustered index or heap of the original disk-based table.
If the argumentportion of this scan contains an item that is present in an ORDER BY clause, then the query engine must return the rows in the order which the clustered index has stored it.
Argument 열에 ORDERED 절이 있으면 쿼리 프로세서는 클러스터형 인덱스가 정렬한 순서대로 행을 반환합니다. If the Argument column contains the ORDERED clause,the query processor has determined that the rows must be returned in the order in which the clustered index has sorted them.
This is especially the case when the index is not aligned with its base table or is not aligned with its clustered index, if the table already has a clustered index applied to it.
이러한 제한 사항은 이미 테이블에 정렬된 클러스터형 인덱스가 있고 인덱스가 기본 테이블 또는 클러스터형 인덱스에 맞게 정렬되지 않은 경우에 크게 영향을 줍니다. This is especially the case when the index is not aligned with its base table or is not aligned with its clustered index, if the table already has a clustered index applied to it.
A nonclustered columnstore index enables real-timeoperational analytics in which the OLTP workload uses the underlying clustered index, while analytics run concurrently on the columnstore index..
비클러스터형 columnstore 인덱스는 columnstore 인덱스에서 분석이 동시에 실행되는 동안 OLTP 워크로드에서 기본 클러스터형 인덱스를 사용하는 실시간 운영 분석을 지원합니다.A nonclustered columnstore index enables real-time operational analytics in which the OLTP workload uses the underlying clusteredindex, while analytics run concurrently on the columnstore index..
Estimating the Size of a Clustered Index.
클러스터형 인덱스의 크기 예측Estimate the Size of a Clustered Index.
The table can only have one clustered index.
테이블에 클러스터형된 인덱스가 하나만 있을 수 있습니다.A table can have only one clustered index.
Estimating the Size of a Clustered Index.
비클러스터형 인덱스의 크기 예측Estimate the Size of a Nonclustered Index.
English
عربى
Български
বাংলা
Český
Dansk
Deutsch
Ελληνικά
Español
Suomi
Français
עִברִית
हिंदी
Hrvatski
Magyar
Bahasa indonesia
Italiano
日本語
Қазақ
മലയാളം
मराठी
Bahasa malay
Nederlands
Norsk
Polski
Português
Română
Русский
Slovenský
Slovenski
Српски
Svenska
தமிழ்
తెలుగు
ไทย
Tagalog
Turkce
Українська
اردو
Tiếng việt
中文