db2資料匯出匯入

2022-05-04 02:24:08 字數 859 閱讀 4464

c:\users\yexuxia>set db2instance=tcashman

db2 => connect to tcashman user db2inst1 using '1qaz!qaz'

資料庫連線資訊

資料庫伺服器         = db2/aix64 9.7.0

sql 授權標識         = db2inst1

本地資料庫別名       = tcashman

db2 => export to d:\3.csv of del select * from t_planstate

sql3104n  export 實用程式 正在開始將資料匯出至檔案 "d:\3.csv"。

然後匯出的資料用excel**開啟即可。

匯出格式為txt

db2 => export to d:\2.txt of del select * from t_planstate

sql3104n  export 實用程式 正在開始將資料匯出至檔案 "d:\2.txt"。

sql27981w  實用程式未能驗證目標表或源表中已連線或已拆離的資料分割槽是否存在。

sql3105n  export 實用程式已經完成匯出 "7" 行。

select   *  from "sysibm"."syscolumns"  where tbname='t_user'   檢視表的列欄位名稱,屬性

db2 => delete from t_carinfo where carnum like '10%'

db20000i  sql 命令成功完成。

db2 => import from d:\3.csv of del insert into t_carinfo   匯入表資料命令

db2匯入匯出資料

1 匯出資料 開始 執行 db2cmd 進入命令列 執行如下命令 db2look d bxfund2 e c o e data bxfund2.sql 此命令將bxfund2中的表的結構寫入到e盤data檔案下的bxfund2.sql檔案中,即匯出表結構,接著,我們來匯出資料 接著執行連線資料庫命令...

DB2 匯入匯出

1 匯出資料 開始 執行 db2cmd 進入命令列 執行如下命令 db2look d bxfund2 e c o e data bxfund2.sql 此命令將bxfund2中的表的結構寫入到e盤data檔案下的bxfund2.sql檔案中,即匯出表結構,接著,我們來匯出資料 接著執行連線資料庫命令...

db2 匯入匯出表

一 db2匯入匯出方法很多,在此列舉個比較常用的方法 匯入匯出分兩種一種是帶表結構的,一種為資料的,我們用的基本上是只有資料的 1 在db2中匯入匯出表 1 匯出表結構並且資料是二進位制格式 export to filename.ixf of ixf select from tablename wh...