Bạn có thể kết xuất toàn bộ cơ sở dữ liệu ở định dạng SQL như sau:
mysqldump --user=root --password=whatever --databases dbtest --opt --quote-names --complete-insert > testbkup.sql
Sau đó, bạn có thể nhập lại nó như sau:
mysql -u root -p whatever dbtest < testbkup.sql
(Lưu ý:user =root, password =anything, dbtest là cơ sở dữ liệu của bạn.)
Chỉ nói.