• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

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: 41860
908
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.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic