vote up 0 vote down star

Does someone know if it's possible to modify the jvm settings at runtime (e.g. -dname=value) ? I need this little trick to run my java stored procedure (oracle 10g)...

Thanks a lot.

P.S.Sorry for my bad English.

flag

75% accept rate

4 Answers

vote up 5 vote down check

Assuming you mean system properties (-D...; -d picks data model) System.setProperty(...) may do what you want.

link|flag
Also, keep in mind that a few system properties won't have any effect if set at runtime. – jsight Sep 18 '08 at 14:57
AND keep in mind that the SecurityManager currently in charge has to agree with you changing them System properties... – Aleksandar Dimitrov Sep 18 '08 at 16:04
vote up 1 vote down

Questions like this beg for a view of the bigger picture.

What is the over-all objective? Maybe there is a better path....

link|flag
vote up 0 vote down

You can definitely set system properties in a Java stored procedure using System.setProperty(). But, they will only be available to the current Oracle session.

For example, if you connect to Oracle, and run a Java stored procedure that sets system properties, then disconnect from Oracle. When you next connect to Oracle, the system property will not be present. Each session with Oracle has its own pseudo-separate JVM (even though all sessions really share a single JVM).

If the account you are using for your Oracle session has sufficient rights, you can run external operating system commands including a separate, external JVM.

link|flag
vote up 0 vote down

You can change a system property using System.setProperty(), but whether or not this has an effect really depends on that system property. Some properties are read statically, i.e. at class loading time, and others might cache the value in some object field.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.