@@ -56,9 +56,9 @@ See the [backup command summary](/operations/backup#command-summary) for full ba
5656``` sql
5757BACKUP DATABASE test_backups
5858TO S3(
59- ' https://testchbackups.s3.amazonaws.com/<uuid>' ,
60- ' <key id>' ,
61- ' <key secret>'
59+ ' https://testchbackups.s3.amazonaws.com/<uuid>' ,
60+ ' <key id>' ,
61+ ' <key secret>'
6262)
6363```
6464
@@ -74,9 +74,9 @@ For example, if you are taking daily backups, you will need to use a new uuid ea
7474``` sql
7575RESTORE DATABASE test_backups
7676FROM S3(
77- ' https://testchbackups.s3.amazonaws.com/<uuid>' ,
78- ' <key id>' ,
79- ' <key secret>'
77+ ' https://testchbackups.s3.amazonaws.com/<uuid>' ,
78+ ' <key id>' ,
79+ ' <key secret>'
8080)
8181```
8282 </TabItem >
@@ -89,9 +89,9 @@ FROM S3(
8989``` sql
9090BACKUP DATABASE test_backups
9191TO S3(
92- ' https://storage.googleapis.com/<bucket>/<uuid>' ,
93- ' <hmac-key>' ,
94- ' <hmac-secret>'
92+ ' https://storage.googleapis.com/<bucket>/<uuid>' ,
93+ ' <hmac-key>' ,
94+ ' <hmac-secret>'
9595)
9696```
9797
@@ -107,9 +107,9 @@ For example, if you are taking daily backups, you will need to use a new uuid ea
107107``` sql
108108RESTORE DATABASE test_backups
109109FROM S3(
110- ' https://storage.googleapis.com/<bucket>/<uuid>' ,
111- ' <hmac-key>' ,
112- ' <hmac-secret>'
110+ ' https://storage.googleapis.com/<bucket>/<uuid>' ,
111+ ' <hmac-key>' ,
112+ ' <hmac-secret>'
113113)
114114```
115115 </TabItem >
@@ -122,10 +122,9 @@ FROM S3(
122122``` sql
123123BACKUP DATABASE test_backups
124124TO AzureBlobStorage(
125- ' <AzureBlobStorage endpoint connection string>' ,
126- ' <container>' ,
127- ' <blob>/<>'
128- );
125+ ' <AzureBlobStorage endpoint connection string>' ,
126+ ' <container>' ,
127+ ' <blob>/<>'
129128)
130129```
131130
@@ -140,9 +139,9 @@ For example, if you are taking daily backups, you will need to use a new uuid ea
140139``` sql
141140RESTORE DATABASE test_backups
142141FROM AzureBlobStorage(
143- ' <AzureBlobStorage endpoint connection string>' ,
144- ' <container>' ,
145- ' <blob>/<uuid>'
142+ ' <AzureBlobStorage endpoint connection string>' ,
143+ ' <container>' ,
144+ ' <blob>/<uuid>'
146145)
147146```
148147 </TabItem >
0 commit comments