Skip to content

Commit 786adc1

Browse files
authored
Merge pull request #7687 from Nepomuceno/patch-5
Correcting mysql command
2 parents 3dbd92d + 72c4bb6 commit 786adc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/mysql/howto-restore-server-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ You make the choice between configuring your server for either locally redundant
6363
6464
While creating a server via the `az mysql server create` command, the `--geo-redundant-backup` parameter decides your Backup Redundancy Option. If `Enabled`, geo redundant backups are taken. Or if `Disabled` locally redundant backups are taken.
6565

66-
The backup retention period is set by the parameter `--backup-retention-days`.
66+
The backup retention period is set by the parameter `--backup-retention`.
6767

6868
For more information about setting these values during create, see the [Azure Database for MySQL server CLI Quickstart](quickstart-create-mysql-server-database-using-azure-cli.md).
6969

7070
The backup retention period of a server can be changed as follows:
7171

7272
```azurecli-interactive
73-
az mysql server update --name mydemoserver --resource-group myresourcegroup --backup-retention-days 10
73+
az mysql server update --name mydemoserver --resource-group myresourcegroup --backup-retention 10
7474
```
7575

7676
The preceding example changes the backup retention period of mydemoserver to 10 days.

0 commit comments

Comments
 (0)