匯出
mysqldump -u root -p --default-character-set=utf8 databasename > yourname.sql
匯入source yourname.sql
登入執行 ip、字符集mysql -u root -h 127.0.0.1 -p --default-character-set=utf8
登入後退出命令\q
或者exit;
mysql 資料庫設定表名不區分大小寫(預設區分大小寫 0)vim /etc/my.cnf
新增lower_case_table_names=1
匯入證書:keytool -import -keystore /opt/jdk1.8.0_05/jre/lib/security/cacerts -file /opt/uatcasmanagerserver.cer -alias smalllove;
密碼:changeit
顯示字符集:show variables like '%char%';
修改資料庫字符集:
alter database salary character set utf8;
或者:set chatacter_set_database=utf8;
檢視資料庫版本:show variables like 'version';
bcp匯入到mysql BCP 匯入匯出資料庫資料
使用 bcp 將資料庫遷移到 azure sql database 所有 都是在本機sql上執行 先開啟cmdshell exec sp configure show advanced options 1 goreconfigure goexec sp configure xp cmdshell 1...
mysql 匯入匯出資料命令
更靈活,匯出 select from table name into outfile c path filename.txt 匯入 load data local infile file name.txt into table tbl name 備份表 mysqldump h111.111.11.1...
MySQL匯出匯入資料命令
mysql匯出匯入資料命令 1.匯出整個 資料庫mysqldump u 使用者名稱 p 資料庫名 匯出的檔名 2.匯出乙個表 mysqldump u 使用者名稱 p 資料庫名 表名 匯出的檔名 3.匯出乙個資料庫結構 d 沒有資料 add drop table 在每個create語句之前增加乙個dr...