Reputation: 7394
How can I test what the current setting for the IDLE_TIME
setting is within my oracle
database?
Upvotes: 3
Views: 12725
Reputation:
Each profile has an IDLE_TIME
, so it is not clear what you mean by "the" IDLE_TIME
.
On my system:
select *
from DBA_PROFILES
where resource_name = 'IDLE_TIME'
;
PROFILE RESOURCE_NAME RESOURCE_TYPE LIMIT COMMON
-------------------- --------------- --------------- --------------- ------
DEFAULT IDLE_TIME KERNEL UNLIMITED NO
ORA_STIG_PROFILE IDLE_TIME KERNEL 15 NO
2 rows selected.
Upvotes: 0
Reputation: 2118
If you're talking about IDLE_TIME in the user profiles, then it depends on the username.
select dbms_metadata.get_ddl('PROFILE', u.profile)
from dba_users u
where u.username = :v_username;
You can use the ALTER PROFILE statement to change it if you have the privileges.
Upvotes: 2