Skip to content

Commit 241083e

Browse files
authored
Merge pull request #8943 from asavioli/patch-4
Update columnstore-indexes-design-guidance.md
2 parents 83faa8f + eb8e7a1 commit 241083e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ 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.
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).
61+
6162
* The table data is not permanent. Consider using a heap or temporary table when you need to store and delete the data quickly.
6263
* The table has less than one million rows per partition.
6364
* 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)