MySQL資料庫及表的備份與還原,mysqlDatabase Backup

來源:互聯網
上載者:User

MySQL資料庫及表的備份與還原,mysqlDatabase Backup
備份

匯出資料庫所有表結構

mysqldump -uroot -ppassword -d dbname > db.sql

匯出資料庫某個表結構

mysqldump -uroot -ppassword -d dbname tablename > db.sql

匯出資料庫所有表結構及資料

mysqldump -uroot -ppassword dbname > db.sql

匯出資料庫某個表結構及資料

mysqldump -uroot -ppassword dbname tablename > db.sql

匯出部分資料

--where="條件"mysqldump -uroot -ppassword dbname tablename -w "條件" > db.sql

-w或–where,條件一定要用雙引號包圍,單引號不行。

注意
匯出資料不需要-d

可能會出現如下錯誤

mysqldump: Got error 1044: Access denied for use ‘zndw’@’localhost’ to database ‘scilibrary’ when doing LOCK TABLES

出現這個錯誤的原因是該使用者無lock tables許可權。

解決辦法
(1) 給該使用者賦予lock tables許可權
(2) 加上--skip-lock-tables,如

mysqldump -uroot -ppassword dbname --skip-lock-tables > db.sql
匯入
source xxx.sql

(1) 語句後面不能有分號;
(2) 使用者要有insert等許可權

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.