Does anyone know a simple way to comapre a text file that contains the original records to what was loaded? The reason why I ask is because 2 of of 149,450 records were not loaded to the table and I am trying to find out which records did not load.
use utlfile package to open your text file; then you can loop through each line (record) and compare with your rows in table or parse for unique key fields.
the other way is output your rows as text in the same format (csv or fixed width) and use any file compare utility.
let us know what worked and how.
The best way to discover the errors would be to rerun the load, this time specifying a BADFILE to store the rejected records. Of course this requires that you restart your load from scratch, so hopefully it won't be too time consuming.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.