需要用sqlloader來進行大量的資料匯入。
1、首先,在資料庫中要建立跟欄位對應的表,並設定欄位長度足夠大。
2、根據建立的表名,及文字的格式編寫指令碼。儲存成檔案,名字為:load.ctl
load data infile "result.txt" --文字檔名 replace into table resultxt --插入的表名 (resultid char terminated by ",", --讀取以逗號分隔的資料,下同 website char terminated by ",", ipport char terminated by ",", status char terminated by whitespace)
3、ctrl+win鍵,開啟命令提示符。
4、執行以下語句:
sqlldr userid=使用者名稱/密碼@資料庫例項 control=路徑\result.ctl log=路徑\resulthis.out
5、等待匯入完成即可。
需要用sqlloader來進行大量的資料匯入。
1、首先,在資料庫中要建立跟欄位對應的表,並設定欄位長度足夠大。
2、根據建立的表名,及文字的格式編寫指令碼。儲存成檔案,名字為:load.ctl
load data infile "result.txt" --文字檔名 replace into table resultxt --插入的表名 (resultid char terminated by ",", --讀取以逗號分隔的資料,下同 website char terminated by ",", ipport char terminated by ",", status char terminated by whitespace)
3、ctrl+win鍵,開啟命令提示符。
4、執行以下語句:
sqlldr userid=使用者名稱/密碼@資料庫例項 control=路徑\result.ctl log=路徑\resulthis.out
5、等待匯入完成即可。