SqlLoader
SQL> conn sm2/sm2
已連線。
SQL> create table temp (name varchar2(20),id varchar2(5),jc varchar2(20));
表已建立。
SQL> exit
從Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production中斷開
C:Documents and SettingsForeverLee>sqlldr sm2/sm2
control = E:mytestsqlloaderctl.sql
SQL*Loader: Release 9.2.0.1.0 - Production on 星期二 1月 25 23:44:36 2005
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
達到提交點,邏輯記錄計數2
達到提交點,邏輯記錄計數3
C:Documents and SettingsForeverLee>sqlplus sm2/sm2
SQL*Plus: Release 9.2.0.1.0 - Production on 星期二 1月 25 23:45:07 2005
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
連線到:
Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
SQL> select * from temp;
NAME ID JC
-------------------- ----- --------------------
北京 0010 beijing
廣州 0020 guangzhou
海淀 0198 haidian
SQL> conn sm2/sm2
已連線。
SQL> create table temp (name varchar2(20),id varchar2(5),jc varchar2(20));
表已建立。
SQL> exit
從Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production中斷開
C:Documents and SettingsForeverLee>sqlldr sm2/sm2
control = E:mytestsqlloaderctl.sql
SQL*Loader: Release 9.2.0.1.0 - Production on 星期二 1月 25 23:44:36 2005
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
達到提交點,邏輯記錄計數2
達到提交點,邏輯記錄計數3
C:Documents and SettingsForeverLee>sqlplus sm2/sm2
SQL*Plus: Release 9.2.0.1.0 - Production on 星期二 1月 25 23:45:07 2005
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
連線到:
Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
SQL> select * from temp;
NAME ID JC
-------------------- ----- --------------------
北京 0010 beijing
廣州 0020 guangzhou
海淀 0198 haidian
控制檔案ctl.sql
load data
infile 'E:mytestsqlloaderdata.sql'
into table temp
( name char terminated by ',', --根據','分割
id char terminated by ',',
jc char terminated by whitespace) --根據空格區分一行
資料檔案data.sql
北京,0010,beijing
廣州,0020,guangzhou
海淀,0198,haidian
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/76065/viewspace-788370/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle sqlloaderOracleSQL
- sqlloader指定positionSQL
- sqlloader普通裝載SQL
- sqlloader工具匯入oracleSQLOracle
- SQLLOADER匯入列中的空格SQL
- 測試TOM=SQLLOADER1SQL
- 用Shell指令碼&sqlloader做ETL指令碼SQL
- sqlloader普通裝載之分隔符SQL
- 用sqlloader(sqlldr)裝載LOB資料SQL
- SQLLoader ORA-01722 invalid numberSQL
- 使用sqlloader向oracle匯入文字資料SQLOracle
- sqlloader指定不裝載哪一列SQL
- sqlloader匯入含有回車的字元資料SQL字元
- AUL6資料匯出_sqlloader匯入總結SQL
- oracle sqlloader匯入資料的一系列方法OracleSQL
- 測試TOM=SQLLOADER載入製表符號資料SQL符號
- oracle sqlloader_控制檔案_trailing nullcols小記OracleSQLAINull
- 使用SQLLOADER將每行資料根據條件插入不同表SQL
- EXP、IMP、SQLLOADER、EXPDP、IMPDP、DBMS_METADATA、SQLPLUS等方面SQL
- SPOOL、SQLLOADER資料匯出匯入的一點小總結SQL
- sqlloader匯入log日誌的trailing nullcols的理解SQLAINull
- 使用awk查詢不滿足sqlloader載入條件的記錄SQL
- 使用sqlloader控制檔案生成外部表建立語句的一個例子SQL
- 使用SQLLOADER將一行資料拆分為多行進行載入SQL
- Linux環境SQLLDR匯入出現SQLLOADER-553、509錯誤LinuxSQL
- 用sqlloader匯入中文及數字到公司測試資料庫pdSQL資料庫
- sqlloader匯入資料_資料檔案的欄位超出最大長度SQL
- 使用SQLLOADER將多行資料合併為一行進行載入SQL
- 使用sqlloader的直接載入方式和傳統載入方式的效能差異SQL
- sqlloader匯入_與匯入原始檔csv_txt_linux自動換行SQLLinux
- 異構資料庫資料遷移 oracle to mysql之oracle sqlloader和mysql load data資料庫OracleMySql