SQL-Loader: The Step by Step Basics - Example
SQL> create table customer_ldr (cid number primary key,cname varchar2(20),
loc varchar2(20),type char(1),load_date date);
/
Table created.
*******************data.txt*************************
1,prabhakar,bidar,y,sysdate,
2,manju,bang,y,sysdate,
3,daivik,mysore,y,sysdate,
*********************controlfile*******************
options ( skip=1 )
load data
infile 'D:\sql_loader\lod\data.txt'
TRUNCATE
into table customer_ldr
fields terminated by "," optionally enclosed by "#" TRAILING NULLCOLS
(cid ,cname,loc,type, load_date sysdate)
C:\Users\Admin>sqlldr scott/tiger control='D:\sql_loader\lod\sysdate_ldr.txt' log='D:\sql_loader\lod\log.txt'
SQL*Loader: Release 11.2.0.1.0 - Production on Sun Oct 7 22:21:50 2018
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
Commit point reached - logical record count 4
SQL> select * from customer_ldr;
CID CNAME LOC T LOAD_DATE
---------- -------------------- -------------------- - ---------
1 prabhakar bidar y 07-OCT-18
2 manju bang y 07-OCT-18
3 daivik mysore y 07-OCT-18
No comments:
Post a Comment