Skip to content

Commit 395c6f2

Browse files
authored
Merge pull request #33730 from MicrosoftDocs/main
4/7/2025 AM Publish
2 parents 5bc6c3f + 2f66529 commit 395c6f2

18 files changed

+186
-117
lines changed

azure-sql/database/business-continuity-high-availability-disaster-recover-hadr-overview.md

Lines changed: 46 additions & 33 deletions
Large diffs are not rendered by default.

azure-sql/database/recovery-using-backups.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn about point-in-time restore, which enables you to roll back a
55
author: dnethi
66
ms.author: dinethi
77
ms.reviewer: wiassaf, mathoma, danil
8-
ms.date: 03/13/2025
8+
ms.date: 04/04/2025
99
ms.service: azure-sql-database
1010
ms.subservice: backup-restore
1111
ms.topic: how-to
@@ -77,6 +77,8 @@ For more information, see [Azure RBAC: Built-in roles](/azure/role-based-access-
7777

7878
You can recover by using the Azure portal, PowerShell, or the REST API. You can't use Transact-SQL.
7979

80+
Azure SQL Database backups are managed automatically. No one has direct access to the backups. The backups are deleted once the configured retention period expires. For more information, see [Automated backups in Azure SQL Database](automated-backups-overview.md) and [Long-term retention](long-term-retention-overview.md).
81+
8082
## Point-in-time restore
8183

8284
You can restore any database to an earlier point in time within its retention period. The restore request can specify any service tier or compute size for the restored database. When you're restoring a database into an elastic pool, ensure that you have sufficient resources in the pool to accommodate the database.

azure-sql/database/sql-database-paas-overview.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "Get an introduction to SQL Database: technical details and capabil
44
author: WilliamDAssafMSFT
55
ms.author: wiassaf
66
ms.reviewer: mathoma
7-
ms.date: 09/12/2024
7+
ms.date: 04/04/2025
88
ms.service: azure-sql-database
99
ms.subservice: service-overview
1010
ms.topic: overview
@@ -240,6 +240,10 @@ The [maintenance window feature](maintenance-window.md) allows you to configure
240240

241241
Patching is generally not noticeable if you [employ retry logic](develop-overview.md#resiliency) in your app. For more information, see [Planning for Azure maintenance events in Azure SQL Database](planned-maintenance.md).
242242

243+
### Can I access my backups?
244+
245+
Azure SQL Database backups are managed automatically. No one has direct access to the backups. The backups are deleted once the configured retention period expires. For more information, see [Automated backups in Azure SQL Database](automated-backups-overview.md) and [Long-term retention](long-term-retention-overview.md).
246+
243247
## Engage with the SQL Server engineering team
244248

245249
- [DBA Stack Exchange](https://dba.stackexchange.com/questions/tagged/sql-server): Ask database administration questions.

azure-sql/managed-instance/business-continuity-high-availability-disaster-recover-hadr-overview.md

Lines changed: 46 additions & 32 deletions
Large diffs are not rendered by default.

azure-sql/managed-instance/log-replay-service-migrate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ Consider the following limitations when migrating with LRS:
624624
- You must place backup files for different databases in separate folders on the Blob Storage account in a flat-file structure. Nesting folders inside database folders isn't supported.
625625
- If you're using autocomplete mode, the entire backup chain needs to be available in advance on the Blob Storage account. It isn't possible to add new backup files in autocomplete mode. Use continuous mode if you need to add new backup files while migration is in progress.
626626
- You must start LRS separately for each database that points to the full URI path that contains an individual database folder.
627-
- The backup URI path, container name, or folder names should not contain `backup` or `backups` as these are reserved keywords.
627+
- The backup URI path, container name, or folder names can't contain `backup` or `Backup` as these are reserved keywords.
628628
- When starting multiple Log Replay restores in parallel, targeting the same storage container, ensure that the same valid SAS token is provided for every restore operation.
629629
- LRS can support up to 100 simultaneous restore processes per single managed instance.
630630
- A single LRS job can run for a maximum of 30 days, after which it will be automatically canceled.

docs/includes/entra-id-tutorial.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
author: MikeRayMSFT
33
ms.author: mikeray
4-
ms.date: 04/11/2024
4+
ms.date: 04/04/2025
55
ms.service: sql
66
ms.topic: include
77
---
@@ -45,6 +45,18 @@ In this tutorial, you learn how to:
4545

4646
> [!WARNING]
4747
> Connections authenticated by Microsoft Entra ID are always encrypted. If SQL Server is using a self-signed certificate, you must add `trust server cert = true` in the connection string. SQL Server and Windows authenticated connections don't require encryption, but it is strongly recommended.
48+
>
49+
> SQL Server connects directly to Microsoft Entra ID for authentication. Either [explicit firewall URLs](../sql-server/azure-arc/prerequisites.md#network-requirements-for-enabling-entra-id-authentication) need to be opened for direct access, or use a proxy server. Microsoft Entra ID does not use the Arc Connected Machine Agent proxy for authentication. If the machine requires using a proxy server, Microsoft Entra ID requires that the machine-level WinHTTP proxy is set using the following commands (replace `<http://proxyserver:port>` with the appropriate value):
50+
>
51+
> ```console
52+
> netsh winhttp set proxy proxy-server="<http://proxyserver:port>"
53+
> ```
54+
>
55+
> Microsoft Entra ID authentication does not utililze the Arc agent proxy setting. The Arc Agent proxy can be set using the following commands (replace `<http://proxyserver:port>` with the appropriate value):
56+
>
57+
> ```console
58+
> azcmagent config set proxy.url "<http://proxyserver:port>"
59+
> ```
4860
4961
<a name='create-and-register-an-azure-ad-application'></a>
5062

docs/includes/winserver2012-md.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ ms.date: 01/29/2024
55
ms.service: sql
66
ms.topic: include
77
---
8-
Windows Server 2012 R2
8+
Windows Server 2012

docs/integration-services/ssis-quickstart-run-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Below is a basic example of how to execute an SSIS package in a package catalog
4848

4949
```powershell
5050
(Get-ChildItem SQLSERVER:\SSIS\localhost\Default\Catalogs\SSISDB\Folders\Project1Folder\Projects\'Integration Services Project1'\Packages\ |
51-
WHERE { $_.Name -eq 'Package.dtsx' }).Execute("false", $null)
51+
WHERE { $_.Name -eq 'Package.dtsx' }).Execute($false, $null)
5252
```
5353

5454
## PowerShell script
@@ -91,7 +91,7 @@ $package = $project.Packages[$PackageName]
9191
9292
Write-Host "Running " $PackageName "..."
9393
94-
$result = $package.Execute("false", $null)
94+
$result = $package.Execute($false, $null)
9595
9696
Write-Host "Done."
9797
```

docs/relational-databases/performance/query-store-hints-best-practices.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Query Store hints best practices"
33
description: "Best practices for the Query Store hints feature, which helps you to shape query plans without changing application code."
44
author: MikeRayMSFT
55
ms.author: mikeray
6-
ms.date: 03/26/2025
6+
ms.date: 04/04/2025
77
ms.service: sql
88
ms.subservice: performance
99
ms.topic: best-practice
@@ -95,8 +95,8 @@ For more information, see Query Store hint [examples](query-store-hints.md#examp
9595
The following considerations apply:
9696

9797
- When you specify this hint for a query, an attempt to execute the query fails with error 8778, severity 16, *Query execution has been aborted because the ABORT_QUERY_EXECUTION hint was specified.*
98-
- To unblock a query, you can clear the hint by passing the `query_id` value to the [sys.sp_query_store_clear_hints](../system-stored-procedures/sys-sp-query-store-clear-hints-transact-sql.md) stored procedure.
99-
- You can use the following example query to find all queries in Query Store that are blocked with system views, starting with the [sys.query_store_query_hints (Transact-SQL)](../system-catalog-views/sys-query-store-query-hints-transact-sql.md) system view:
98+
- To unblock a query, you can clear the hint by passing the `query_id` value to the `@query_id` parameter in the [sys.sp_query_store_clear_hints](../system-stored-procedures/sys-sp-query-store-clear-hints-transact-sql.md) stored procedure.
99+
- You can use system views to find queries in Query Store that are blocked, as in the following example query:
100100
```sql
101101
SELECT qsh.query_id,
102102
q.query_hash,

docs/relational-databases/security/authentication-access/azure-ad-authentication-sql-server-setup-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Tutorial on how to set up Microsoft Entra authentication for SQL Se
44
author: PratimDasgupta
55
ms.author: prdasgu
66
ms.reviewer: vanto, randolphwest
7-
ms.date: 01/29/2025
7+
ms.date: 04/04/2025
88
ms.service: sql
99
ms.subservice: security
1010
ms.topic: tutorial

0 commit comments

Comments
 (0)