-
Does anyone know how to disable the JVM in 9i (NT). I assume it got automatically configured by the database configuration assistant because the parameter is set to 32 Mb and greyed out in OEM.
-
You can remove it by running:
ORACLE_HOME/javavm/install/rmjvm.sql
I'm not sure I'd recommend this since alot of technologies in Oracle9i rely on it. Why not just decrease the amount of memory assigned to it by:
When using the SPFILE:
ALTER SYSTEM SET java_pool_size=?M SCOPE=SPFILE;
Then restart the instance.
When using the INIT.ORA file:
Adjust the java_pool_size entry and restart the instance.
The minimum you can get away with and actually do anything with Java is about 10M.
Cheers
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|