第一步:
备份数据库:
mysqldump –u root –p --databases ht_wind>备份文件名.sql
mysqldump -uroot -p -h127.0.0.1 -P3306 --opt --default-character-set=utf8 --databases ht_wind > /tmp/ht_wind_20210929.sql
第二步:
进入数据库:
查询数据库编码格式
show variables like "%char%";
设置编码格式
set names utf8mb4;
导入sql脚本
source /tmp/test.sql;
第三步:
进入数据库 先执行 mysql -uroot -p 命令进入mysql 执行de
use ht_wind;
运行脚本
source /tmp/cbondcashflow.sql;
source /tmp/cbondincome.sql;
source /tmp/ht_wind_20210929_left.sql;
source /tmp/ht_wind_20210929_sheet.sql;
第四步:
select count(*) from CBONDINCOME;
select count(*) from CBONDCASHFLOW;
select count(*) from CBONDBALANCESHEET;
select count(*) fromCODE_MAPPING