Default: 256000
Purpose
Syntax and Description
BINDSIZE=n
A bind array is an area in memory where SQL*Loader stores data that is to be loaded. When the bind array is full, the data is transmitted to the database. The bind array size is controlled by the BINDSIZE
and READSIZE
parameters.
The size of the bind array given by BINDSIZE
overrides the default size (which is system dependent) and any size determined by ROWS.
Restrictions
The BINDSIZE
parameter is used only for conventional path loads.
Example
The following BINDSIZE
specification limits the maximum size of the bind array to 356,000 bytes.
BINDSIZE=356000