mysql 匯入匯出函式、儲存過程
mysql常用匯出資料命令:
1.mysql匯出整個資料庫
mysqldump -h hostname -u username -p databasename > backupfile.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 -h hostname -u username -ntd -R databasename > backupflie.sql (包括存過過程和函式一次性完整匯出)
其中的 -ntd 是表示匯出表結構和資料;-R是表示匯出函式、儲存過程
可以參照mysqldump --help
mysql常用匯入資料的命令:
mysql資料庫匯入匯出:
mysqldump -u 使用者名稱 -p 資料庫名 > 資料庫名.sql
如:
mysqldump -u root -p testdb > testdb.sql (不包括儲存過程和函式)
mysqldump -u root -p -R testdb > testdb.sql (**包括儲存過程和函式**)
MySQL source命令向資料庫中匯入資料:
mysql>use testdb;
mysql>set names utf8;
mysql>source /tmp/bdc.sql;
奇怪錯誤處理:
下面是匯出儲存過程的程式碼
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
建立資料庫:CREATE DATABASE `total_admin` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
1.檢視mysql大小
use 資料庫名 SELECT sum(DATA_LENGTH)+sum(INDEX_LENGTH) FROM information_schema.TABLES where TABLE_SCHEMA='資料庫名';
得到的結果是以位元組為單位,除1024為K,除1048576為M。
2.查看錶的最後mysql修改時間select TABLE_NAME,UPDATE_TIME from INFORMATION_SCHEMA.tables where TABLE_SCHEMA='資料庫名';