In Database Sessions we have a long running session related to Business Reporter scheduled report that we wish to kill.
The session id in Database Sessions is 642:
However, on RMB > Kill Session we receive the following error:
I cannot see the session in Monitor Sessions in SQL Developer but can see the session when doing select from v$session :
select * from v$session where sid = '642' ;
Using the SID and SERIAL# I tried to kill the session:
ALTER SYSTEM KILL SESSION '642,12109'
I receive the following error:
Error report -
ORA-00026: missing or invalid session ID
00026. 00000 - "missing or invalid session ID"
*Cause: Missing or invalid session ID string for the current operation.
*Action: Retry with a valid session ID.
Obviously, can see the session in FND_SESSION_RUNTIME
How can I kill this session when it isn’t reported in Monitor Sessions and any attempt to kill the session report in the missing or invalid session id?