Skip to content

Commit aa82bbe

Browse files
Merge pull request #27263 from WilliamDAssafMSFT/20230531-goedr-sqldb
20230531 add BACKUP_STORAGE_REDUNDANCY to syntax diagram
2 parents ddcc9c9 + 81aee7c commit aa82bbe

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/t-sql/statements/alter-database-transact-sql.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: ALTER DATABASE (Transact-SQL) syntax for SQL Server, Azure SQL Data
44
author: markingmyname
55
ms.author: maghan
66
ms.reviewer: wiassaf
7-
ms.date: 02/02/2023
7+
ms.date: 05/31/2023
88
ms.service: sql
99
ms.subservice: t-sql
1010
ms.topic: reference
@@ -353,6 +353,7 @@ ALTER DATABASE { database_name | CURRENT }
353353
<add-secondary-option> ::=
354354
{
355355
ALLOW_CONNECTIONS = { ALL | NO }
356+
| BACKUP_STORAGE_REDUNDANCY = { 'LOCAL' | 'ZONE' | 'GEO' }
356357
| SERVICE_OBJECTIVE =
357358
{ <service-objective>
358359
| { ELASTIC_POOL ( name = <elastic_pool_name>) }
@@ -433,7 +434,7 @@ ALTER DATABASE current
433434
434435
#### MODIFY (BACKUP_STORAGE_REDUNDANCY = ['LOCAL' \| 'ZONE' \| 'GEO'])
435436

436-
Changes the storage redundancy of point-in-time restore backups and long-term retention backups (if configured) of the database. The changes are applied to all the future backups taken. Existing backups continue to use the previous setting.
437+
Changes the storage redundancy of point-in-time restore backups and long-term retention backups (if configured) of the database. The changes are applied to all the future backups taken. Existing backups continue to use the previous setting.
437438

438439
> [!IMPORTANT]
439440
> BACKUP_STORAGE_REDUNDANCY option for Azure SQL Database is available in public preview in Brazil South and generally available in Southeast Asia Azure region only.

docs/t-sql/statements/create-database-transact-sql.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Create database syntax for SQL Server, Azure SQL Database, Azure Sy
44
author: markingmyname
55
ms.author: maghan
66
ms.reviewer: wiassaf
7-
ms.date: 05/23/2023
7+
ms.date: 05/31/2023
88
ms.service: sql
99
ms.subservice: t-sql
1010
ms.topic: reference
@@ -1008,6 +1008,7 @@ CREATE DATABASE database_name
10081008
| 'HS_MOPRMS_n'
10091009
| { ELASTIC_POOL(name = <elastic_pool_name>) } })
10101010
]
1011+
[ WITH BACKUP_STORAGE_REDUNDANCY = { 'LOCAL' | 'ZONE' | 'GEO' } ]
10111012
[;]
10121013
```
10131014

0 commit comments

Comments
 (0)