Format SQL Backup to URL with credential breaks code
Formatting a SQL batch which contains
BACKUP DATABASE Databasename
TO URL = N'URL'
WITH CREDENTIAL = N'Credential'
leads to
BACKUP DATABASE Databasename
TO URL = N'URL'
WITH AS CREDENTIAL = N'Credential'
the AS between with and credential is wrong.
Please fix :-)
3
votes
Andreas
shared this idea
-
Chris Williamson commented
Adding URL should be a very simple addition.
In addition, using multiple DISK options (and therefore multiple URL options), each option should be carried to the next line. Using URL with Azure Storage Blobs Block sizes require us to use up to 8 URL's, which get translated to 1 line (we Find/Replace URL = to DISK =, format, then Find/Replace back).