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
Copy file name to clipboardExpand all lines: articles/backup/backup-azure-sql-database.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Back up SQL Server databases to Azure
3
3
description: This article explains how to back up SQL Server to Azure. The article also explains SQL Server recovery.
4
4
ms.topic: conceptual
5
-
ms.date: 09/06/2023
5
+
ms.date: 09/21/2023
6
6
author: AbhishekMallick-MS
7
7
ms.author: v-abhmallick
8
8
---
@@ -158,7 +158,7 @@ To configure simultaneous backups, follow these steps:
158
158
159
159
- Under `EnableLocalDiskBackupForBackupTypes`, list the backup types that you want to store locally.
160
160
161
-
For example, if you want to store the *Full* and *Log* backups, mention `[“Full”, “Log”]`. To store only the log backups, mention `[“Log”]`.
161
+
For example, if you want to store the *Full* and *Log* backups, mention `["Full", "Log"]`. To store only the log backups, mention `["Log"]`.
162
162
163
163
- Under `LocalDiskBackupFolderPath`, mention the *path to the local folder*. Ensure that you use the *double forward slash* while mentioning the path in the JSON file.
164
164
@@ -168,8 +168,8 @@ To configure simultaneous backups, follow these steps:
168
168
169
169
```JSON
170
170
{
171
-
"EnableLocalDiskBackupForBackupTypes": [“Log”],
172
-
"LocalDiskBackupFolderPath": “E:\\LocalBackup”,
171
+
"EnableLocalDiskBackupForBackupTypes": ["Log"],
172
+
"LocalDiskBackupFolderPath": "E:\\LocalBackup",
173
173
}
174
174
175
175
```
@@ -196,15 +196,15 @@ To configure simultaneous backups, follow these steps:
196
196
197
197
```azurepowershell
198
198
$cred = Get-Credential
199
-
New-SmbGlobalMapping -RemotePath <FileSharePath> -Credential $cred -LocalPath <LocalDrive>: -FullAccess @(“<Comma Separated list of accounts>”) -Persistent $true
199
+
New-SmbGlobalMapping -RemotePath <FileSharePath> -Credential $cred -LocalPath <LocalDrive>: -FullAccess @("<Comma Separated list of accounts>") -Persistent $true
0 commit comments