Oracle Database - FAQ DBA Related Queries
Run below queries to check the Inactive sessions in Oracle database.
Login from "sys as SYSDBA" option from any client tool(SQL developer)
--Below command use to keep password life unlimited, Password won't expire
ALTER PROFILE DEFAULT limit password_life_time UNLIMITED;
--Increase the process and job queue process values
show parameter process;
show parameter spfile;
show con_name;
alter system set PROCESSES=1000 scope = spfile;
alter system set job_queue_processes=500 scope = spfile;
Comments
Post a Comment