Problem in sql loader

Hi Frnds,

I wanto load the data thats in data file with comma(,) delimited.
it throw this errors

SQL*Loader-951: Error calling once/load initialization
ORA-00604: error occurred at recursive SQL level 1
ORA-00054: resource busy and acquire with NOWAIT specified

Plz look at my file below . plz give me a solution

my .ctl file

LOAD DATA
APPEND
INTO TABLE STN.STN_ERROR_TABLE
FIELDS TERMINATED BY ','
TRAILING NULLCOLS
 (
TGT_SCHEMA_NAME,
TGT_TABLE_NAME,
REJECTED_RECORD,
ERROR_CODE,
SOURCE_SYS_NAME,
SESSION_LOG_NAME,
ETL_RUN_DT
 )

and my .csv or data file as below

STN,STN_SAP_MATERIAL_ATTR,MASTER_MATERIAL_ATTR_090709,00900
STN,STN_SAP_MATERIAL_ATTR,MASTER_MATERIAL_ATTR_090709,00900
STN,STN_SAP_MATERIAL_ATTR,MASTER_MATERIAL_ATTR_090709,00900.
.
.

I hope it's nothing to do with the unix. Pls post in "orafaq" , you will get good solutions over there.

its one of the untility that we can use in unix. I though any of our frnd miight hv come occross this kind of problem. Any way thanks frnd.

Gopal,

sqlldr is utility provided by oracle and you can use it in any operating system provided oracle installed on it. The error message you got is something coming from "oracle" . That's what i mean.