mysql教程匯入預存程序的方法
本文章提供二種關於mysql匯入預存程序的方法與mysql預存程序匯出方法,下面我們先來看看匯出預存程序的執行個體,再看一款詳細的匯入預存程序方法。
匯出mysql裡面的函數或者預存程序
文法為:
[root@localhost bin]# mysqldump -uroot -p -hlocalhost -p3306 -n -d -t -r dbname > procedure_name.sql
參數說明:
-n: --no-create-db
-d: --no-data
-t: --no-create-info
-r: --routines dump stored routines (functions and procedures)
mysqldump -hhostname -uusername -ppassword -ntd -r databasename > backupflie.sql
mysqldump -hlocalhost -uroot -ntd -r hqgr > hqgr.sql
其中的 -ntd 是表示匯出預存程序;-r是表示匯出函數
匯入mysql預存程序
1 # mysqldump -u 資料庫教程使用者名稱 -p -n -t -d -r 資料庫名 > 檔案名稱
其中,-d 表示--no-create-db, -n表示--no-data, -t表示--no-create-info, -r表示匯出function和procedure。所以上述代碼錶示僅僅匯出函數和預存程序,不匯出表結構和資料。但是,這樣匯出的內容裡,包含了trigger。再往mysql中匯入時就會出問題,錯誤如下:
error 1235 (42000) at line **: this version of mysql doesn't yet support 'multiple triggers with the same action time and event for one table'
所以在匯出時需要把trigger關閉。代碼為
1 # mysqldump -u 資料庫使用者名稱 -p -n -t -d -r --triggers=false 資料庫名 > 檔案名稱
這樣匯入時,會出現新的問題:
errorcode:1418
this function has none of deterministic, nosql, or reads sql data inits declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
解決方案是,在/etc/my.cnf中找到[mysqld],在它下面添加這樣一行:
1 log-bin-trust-function-creators=1
匯入預存程序方法
delimiter $$
create procedure `pms_authuser`(in account varchar(255), in vorgid varchar(255))
not deterministic
contains sql
sql security definer
comment ''
begin
declare cnt integer;
declare pmsc varchar(100);
select @pmsc:=orgid from organization where pmscode=vorgid;
select @cnt:=count(*) from userinfo as userinfo where userinfo.username=account and userinfo.orgid =@pmsc;
if @cnt>0
then
select userinfo.*,org.orgid as orgdepth from userinfo as userinfo ,organization as org where userinfo.username=account and userinfo.orgid =@pmsc and userinfo.orgid=org.orgid;
else
select userinfo.*,org.orgdepth from userinfo userinfo,organization org where username=account and userinfo.orgid in(select orgid from organization where orgdepth like concat('%',@pmsc,'%'));
end if;
end $$
delimiter;
然後mysql本機運行命令匯入資料庫中的預存程序
mysql -uroot crs2 < file.sql
如果非本機mysql工具匯入的預存程序時要檢查 mysql.proc 表的 definer 欄位的建立者是否為 root@localhost
select db, created, definer from mysql.proc;
如果 definer 欄位有非 root@localhost 值,一定要改正!
update mysql.proc set definer = 'root@localhost';