mysql 匯入匯出資料庫以及函數、預存程序的介紹

來源:互聯網
上載者:User

mysql常用匯出資料命令:
1.mysql匯出整個資料庫
  mysqldump -hhostname -uusername -ppassword databasename > backupfile.sql  
  mysqldump -hlocalhost -uroot hqgr> hqgr.sql     (如果root使用者沒用密碼可以不寫-p,當然匯出的sql檔案你可以制定一個路徑,未指定則存放在mysql的bin目錄下)

2.mysql匯出資料庫一個表
  mysqldump -hhostname -uusername -ppassword database  tablename> 匯出的檔案名稱
  mysqldump -hlocalhost -uroot hqgr t_ug_user> user.sql

3.mysql匯出一個資料庫結構
 mysqldump -hhostname -uusername -ppassword  -d --add-drop-table databasename>d:hqgrstructure.sql
 -d 沒有資料 --add-drop-table 在每個create語句之前增加一個drop table

4.如果需要匯出mysql裡面的函數或者預存程序
  mysqldump -hhostname -uusername -ppassword -ntd -R databasename > backupflie.sql
  mysqldump -hlocalhost -uroot -ntd -R hqgr > hqgr.sql
  其中的 -ntd 是表示匯出預存程序;-R是表示匯出函數

mysql常用匯入資料的命令:
1.mysql命令
  mysql -hhostname -uusername - ppassword databasename < backupfile.sql
2.source命令
  mysql>source backupfile.sql

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.