I'm executing the following command:
import from j:\gto\data\policyendorsement.del of del
messages c:\load.msg
insert_update into geniusdata.policy_endorsement;
This file contains about 1.3 million rows. I'm getting the error message "Transaction Log Full". I assume this is because I'm importing too many records without committing.
Is there anyway to set a commit frequency? I don't want to turn on auto commit, because committing after every insert/update would be way too slow. But it would be nice to commit after every 5000 records or so.
import from j:\gto\data\policyendorsement.del of del
messages c:\load.msg
insert_update into geniusdata.policy_endorsement;
This file contains about 1.3 million rows. I'm getting the error message "Transaction Log Full". I assume this is because I'm importing too many records without committing.
Is there anyway to set a commit frequency? I don't want to turn on auto commit, because committing after every insert/update would be way too slow. But it would be nice to commit after every 5000 records or so.