Link to home
Start Free TrialLog in
Avatar of seis
seisFlag for United States of America

asked on

How do I change the Max Errors Allowed in SQL Loader?

I am trying to load several thousand lines of data and I am getting about 95% of the data loaded before the load bombs due to going over the "Errors Allowed = 50" I have copied a portion of my log file below that shows the Errors allowed setting. I would like to change this to 100, where would I do this?

Thanks
-Steve


---------------
SQL*Loader: Release 9.2.0.1.0 - Production on Thu Nov 21 12:43:06 2002

Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.

Control File:   xyz.ctl
Data File:      xyz.Dat
  Bad File:     xyz.bad
  Discard File:  none specified
 
 (Allow all discards)

Number to load: ALL
Number to skip: 0
Errors allowed: 50
Bind array:     64 rows, maximum of 256000 bytes
Continuation:    none specified
Path used:      Conventional
ASKER CERTIFIED SOLUTION
Avatar of pennnn
pennnn

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of seis

ASKER

Thanks pennnn! Outstanding answer!!! I added the OPTIONS (ERRORS=100) in my Control File as line 1 and the loader worked great, (except for the 70 errors I received), so I am off to resolve those now.

Thanks again for the fast response.

-Steve