Skip to content

Commit a525e41

Browse files
Learn Build Service GitHub AppLearn Build Service GitHub App
authored andcommitted
Merging changes synced from https://github.com/MicrosoftDocs/sql-docs-pr (branch live)
2 parents 1371254 + 1bb2918 commit a525e41

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

azure-sql/database/monitoring-metrics-alerts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ Here's the logic used for calculating Availability for every one-minute interval
8383
- If all connections fail due to user errors, availability is 100%.
8484
- If there are no connection attempts, availability is 100%.
8585
- If all connections fail due to system errors, availability is 0%.
86-
- Currently, availability metric data is not yet supported for the serverless compute tier and will be displayed as 100%.
8786

8887
Availability metric is therefore a composite metric derived from following existing metrics:
8988

@@ -102,7 +101,8 @@ User errors include all connections that fail due to user configuration, workloa
102101

103102
- Examples of errors caused by user workload:
104103
- [Connection failure due to resource governance](troubleshoot-common-errors-issues.md?view=azuresql-db&preserve-view=true#resource-governance-errors)
105-
104+
- Connection attempts to a serverless database that is in a paused state
105+
106106
- Examples of errors caused by user management:
107107
- Scaling up or down the database or elastic pool
108108
- Geo replication planned or forced failover

docs/t-sql/statements/create-columnstore-index-transact-sql.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: CREATE COLUMNSTORE INDEX converts a rowstore table to a clustered c
44
author: markingmyname
55
ms.author: maghan
66
ms.reviewer: randolphwest
7-
ms.date: 03/04/2025
7+
ms.date: 04/11/2025
88
ms.service: sql
99
ms.subservice: t-sql
1010
ms.topic: reference
@@ -157,6 +157,13 @@ For more detail on feature availability, see [What's new in columnstore indexes]
157157

158158
Create a clustered columnstore index in which all of the data is compressed and stored by column. The index includes all of the columns in the table, and stores the entire table. If the existing table is a heap or clustered index, then it is converted to a clustered columnstore index. If the table is already stored as a clustered columnstore index, then the existing index is dropped and rebuilt.
159159

160+
> [!IMPORTANT]
161+
> In SQL database in Fabric, a clustered columnstore index must be created within the same batch or transaction as the table it belongs to. Adding a clustered columnstore index to a table after it has already been created can result in the following error:
162+
>
163+
> ```output
164+
> Msg 35354, Level 16, State 1, Line 63, The statement failed because a clustered columnstore index cannot be created on a table enabled for Change Feed. Consider disabling Change Feed and then creating the clustered columnstore index.
165+
> ```
166+
160167
#### *index_name*
161168
162169
Specifies the name for the new index.

0 commit comments

Comments
 (0)