Thực hiện theo các bước sau:
shell> mysqldump -hlocalhost -uroot -p database1 > dump.sql
mysql> CREATE DATABASE database2;
shell> mysql -hlocalhost -uroot -p database2 < dump.sql
Nếu bạn muốn loại bỏ database1, nếu không, hãy để nó đi.
mysql> DROP DATABASE database1;
Lưu ý: shell> biểu thị dấu nhắc lệnh và mysql> biểu thị dấu nhắc mysql.