How to resolve the ORA-00031 (session marked for kill)
* select
spid,
osuser,
s.program
from v$process p,
v$session s
where p.addr=s.paddr and osuser = 'user_name'
/
you will fetch the spid to be killed through Operating system promt
In Linux through kill -9 command kill the process fetched from the above query.
KEEP ENJOYING
No comments:
Post a Comment