I created a file called ldr_test with delimited data.
I created a control file as follows:
---------
LOAD DATA
INFILE 'c:\ldr_test.txt'

into table scott.dept
fields terminated by ';'
(
deptno number(2),
dname varchar2(14),
loc varchar2(13)
)
------------


when I enter the value for control= c:\ldr_test1.txt, and enter the password as tiger,
i am getting the following error:
SQL*Loader-704: Internal error:ulconnect:OCISessionBegin [0]
ORA-01034:ORACLE not available

What is missing from my actions? Oracle is available when I run other SQL queries.

Thanks in Advance
manjunath