Skip to content

Commit d65336f

Browse files
committed
remove tooling mariadb
1 parent 64993f4 commit d65336f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/mariadb/howto-migrate-dump-restore.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mariadb
77
ms.topic: conceptual
8-
ms.date: 12/02/2019
8+
ms.date: 2/27/2020
99
---
1010

1111
# Migrate your MariaDB database to Azure Database for MariaDB using dump and restore
@@ -17,10 +17,10 @@ This article explains two common ways to back up and restore databases in your A
1717
To step through this how-to guide, you need to have:
1818
- [Create Azure Database for MariaDB server - Azure portal](quickstart-create-mariadb-server-database-using-azure-portal.md)
1919
- [mysqldump](https://mariadb.com/kb/en/library/mysqldump/) command-line utility installed on a machine.
20-
- MySQL Workbench [MySQL Workbench Download](https://dev.mysql.com/downloads/workbench/), Toad, Navicat, or other third-party MySQL tool to do dump and restore commands.
20+
- MySQL Workbench [MySQL Workbench Download](https://dev.mysql.com/downloads/workbench/) or another third-party MySQL tool to do dump and restore commands.
2121

2222
## Use common tools
23-
Use common utilities and tools such as MySQL Workbench, mysqldump, Toad, or Navicat to remotely connect and restore data into Azure Database for MariaDB. Use such tools on your client machine with an internet connection to connect to the Azure Database for MariaDB. Use an SSL encrypted connection for best security practices, see also [Configure SSL connectivity in Azure Database for MariaDB](concepts-ssl-connection-security.md). You do not need to move the dump files to any special cloud location when migrating to Azure Database for MariaDB.
23+
Use common utilities and tools such as MySQL Workbench or mysqldump to remotely connect and restore data into Azure Database for MariaDB. Use such tools on your client machine with an internet connection to connect to the Azure Database for MariaDB. Use an SSL encrypted connection for best security practices, see also [Configure SSL connectivity in Azure Database for MariaDB](concepts-ssl-connection-security.md). You do not need to move the dump files to any special cloud location when migrating to Azure Database for MariaDB.
2424

2525
## Common uses for dump and restore
2626
You may use MySQL utilities such as mysqldump and mysqlpump to dump and load databases into an Azure Database for MariaDB server in several common scenarios.
@@ -76,7 +76,7 @@ $ mysqldump -u root -p --databases testdb1 testdb3 testdb5 > testdb135_backup.sq
7676
```
7777

7878
## Create a database on the target server
79-
Create an empty database on the target Azure Database for MariaDB server where you want to migrate the data. Use a tool such as MySQL Workbench, Toad, or Navicat to create the database. The database can have the same name as the database that is contained the dumped data or you can create a database with a different name.
79+
Create an empty database on the target Azure Database for MariaDB server where you want to migrate the data. Use a tool such as MySQL Workbench to create the database. The database can have the same name as the database that is contained the dumped data or you can create a database with a different name.
8080

8181
To get connected, locate the connection information in the **Overview** of your Azure Database for MariaDB.
8282

0 commit comments

Comments
 (0)