external tables
Database
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
I am loading a file using external tables. Suppose there are 100 records in a file and there are 10 bad data rows.
If I use reject limit 0 - first bad row is recorded into bad file.
if i use reject limit unlimited still first bad row is recorded into bad file.
I want the process to go through whole file and records all bad records into the bad files, so that I can look at the bad file / log file and point to exact location of 10 rows which are bad.
I am using this syntax