Cannot start OEM console(9i) [message #68132] |
Sun, 24 November 2002 01:33 |
Wp.
Messages: 1 Registered: November 2002
|
Junior Member |
|
|
Hi all,
I have 2 oracle version(8i, 9i) on the same machine.
All databases are work, but I cannot start OEM console(from 9i, start -> Oracle.....->Enterprise Manager Console).
I try to start from command line
(%ORACLE_HOMEbinoem???.bat console) and it return error message : "line too long" I look for that line it contains a tons of *.jar (about > 1000 characters long) as parameters.
To start OEM, how do I fix this problem?
Thanks
Wp.
|
|
|
Re: Cannot start OEM console(9i) [message #68133 is a reply to message #68132] |
Mon, 25 November 2002 07:58 |
|
Mahesh Rajendran
Messages: 10708 Registered: March 2002 Location: oracleDocoVille
|
Senior Member Account Moderator |
|
|
hi,
check your oemapp.bat file.
there will some entries like this.
SET CLASSROOT=d:some_lengthy_$ORACLE_HOMEclasses
----------------------------------------------------------------------
1. Use "subst" command to substitute $ORACLE_HOME with
some drive letter:
Example: subst t: c:the-long-oracle-home-name
2. Edit the oemapp.bat (located in $ORACLE_HOMEbin directory) and
replace all occurrences of the oracle-home directory
with the substituted drive letter.
For example, if one of the lines in oemapp.bat is:
SET CLASSROOT=d:some_lengthy_$ORACLE_HOMEclasses
The line should be modified as:
SET CLASSROOT=t:classes
|
|
|