• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

SQLLDR error on Oracle

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Please bear with me as the Question i am goin to ask me sound silly.
I get the following error when i run the SQLLDR command on a Unix box.
The SQLLDr command syntax is correct, yet i get the below error:
"SQL Loader errror output: Message 2100 not found; No message file for product=RDBMS, facility=ULMessage 2100 not found; No message file for product=RDBMS, facility=UL".
If i google on this error it indicates that some Oracle environment variables like ORACLE_HOME, ORACLE_SID.
I have 2 questions regarding this:
1. How can i check what the ORACLE_HOME, ORACLE_SID variable values on Unix. if i echo on these variables it displays blank
2. My SQLLDR command is something like this /usr/local/oracleclient-9i-64/bin/sqlldr userid=testdev/testdev01@O02TST0 control=/usr/local/ccms/tst//jclass/properties//aval.ctl .....
As you see "O02TST0" is the HostName i am trying to connect to. How would SQLLDR resolve the HostName? Will it look in tsnnames.ora file to resolve it? If that is the case, then where is the tnsnames.ora file typically located on Unix?

Please help
 
author & internet detective
Posts: 42173
937
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1) echo $ORACLE_HOME is the correct command. If this returns blank, it means the variable is not set.
2) Yes, it will use tnsnames.ora. It is at $ORACLE_HOME/network/admin/tnsnames.ora.
 
What a stench! Central nervous system shutting down. Save yourself tiny ad!
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic