Skip to content

Commit d3d8334

Browse files
Merge pull request #35925 from MicrosoftDocs/main
Auto Publish – main to live - 2025-11-24 23:30 UTC
2 parents bae476c + 8bb7ca7 commit d3d8334

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

azure-sql/database/auditing-microsoft-support-operations.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ description: How to use Auditing to audit Microsoft support operations.
55
author: sravanisaluru
66
ms.author: srsaluru
77
ms.reviewer: mathoma, vanto
8-
ms.date: 09/18/2025
8+
ms.date: 11/24/2025
99
ms.service: azure-sql-database
1010
ms.subservice: security
11-
ms.topic: conceptual
11+
ms.topic: concept-article
1212
---
1313
# Auditing Microsoft support operations
1414

@@ -37,6 +37,14 @@ AzureDiagnostics
3737

3838
You have the option of choosing a different storage destination for this auditing log, or use the same auditing configuration for your server.
3939

40+
> [!NOTE]
41+
> DevOps audit logs stored in Azure Storage may contain sensitive operational details. If a malicious actor within your environment accesses these logs, they could gain insights into system operations, which may lead to unauthorized access or data breaches.
42+
>
43+
> **Customer responsibility -** Secure these logs by:
44+
> - Restricting access to authorized personnel only
45+
> - Applying strong Azure role-based access control (RBAC) and network controls
46+
> - Monitoring and auditing storage access regularly
47+
4048
## Related content
4149

4250
- [Auditing for Azure SQL Database and Azure Synapse Analytics](auditing-overview.md)

azure-sql/managed-instance/service-tiers-next-gen-general-purpose-use.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to use the Next-gen General Purpose service tier in Azure
44
author: urosmil
55
ms.author: urmilano
66
ms.reviewer: wiassaf, mathoma
7-
ms.date: 11/18/2025
7+
ms.date: 11/21/2025
88
ms.service: azure-sql-managed-instance
99
ms.subservice: service-overview
1010
ms.topic: how-to
@@ -33,9 +33,6 @@ To upgrade an existing instance to the Next-gen General Purpose service tier in
3333
1. After *Next-gen General Purpose* is enabled, you can use the sliders to modify the IOPS and memory for the instance. Review the *Cost per IOPS* and *Cost per GB* in the **Estimated costs per month** box.
3434
1. Select **Apply** to save your changes.
3535

36-
> [!NOTE]
37-
> For instances inside of a failover group, changing the service tier to or from the Next-gen General Purpose tier isn't supported. You must first delete the failover group before modifying either replica, and then re-create the failover group after the change takes effect.
38-
3936
## New instances
4037

4138
You can use the Next-gen General Purpose tier upgrade for new instances when you deploy them in the Azure portal. To do so, follow these steps:

docs/relational-databases/system-catalog-views/sys-indexes-transact-sql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "sys.indexes (Transact-SQL)"
33
description: "The sys.indexes catalog view contains a row per index or heap of a tabular object, such as a table, view, or table-valued function."
44
author: rwestMSFT
55
ms.author: randolphwest
6-
ms.date: 08/21/2025
6+
ms.date: 11/24/2025
77
ms.service: sql
88
ms.subservice: system-objects
99
ms.topic: "reference"
@@ -35,11 +35,11 @@ Contains a row per index or heap of a tabular object, such as a table, view, or
3535
| `type_desc` | **nvarchar(60)** | Description of index type:<br /><br />- HEAP<br />- CLUSTERED<br />- NONCLUSTERED<br />- XML<br />- SPATIAL<br />- CLUSTERED COLUMNSTORE <sup>2</sup><br />- NONCLUSTERED COLUMNSTORE <sup>1</sup><br />- NONCLUSTERED HASH <sup>2, 8</sup><br />- JSON <sup>5</sup> |
3636
| `is_unique` | **bit** | 1 = Index is unique.<br />0 = Index isn't unique.<br /><br />Always 0 for clustered columnstore indexes. |
3737
| `data_space_id` | **int** | ID of the data space for this index. Data space is either a filegroup or partition scheme.<br /><br />0 = object_id is a table-valued function or in-memory index. |
38-
| `ignore_dup_key` | **bit** | 1 = IGNORE_DUP_KEY is OFF.<br />0 = IGNORE_DUP_KEY is OFF. |
38+
| `ignore_dup_key` | **bit** | 1 = IGNORE_DUP_KEY is ON.<br />0 = IGNORE_DUP_KEY is OFF. |
3939
| `is_primary_key` | **bit** | 1 = Index is part of a PRIMARY KEY constraint.<br /><br />Always 0 for clustered columnstore indexes. |
4040
| `is_unique_constraint` | **bit** | 1 = Index is part of a UNIQUE constraint.<br /><br />Always 0 for clustered columnstore indexes. |
4141
| `fill_factor` | **tinyint** | > 0 = FILLFACTOR percentage used when the index was created or rebuilt.<br />0 = Default value<br /><br />Always 0 for clustered columnstore indexes. |
42-
| `is_padded` | **bit** | 1 = PADINDEX is OFF.<br />0 = PADINDEX is OFF.<br /><br />Always 0 for clustered columnstore indexes. |
42+
| `is_padded` | **bit** | 1 = PADINDEX is ON.<br />0 = PADINDEX is OFF.<br /><br />Always 0 for clustered columnstore indexes. |
4343
| `is_disabled` | **bit** | 1 = Index is disabled.<br />0 = Index isn't disabled. |
4444
| `is_hypothetical` | **bit** | 1 = Index is hypothetical and can't be used directly as a data access path. Hypothetical indexes hold column-level statistics.<br /><br />0 = Index isn't hypothetical. |
4545
| `allow_row_locks` | **bit** | 1 = Index allows row locks.<br />0 = Index doesn't allow row locks.<br /><br />Always 0 for clustered columnstore indexes. |

0 commit comments

Comments
 (0)