=> table create
-----------------------------------------------
drop table test;
create table test (
COD varchar2(10)
, NAM varchar2(60)
);
===========================
=> sqlloader에서 사용될 control파일 작성
-----------------------------------------------
load data
infile test.DAT
append
into table test
fields terminated by ' '
trailing nullcols
(CODE, NAM
)
===========================
3011010101 테스트A1
3011010102 테스트A2
3011010103 테스트A3
3011010104 테스트A4
3011010105 테스트A5
3011010106 테스트A6
3011010107 테스트A7
3011010108 테스트A8
3011010109 테스트A9
3011010110 테스트A10
===========================
이런데이타를 Upload한다고 가정...
=> table create
-----------------------------------------------
drop table test;
create table test (
COD varchar2(10)
, NAM varchar2(60)
);
===========================
=> sqlloader에서 사용될 control파일 작성
-----------------------------------------------
load data
infile test.DAT
append
into table test
fields terminated by ' '
trailing nullcols
(CODE, NAM
)
===========================
=> batch 파일 실행
sqlldr scott/tiger control=test