As per my observation, when we load the data to Oracle tables using SQL* Loader, 64 records are committed at once, by default.
Could you please let me know if we can change this default limit of insertion/commit to number other than 64?
Also, can we avoid the display of loading, shown below on the console?
Commit point reached - logical record count 64
Commit point reached - logical record count 128
Commit point reached - logical record count 192
From the reference:
So you’d specify
rows=1024or whatever on the command line or parameter file.As for avoiding the display, I don’t think there’s an option to suppress only the progress information. There is
silentbut that might be more than you want. Filter those out withgrepif you don’t want to see them.