windows下,匯出 匯入資料庫表的ixf檔案

2021-06-21 22:58:30 字數 1954 閱讀 3296

第一步:查詢資料庫所有使用者表

select table_name from sysibm.tables where table_schema = 'odsuser'

第二步:構造export語句

db2 connect to report

db2 set schema='odsuser'

db2 export to d:\資料匯出\report\unteck_attachment.ixf of ixf select * from unteck_attachment

db2 export to d:\資料匯出\report\unteck_dict_entry.ixf of ixf select * from unteck_dict_entry

db2 export to d:\資料匯出\report\unteck_dict_type.ixf of ixf select * from unteck_dict_type

db2 export to d:\資料匯出\report\unteck_login_log.ixf of ixf select * from unteck_login_log

db2 export to d:\資料匯出\report\unteck_menu.ixf of ixf select * from unteck_menu

db2 export to d:\資料匯出\report\unteck_operation.ixf of ixf select * from unteck_operation

db2 export to d:\資料匯出\report\unteck_organization.ixf of ixf select * from unteck_organization

db2 export to d:\資料匯出\report\unteck_primarykey of ixf select * from unteck_primarykey

db2 export to d:\資料匯出\report\unteck_resource.ixf of ixf select * from unteck_resource

db2 export to d:\資料匯出\report\unteck_role of ixf select * from unteck_role

db2 export to d:\資料匯出\report\unteck_role_resource.ixf of ixf select * from unteck_role_resource

db2 export to d:\資料匯出\report\unteck_user.ixf of ixf select * from unteck_user

db2 export to d:\資料匯出\report\unteck_user_role.ixf of ixf select * from unteck_user_role

第三步:開啟windows cmd 執行export語句

第四步:匯入表的ixf檔案(注意在ixf檔案的目錄下執行)

db2 connect to report2;

db2 set schema=odsuser;

db2 import from   etl_busi_type.ixf of ixf modified by forcecreate commitcount 10000 replace_create  into etl_busi_type

db2 import from   etl_busi_type_tosend.ixf of ixf modified by forcecreate commitcount 10000 replace_create  into etl_busi_type_tosend

db2 import from   etl_contact_pepole.ixf of ixf modified by forcecreate commitcount 10000 replace_create  into etl_contact_pepole

......

windows下mysql資料庫匯入匯出

匯出資料庫 1 windows下cmd開啟命令列 2 cd 到mysql的安裝目錄的bin 目錄,如果bin目錄新增到環境變數中不需要切換到bin目錄 3 匯出資料庫 mysqldump u 使用者名稱 p 資料庫名 匯出的檔名 比如在命令列中輸入命令 mysqldump u root p pers...

windows下mysql資料庫匯入匯出

windows下mysql資料庫匯入匯出 匯出資料庫 1 windows下cmd開啟命令列 2 cd 到mysql的安裝目錄的bin 目錄,如果bin目錄新增到環境變數中不需要切換到bin目錄 3 匯出資料庫 mysqldump u 使用者名稱 p 資料庫名 匯出的檔名 比如在命令列中輸入命令 my...

windows下匯出pg資料庫

由於pg dump.exe執行程式在postgresql資料庫安裝目錄 bin 目錄下,如果未設定環境變數則需要進入目錄下執行 1 cmd進入pg安裝bin目錄下 2 執行 pg dump h x.ip u xx user name p x pg port xx database name loca...