Get list of session active in oracle
you can get the list of active session from v$session table;
select 'alter system kill session '''|| sid ||',', serial#||'''' from v$session;
Kill the active session in oracle
below statement will kill the live session.
alter system kill session '325,250';
No comments:
Post a Comment