Följ stegen nedan:
shell> mysqldump -hlocalhost -uroot -p database1 > dump.sql
mysql> CREATE DATABASE database2;
shell> mysql -hlocalhost -uroot -p database2 < dump.sql
Om du vill ta bort databas1 annars lämna den.
mysql> DROP DATABASE database1;
Obs:shell> betecknar kommandotolken och mysql> betecknar mysql-prompten.