How can one skip any number of rows while loading the DB
tables with SQL Loader? Similarly how can one skip any
column?
LOAD DATA
INFILE 'Fullalbum.csv'
truncate
INTO TABLE DP_fa
FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"'
(
field2 FILLER,--for skipping the first column
sno,
performance_ky,
performance_nm,
isrc,
track_media_ky,
song_nm,
full_album,
country_nm,
isrc_country_cd
)
here first column will be skipped.
if you want to skip number of rows do the following
in cmd prompt
enter the commands like...
sqlldr <username>/<password>@<databasename>
cotrol='<location of control file>' skip=n<number of rows
that you want to skip>
Thanks,
Harikanth.
| Is This Answer Correct ? | 0 Yes | 0 No |
what are pseudocolumns?
What is a partition in oracle?
Can we create database in oracle using command line ?
What is a parameter file in oracle?
In the oracle version 9.3.0.5.0, what does each number shows?
What is Parallel Server ?
What is the function of Optimizer ?
i want to know about mr.b.kotravel......who has answered for second maxmium salary from employee table
what's query optimization and without use of IN AND Exist can we get another way data from query
What is the relation of a user account and a schema?
Explain the concept of the DUAL table.
what is difference between where clause and having clause?