Tuesday, December 19, 2017

Killing a Session on AWS RDS

--
-- Killing a Session on AWS RDS
--
-- On AWS RDS you do not have access to the server or 
--to a proper SYSDBA account.  
-- As a result you are defendant on lots of AWS RDS packages.
-- Or in some instances, you need to find new ways of 
--achieving the same thing
--
 
begin
    rdsadmin.rdsadmin_util.kill(
        sid    => &sid, 
        serial => &serial_number,
        method => 'IMMEDIATE');
end;
/

No comments: