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 is the difference between sharding and replication?
When do you get a .pll extension in oracle? Explain its importance
What happens to the data files if a tablespace is dropped?
Difference between cartesian join and cross join?
In Oracle 10g, "g" Stands for what?
what are the mandortary parameters required for cuncurrent program definition in oracle apps R12?
what is a Nested Loop join?
When do you get a .pll extension in oracle?
What is an Index ?
How to assign values to variables?
hey friends, What are the steps I can do to transfer the database from Microsoft Access 2003 to oracle10g (or SQL) Best regards
Use of an integrity constraint is better to validate data. Explain