CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Oracle sqlldr

  1. #1
    Join Date
    Dec 2003
    Posts
    17

    Oracle sqlldr

    Hi

    I want to load data from files into an Oracle DB. I tried to invoke the sqlldr command from a linux machine, but it gave me: command not found. I want to know if anyone has an idea on how to load data from files or what is wrong with the sqlldr command.

    islheg

  2. #2
    Join Date
    Jun 2006
    Posts
    437

    Re: Oracle sqlldr

    Hi all

    Sqlldr is the name of an executable file (it's the program name of SQL Loader).
    Probably, when you try to execute it by a command line SQL Loader doesn't work because in your system the PATH variable is not setted correctly. So, you should set PATH right, adding the path where Sqlldir is (usually you can find it in $ORACLE_HOME\bin), or you should run Sqlldr from directory where it is (you must do cd $ORACLE_HOME\bin first).

    I hope this will help you.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured