Sometimes Jobs run in background and they may not be visible in session viewer
Use below SQL to kill jobs
To get list of jobs running
Select sid,d.*
from dba_jobs_running r,dba_jobs d
where r.job = d.job
For SID from above query, Get Serial# from v$ v$session
select * from v$session
where sid in 138
ALTER SYSTEM KILL SESSION '138,19296';
Alter session kill session 'SID,SERIAL#'
No comments:
Post a Comment