Property | Description |
Parameter type | Integer |
Default value |
|
Modifiable | No |
Range of values | 0 to 2 GB - 1 |
Basic | No |
Java session space is the memory that holds Java state from one database call to another. JAVA_MAX_SESSIONSPACE_SIZE
specifies (in bytes) the maximum amount of session space made available to a Java program executing in the server. When a user's session-duration Java state attempts to exceed this amount, the Java virtual machine kills the session with an out-of-memory failure.
Note:
1. Related parameter: JAVA_MAX_SESSIONSPACE_LIMIT
This parameter is hidden in Oracle8i.
2. Query for the current value of the parameter
select name, value, isdefault, isses_modifiable, issys_modifiable,
isinstance_modifiable, isdeprecated, description
from v$parameter
where upper(name) = ‘JAVA_MAX_SESSIONSPACE_SIZE’;
NAME | VALUE | IS DEFAULT | ISSES_ MODIFIABLE | ISSYS_ MODIFIABLE | ISINSTANCE_ MODIFIABLE | IS DEPRECATED | DESCRIPTION |
java_max_sessionspace_size | 0 | TRUE | FALSE | FALSE | FALSE | FALSE | max allowed size in bytes of a Java sessionspace |
No comments:
Post a Comment