I have an Excel file with 10,000 records. I want to import this file into a table in an Oracle database. But I found some error while importing the data.
How can I check which records has been generate as error while import?
Here is the code to import-
load data infile D:\WORKOUT\SD.csv
into table md.cus
field terminated by ','
trailing nullcods
( orderdate => orderdate,
region => region,
rep => rep,
item => item,
units => units,
unitcost => unitcost,
total => total);