您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)Mysql數(shù)據(jù)庫(kù)導(dǎo)出和導(dǎo)入sql數(shù)據(jù)庫(kù)文件命令是什么的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來(lái)看看吧。
在使用MySQL數(shù)據(jù)庫(kù)時(shí),經(jīng)常需要備份和恢復(fù)數(shù)據(jù)庫(kù),通過導(dǎo)出sql文件備份和直接執(zhí)行sql文件恢復(fù)是非常便捷的方式。
如何對(duì)MySQL數(shù)據(jù)庫(kù)通過cmd命令導(dǎo)出和導(dǎo)入sql文件?
包含數(shù)據(jù)對(duì)象和數(shù)據(jù)
mysqldump -hhostname -uusername -ppassword databasename > /home/justin/databasename.sql
只有數(shù)據(jù)庫(kù)表結(jié)構(gòu)
mysqldump -hhostname -uusername -ppassword -d databasename > /home/justin/databasename.sql
1、查詢數(shù)據(jù)庫(kù)中的存儲(chǔ)過程和函數(shù)
方法一:
select `name` from mysql.proc where db = 'databasename' and `type` = 'PROCEDURE'; -- 存儲(chǔ)過程 select `name` from mysql.proc where db = 'databasename' and `type` = 'FUNCTION'; -- 函數(shù)
方法二:
show procedure status; show function status;
2、mysql導(dǎo)出存儲(chǔ)過程及函數(shù)
mysqldump -hhostname -uusername -ppassword -ntd -R databasename > /home/justin/prorandfunc.sql
-d 結(jié)構(gòu)(--no-data:不導(dǎo)出任何數(shù)據(jù),只導(dǎo)出數(shù)據(jù)庫(kù)表結(jié)構(gòu)) -t 數(shù)據(jù)(--no-create-info:只導(dǎo)出數(shù)據(jù),而不添加CREATE TABLE 語(yǔ)句) -n (--no-create-db:只導(dǎo)出數(shù)據(jù),而不添加CREATE DATABASE 語(yǔ)句) -R (--routines:導(dǎo)出存儲(chǔ)過程以及自定義函數(shù)) -E (--events:導(dǎo)出事件) --triggers (默認(rèn)導(dǎo)出觸發(fā)器,使用--skip-triggers屏蔽導(dǎo)出) -B (--databases:導(dǎo)出數(shù)據(jù)庫(kù)列表,單個(gè)庫(kù)時(shí)可省略) --tables 表列表(單個(gè)表時(shí)可省略) ①同時(shí)導(dǎo)出結(jié)構(gòu)以及數(shù)據(jù)時(shí)可同時(shí)省略-d和-t ②同時(shí) 不 導(dǎo)出結(jié)構(gòu)和數(shù)據(jù)可使用-ntd ③只導(dǎo)出存儲(chǔ)過程和函數(shù)可使用-R -ntd ④導(dǎo)出所有(結(jié)構(gòu)&數(shù)據(jù)&存儲(chǔ)過程&函數(shù)&事件&觸發(fā)器)使用-R -E(相當(dāng)于①,省略了-d -t;觸發(fā)器默認(rèn)導(dǎo)出) ⑤只導(dǎo)出結(jié)構(gòu)&函數(shù)&事件&觸發(fā)器使用 -R -E -d
1、首先建空數(shù)據(jù)庫(kù)
mysql>create database test;
2、導(dǎo)入數(shù)據(jù)庫(kù)
方法一:
(1)選擇數(shù)據(jù)庫(kù)
mysql>use test;
(2)設(shè)置數(shù)據(jù)庫(kù)編碼
mysql>set names utf8;
(3)導(dǎo)入數(shù)據(jù)(注意sql文件的路徑)
mysql>source /home/justin/test.sql;
方法二:
mysql -hhostname -uusername -ppassword abc < /home/justin/test.sql;
感謝各位的閱讀!關(guān)于“Mysql數(shù)據(jù)庫(kù)導(dǎo)出和導(dǎo)入sql數(shù)據(jù)庫(kù)文件命令是什么”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。