Skip to content

Commit 09e43fe

Browse files
authored
Merge pull request #9084 from MicrosoftDocs/main
Auto push to live 2025-06-09 10:01:57
2 parents 40248c1 + 50ef0ff commit 09e43fe

File tree

3 files changed

+52
-10
lines changed

3 files changed

+52
-10
lines changed

support/entra/entra-id/toc.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -291,18 +291,20 @@
291291
href: mfa/cannot-verify-account-reset-pwd.md
292292
- name: Microsoft Graph Users, Groups, and Entra APIs
293293
items:
294-
- name: Handling errors in Graph API requests with Invoke-RestMethod
295-
href: app-integration/graph-api-error-handling-invoke-restmethod.md
296-
- name: Troubleshoot Authorization RequestDenied error
297-
href: app-integration/troubleshoot-authorization-requestdenied-graph-api.md
298294
- name: 403 error when adding a user to a group
299295
href: users-groups-entra-apis/authorization-requestdenied-403-error-add-user-group.md
300296
- name: 404 error when managing objects
301297
href: app-integration/404-not-found-error-manage-objects-microsoft-graph.md
302-
- name: Use managed identities to call Graph APIs in VB.Net and C#
303-
href: users-groups-entra-apis/call-graph-api-using-managed-dentities.md
298+
- name: Change enumeration is not supported for requested tenant
299+
href: users-groups-entra-apis/delta-query-not-supported-for-aad-b2c-tenant.md
300+
- name: Handling errors in Graph API requests with Invoke-RestMethod
301+
href: app-integration/graph-api-error-handling-invoke-restmethod.md
302+
- name: Troubleshoot Authorization RequestDenied error
303+
href: app-integration/troubleshoot-authorization-requestdenied-graph-api.md
304304
- name: The memberOf API returns null values for properties
305305
href: users-groups-entra-apis/memberof-api-returns-null-properties.md
306+
- name: Use managed identities to call Graph APIs in VB.Net and C#
307+
href: users-groups-entra-apis/call-graph-api-using-managed-dentities.md
306308
- name: Getting access denied errors (Authorization)
307309
items:
308310
- name: Add an owner to an application
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: Change Enumeration Is Not Supported for Requested Tenant
3+
description: Describes an issue in which you receive the Request_UnsupportedQuery error code when you run a Microsoft Graph delta query.
4+
ms.date: 06/09/2025
5+
ms.service: entra-id
6+
ms.custom: sap:Problem with querying or provisioning resources
7+
ms.reviewer: bachoang, v-weizhu
8+
---
9+
# Error "Change enumeration is not supported for requested tenant" when running a Microsoft Graph delta query
10+
11+
This article provides a solution to an error that occurs when you run a Microsoft Graph delta query.
12+
13+
## Symptoms
14+
15+
When executing a [Microsoft Graph delta query](/graph/delta-query-overview), such as `GET https://graph.microsoft.com/beta/users/delta`, you might receive the following error response:
16+
17+
```output
18+
'error': {
19+
'code': 'Request_UnsupportedQuery',
20+
'message': 'Change enumeration is not supported for requested tenant.',
21+
'innerError': {
22+
'request-id': '<request-id>',
23+
'date': '2020-05-22T13:17:45'
24+
}
25+
}
26+
```
27+
28+
## Cause
29+
30+
This issue occurs when your tenant is an [Azure Active Directory (AD) B2C](/azure/active-directory-b2c/overview) tenant. Currently, differential or delta queries aren't supported in Azure AD B2C tenants.
31+
32+
## Solution
33+
34+
Run a delta query in a regular Microsoft Entra tenant.
35+
36+
[!INCLUDE [Azure Help Support](../../../includes/azure-help-support.md)]

support/sql/database-engine/performance/troubleshoot-high-cpu-usage-issues.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Troubleshoot high-CPU-usage issues in SQL Server
33
description: This article provides a procedure to help you fix high-CPU-usage issues on a server that is running SQL Server.
4-
ms.date: 01/10/2025
4+
ms.date: 06/09/2025
55
ms.custom: sap:SQL resource usage and configuration (CPU, Memory, Storage)
66
ms.topic: troubleshooting
77
ms.reviewer: jopilov, v-jayaramanp, v-sidong
@@ -59,7 +59,7 @@ Use one of the following tools to check whether the SQL Server process is actual
5959

6060
## Step 2: Identify queries contributing to CPU usage
6161

62-
If the `Sqlservr.exe` process is causing high CPU usage, by far, the most common reason is SQL Server queries that perform table or index scans, followed by sort, hash operations and loops (nested loop operator or WHILE (T-SQL)). To get an idea of how much CPU the queries are currently using, out of overall CPU capacity, run the following statement:
62+
If the `Sqlservr.exe` process is causing high CPU usage, by far, the most common reason is SQL Server queries that perform table or index scans, followed by sort and hash operations and loops (nested loop operator or WHILE (T-SQL)). To get an idea of how much CPU the queries are currently using, out of overall CPU capacity, run the following statement:
6363

6464
```sql
6565
DECLARE @init_sum_cpu_time int,
@@ -203,11 +203,15 @@ If your SQL Server instance experiences a high CPU scenario caused by spinlock c
203203
> [!NOTE]
204204
> High CPU usage may result from spinlock contention on many other spinlock types. For more information on spinlocks, see [Diagnose and resolve spinlock contention on SQL Server](/sql/relational-databases/diagnose-resolve-spinlock-contention).
205205
206-
## Step 9: Configure your virtual machine
206+
## Step 9: Check your power plan settings at the OS level
207+
208+
SQL Server workloads may experience reduced performance and cause high CPU on the system when Windows is configured with the default **Balanced** power plan. The **Balanced** power plan setting might lower the CPU clock speed to conserve energy. For example, a processor rated at 3.00 GHz may throttle down to 1.2 GHz. As a result, workloads that typically consume around 30% CPU may reach 100% utilization due to the reduced clock speed. To maintain consistent and optimal performance for compute-intensive SQL Server workloads, we recommend that you configure the system to use the **High Performance** power plan. This setting ensures the CPU operates at its full rated speed, helping to avoid performance bottlenecks. For more information, see [Slow performance on Windows Server when using the Balanced power plan](/troubleshoot/windows-server/performance/slow-performance-when-using-power-plan).
209+
210+
## Step 10: Configure your virtual machine
207211

208212
If you're using a virtual machine, ensure that you aren't overprovisioning CPUs and that they're configured correctly. For more information, see [Troubleshooting ESX/ESXi virtual machine performance issues (2001003)](https://kb.vmware.com/s/article/2001003#CPU%20constraints).
209213

210-
## Step 10: Scale up system to use more CPUs
214+
## Step 11: Scale up system to use more CPUs
211215

212216
If individual query instances are using little CPU capacity, but the overall workload of all queries together causes high CPU consumption, consider scaling up your computer by adding more CPUs. Use the following query to find the number of queries that have exceeded a certain threshold of average and maximum CPU consumption per execution and have run many times on the system (make sure that you modify the values of the two variables to match your environment):
213217

0 commit comments

Comments
 (0)