I am trying to load a file to a table using sqlloader
the primary key on the table is a sequence.
when I load the table I want that sequence to generate a number not sqlloader. I seem to be having a problem with this. I have my control file set up like

STMNT_ID (MAX,1) SEQUENCE,


this is taking the max value of the column STMNT_ID column and adding one not not incrementing the sequence on the table. Does anyone know how to set it up in the control file of sqlloader so it uses the table sequence and doesn't create one of it's own?