Skip to content

Commit 13a0cfd

Browse files
authored
Update docs/relational-databases/indexes/columnstore-indexes-design-guidance.md
1 parent e0e155f commit 13a0cfd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/relational-databases/indexes/columnstore-indexes-design-guidance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Consider using a clustered columnstore index when:
5757

5858
Don't use a clustered columnstore index when:
5959

60-
* The table requires varchar(max), nvarchar(max), or varbinary(max) data types. Or, design the columnstore index so that it doesn't include these columns (Only for SQL 2016 or older).
60+
* The table requires **varchar(max)**, **nvarchar(max)**, or **varbinary(max)** data types. Or, design the columnstore index so that it doesn't include these columns (**Applies to:** [!INCLUDE [sssql16-md](../../includes/sssql16-md.md)] and previous versions).
6161
* The table data is not permanent. Consider using a heap or temporary table when you need to store and delete the data quickly.
6262
* The table has less than one million rows per partition.
6363
* More than 10% of the operations on the table are updates and deletes. Large numbers of updates and deletes cause fragmentation. The fragmentation affects compression rates and query performance until you run an operation called reorganize that forces all data into the columnstore and removes fragmentation. For more information, see [Minimizing index fragmentation in columnstore index](/archive/blogs/sqlserverstorageengine/columnstore-index-defragmentation-using-reorganize-command).

0 commit comments

Comments
 (0)