文字檔案用sqlldr工具匯入到oracel資料庫中
1.文字檔案student資料如下
1001,李三,90
1002,王五,87
1002,李四,86
2.在oracle資料庫中scott使用者建立表student表
create table student (id int ,name varchar2(20),grade int);
3.編寫sqlldr控制檔案student.ctl
load data
infile 'e:\student.txt'
into table student
fields terminated by ','
(
id,
name,
grade
)
4.匯入資料
C:\>sqlldr scott/tiger control=e:\student.ctl log=e:\log.log
1001,李三,90
1002,王五,87
1002,李四,86
2.在oracle資料庫中scott使用者建立表student表
create table student (id int ,name varchar2(20),grade int);
3.編寫sqlldr控制檔案student.ctl
load data
infile 'e:\student.txt'
into table student
fields terminated by ','
(
id,
name,
grade
)
4.匯入資料
C:\>sqlldr scott/tiger control=e:\student.ctl log=e:\log.log
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26937943/viewspace-2123695/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle工具之sqlldr的使用--如何將文字檔案或Excel中的資料匯入資料庫OracleSQLExcel資料庫
- 用Oracle sqlldr匯入文字檔案TXT 總結OracleSQL
- 採用sqlldr定時將文字檔案載入進入資料庫SQL資料庫
- 文字檔案的資料裝載工具sqlldrSQL
- 把csv檔案的資料匯入到oracle資料庫中Oracle資料庫
- 使用oracle sqlldr匯入文字資料的例子OracleSQL
- 使用sqlldr匯入文字資料到oracleSQLOracle
- 資料匯入SQLLDRSQL
- ociuldr sqlldr 文字匯出工具SQL
- oracle資料庫使用sqlldr命令匯入txt資料Oracle資料庫SQL
- 大文字資料,匯入匯出到資料庫資料庫
- sqlldr 匯入資料範例SQL
- PHP 匯入資料庫 sql 檔案PHP資料庫SQL
- 資料庫遠端檔案匯入資料庫
- Sql Server資料庫資料匯入到SQLite資料庫中Server資料庫SQLite
- GeoRapter工具將shapefile資料匯入到Oracle空間資料庫中APTOracle資料庫
- 從cmd中匯入.SQL檔案並建立資料庫SQL資料庫
- 用exp/imp把遠端資料匯入到本地資料庫中資料庫
- vfp匯入文字檔案
- sqlldr批量匯入匯出資料測試SQL
- sqlldr批次匯入匯出資料測試SQL
- sqlserver匯入匯出文字檔案SQLServer
- 通過SQLLDR匯入LOB資料SQL
- 教你如何將二進位制檔案匯入到資料庫資料庫
- 如何把 .csv 的檔案匯入資料庫SQL SERVER 中!資料庫SQLServer
- .sql檔案匯入到sql server中SQLServer
- excel檔案中的資料匯入Oracle資料庫的幾種方法ExcelOracle資料庫
- 將informix匯出的文字資料匯入oracle資料庫ORMOracle資料庫
- 將資料從文字匯入到mysql(轉)MySql
- 教你從SQL備份檔案中匯入現存資料庫中SQL資料庫
- pl/sql developer將excel資料匯入到資料庫中SQLDeveloperExcel資料庫
- 【實驗】【SQL*Loader】使用SQLLDR將Linux的使用者檔案passwd匯入資料庫SQLLinux資料庫
- 匯入excel資源到資料庫Excel資料庫
- MYSQL資料檔案匯入MySql
- SQLSERVER匯出TXT文字檔案,ORACLE SQL LOADER匯入TXT文字檔案SQLServerOracle
- 【匯入匯出】sqlldr 匯入含有內嵌換行符的資料SQL
- mysql匯入文字或excel檔案MySqlExcel
- Flume:資料匯入到hdfs中