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_SOFT_SESSIONSPACE_LIMIT
specifies (in bytes) a soft limit on Java memory usage in a session, as a means to warn you if a user's session-duration Java state is using too much memory. When a user's session-duration Java state exceeds this size, Oracle generates a warning that goes into the trace files.
Note:
1. Related parameter: _JAVA_MAX_SESSIONSPACE_SIZE
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_SOFT_SESSIONSPACE_LIMIT’;
NAME | VALUE | IS DEFAULT | ISSES_ MODIFIABLE | ISSYS_ MODIFIABLE | ISINSTANCE_ MODIFIABLE | IS DEPRECATED | DESCRIPTION |
java_soft_sessionspace_limit | 0 | TRUE | FALSE | FALSE | FALSE | FALSE | warning limit on size in bytes of a Java sessionspace |
No comments:
Post a Comment