Commit point in SQL loader
Hi ,
Using Sqlloader i'm loading data into table. In the control file i mentioned following option to commit every 1024 rows.
But when actually SQLloader loads the data i'm getting follwowing output ie its commiting every 330 rows.
OPTIONS (ROWS=1024)
LOAD DATA
INFILE '$infile'
BADFILE '$badfile'
APPEND
INTO TABLE employee
.....
.....
SQL*Loader: Release 10.2.0.4.0 - Production on Tue Jun 22 06:13:23 2010
Copyright (c) 1982, 2007, Oracle. All rights reserved.
Commit point reached - logical record count 330
Commit point reached - logical record count 660
Commit point reached - logical record count 990
Can anyone help me on this?
Thanks,
Kannan