You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ , [ @retry_count = ] # of retries if there are errors ]
55
+
[ , [ @retry_count = ] # of retries if there are errors ]
59
56
```
60
57
61
58
## Arguments
@@ -114,16 +111,12 @@ GRANT EXECUTE ANY EXTERNAL ENDPOINT TO [<PRINCIPAL>];
114
111
115
112
### Enable in SQL Server 2025 and Azure SQL Managed Instance
116
113
117
-
> [!NOTE]
118
-
> The `sp_invoke_external_rest_endpoint` stored procedure is in preview for [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
119
-
120
114
The `sp_invoke_external_rest_endpoint` stored procedure is available in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)] and Azure SQL Managed Instance with the **SQL Server 2025** or **Always-up-to-date**[update policy](/azure/azure-sql/managed-instance/update-policy) and is disabled by default.
121
115
122
116
To enable the `sp_invoke_external_rest_endpoint` stored procedure in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)] and Azure SQL Managed Instance, run the following T-SQL code:
@@ -360,7 +353,7 @@ Both system-assigned and user-assigned managed identities are supported:
360
353
361
354
#### Managed Identity and SQL Server 2025
362
355
363
-
To use [Managed Identity](/entra/identity/managed-identities-azure-resources/overview) for authentication on SQL Server 2025, you must enable the option by using `sp_configure` with a user that is [granted the ALTER SETTINGS server-level permission](../../relational-databases/system-stored-procedures/sp-configure-transact-sql.md#permissions).
356
+
To use [Managed Identity](/entra/identity/managed-identities-azure-resources/overview) for authentication on [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)], you must enable the option by using `sp_configure` with a user that is [granted the ALTER SETTINGS server-level permission](sp-configure-transact-sql.md#permissions).
364
357
365
358
```sql
366
359
EXECUTE sp_configure 'allow server scoped db credentials', 1;
@@ -456,8 +449,8 @@ If setting the *@retry_count* parameter, the request will be retried when the fo
456
449
457
450
| HTTP Status Code | Error | Description |
458
451
|-------------|------------|-------------|
459
-
| 408 | Request Timeout | The client didn't produce a request within the server’s time limit or the server timed out waiting. |
460
-
| 429 | Too Many Requests | The client is being rate-limited. Retry time based on the “Retry-After” header value if provided. |
452
+
| 408 | Request Timeout | The client didn't produce a request within the server's time limit or the server timed out waiting. |
453
+
| 429 | Too Many Requests | The client is being rate-limited. Retry time based on the "Retry-After" header value if provided. |
461
454
| 500 | Internal Server Error | Generic server error. |
462
455
| 502 | Bad Gateway | The server received an invalid response from a backend. |
463
456
| 503 | Service Unavailable | Indicates a temporary overload or downtime. |
0 commit comments