|
|
Re: error while installing Oracle Developer Suite 10g [message #514125 is a reply to message #514121] |
Fri, 01 July 2011 13:08 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Roger22
Messages: 98 Registered: April 2009 Location: Brasov, ROMANIA
|
Member |
|
|
Ok, and what should i do after that? Oracle Net Configuration assistant does not start, Oracle Forms Builder does not start (error that "Check you environment..) and oracle report builder does not start. Nothing works on what i installed (Dev Suite).
Then, what should i do?
|
|
|
Re: error while installing Oracle Developer Suite 10g [message #514130 is a reply to message #514125] |
Fri, 01 July 2011 13:21 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
John Watson
Messages: 8964 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
You need to understand environment variables. You have two Oracle Homes now. Look in your Windows registry, and you'll see the settings for each one. That means you need to connect to the correct home. Work from the command prompt, and always set the variable ORACLE_HOME and PATH before trying to launch anything. For example, to connect to my database 11g home, I use
set ORACLE_BASE=c:\app\john
set ORACLE_HOME=%ORACLE_BASE%\product\11.2.0\dbhome_1
set PATH=%ORACLE_HOME%\bin;%PATH%
and to connect to my client home I use
set ORACLE_BASE=c:\app\john
set ORACLE_HOME=%ORACLE_BASE%\product\11.2.0\client_1
set PATH=%ORACLE_HOME%\bin;%PATH%
and so on.
|
|
|