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: azure-sql/virtual-machines/windows/backup-restore-to-url-using-managed-identities.md
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,26 @@ Msg 3013, Level 16, State 1, Line 31
103
103
RESTORE DATABASE is terminating abnormally.
104
104
```
105
105
106
+
### Network or Firewall Issues
107
+
108
+
If valid network access to the Azure Blob storage and Windows Firewall permissions on the host to allow the outbound connection, and valid storage account service endpoints aren't configured, the **BACKUP** operation fails with an error message indicating that access is denied.
109
+
110
+
```sql
111
+
Msg 3201, Level 16, State 1, Line 31
112
+
Cannot open backup device 'https://<storage-account-name>.blob.core.windows.net/<container-name>/AdventureWorks.bak'. Operating system error 5(Access is denied.).
113
+
Msg 3013, Level 16, State 1, Line 31
114
+
BACKUP DATABASE is terminating abnormally.
115
+
```
116
+
117
+
If valid network access to the Azure Blob storage and Windows Firewall permissions on the host to allow the outbound connection and valid storage account service endpoints aren't configured, the **RESTORE** operation fails with an error message indicating that access is denied.
118
+
119
+
```sql
120
+
Msg 3201, Level 16, State 1, Line 31
121
+
Cannot open backup device 'https://<storage-account-name>.blob.core.windows.net/<container-name>/AdventureWorks.bak'. Operating system error 5(Access is denied.).
122
+
Msg 3013, Level 16, State 1, Line 31
123
+
RESTORE DATABASE is terminating abnormally.
124
+
```
125
+
106
126
### Duplicate database name
107
127
108
128
When the original database with the same name exists in the storage, the backup of a new database to the same storage path will fail with the following error:
0 commit comments