I’m loading big files via Oracle SQL Loader over vpn from home, and they’re taking a lot of time. They were a lot faster to load when I loaded them from work. The files I’m loading are on my work server already.
So my thinking is that the slow down is because of the “Commit point reached – logical record count” that is printed for each row. Must be slow due to them having to be sent over the network. I googled but can’t find any way to print less of them. Tried adding rows=5000 as a parameter, but I still get the prints for each row.
How can I print less of the “Commit point reached – logical record count” counts?
Thanks
You can use the keyword
silent, which is available in the options clause. You can set the following things to be silent:You would want to suppress
feedback.You can either use on the command line, for instance:
Or in the options clause of the control file, for instance: