diff --git a/docs/cloud/features/08_backups/backups-to-own-cloud/backup_restore_using_commands.md b/docs/cloud/features/08_backups/backups-to-own-cloud/backup_restore_using_commands.md index b97817354c7..b4ce91724e2 100644 --- a/docs/cloud/features/08_backups/backups-to-own-cloud/backup_restore_using_commands.md +++ b/docs/cloud/features/08_backups/backups-to-own-cloud/backup_restore_using_commands.md @@ -56,9 +56,9 @@ See the [backup command summary](/operations/backup#command-summary) for full ba ```sql BACKUP DATABASE test_backups TO S3( -'https://testchbackups.s3.amazonaws.com/', -'', -'' + 'https://testchbackups.s3.amazonaws.com/', + '', + '' ) ``` @@ -74,9 +74,9 @@ For example, if you are taking daily backups, you will need to use a new uuid ea ```sql RESTORE DATABASE test_backups FROM S3( -'https://testchbackups.s3.amazonaws.com/', -'', -'' + 'https://testchbackups.s3.amazonaws.com/', + '', + '' ) ``` @@ -89,9 +89,9 @@ FROM S3( ```sql BACKUP DATABASE test_backups TO S3( -'https://storage.googleapis.com//', -'', -'' + 'https://storage.googleapis.com//', + '', + '' ) ``` @@ -107,9 +107,9 @@ For example, if you are taking daily backups, you will need to use a new uuid ea ```sql RESTORE DATABASE test_backups FROM S3( -'https://storage.googleapis.com//', -'', -'' + 'https://storage.googleapis.com//', + '', + '' ) ``` @@ -122,10 +122,9 @@ FROM S3( ```sql BACKUP DATABASE test_backups TO AzureBlobStorage( -'', -'', -'/<>' -); + '', + '', + '/<>' ) ``` @@ -140,9 +139,9 @@ For example, if you are taking daily backups, you will need to use a new uuid ea ```sql RESTORE DATABASE test_backups FROM AzureBlobStorage( -'', -'', -'/' + '', + '', + '/' ) ```