oracle 匯入文字資料

2021-08-30 14:37:41 字數 1032 閱讀 9403

create table all_sales

(year number(38),

month number(38),

prd_type_id number(38),

emp_id number(38),

amount number(8,2)

)

2003	1	1	21	10034.84

2003 2 1 21 15144.65

2003 3 1 21 20137.83

2003 4 1 21 25057.45

2003 5 1 21 17214.56

2003 6 1 21 15564.64

2003 7 1 21 12654.84

2003 8 1 21 17434.82

2003 9 1 21 19854.57

2003 10 1 21 21754.19

load data           --1、控制檔案標識

infile 'oracle.txt'       --2、要輸入的資料檔案名為test.txt

fields terminated by x'09'  --4、字段終止於x'09',是乙個製表符(tab)

(year ,month,prd_type_id,emp_id,amount)   -----定義列對應順序

a、insert,為預設方式,在資料裝載開始時要求表為空

c、replace,刪除舊記錄,替換成新裝載的記錄

d、truncate,同上

sqlldr userid=system/gcg1234 control=*.ctl log=hehe.out

oracle 匯入文字資料

首先,建立乙個表 其次,建立乙個 ctl檔案,檔案內容如下 load data 控制檔案標識 infile f stu.txt 匯入原檔案 into table s user 向表中追加記錄 insert 預設 replace fields terminated byx 09 欄位分隔符 tab p...

CSV文字資料如何匯入oracle 例項

1。xamshain.bat sqlldr user password nsrt control xamshain.ctl data xamshain.csv log xamshain.log bad xamshain.bad skip 3 pause 2。xamshain.ctl load dat...

Oracle中匯入文字資料的方法

oracle中匯入文字資料的方法 方法一 dos 環境下使用sql loader命令 載入 方法二 使用其它資料庫的資料轉移工具 方法三 oracle 企業管理器中的資料載入功能 具體的技術實現 方法一 dos 環境下載入 1 首先,伺服器端的偵聽服務必須已經開啟。測試方法 dos 下輸入 c sq...