Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Read Only User

RE: Read Only User

From: Juan Carlos Reyes Pacheco <jreyes_at_dazasoftware.com>
Date: Thu, 16 Dec 2004 16:47:00 -0400
Message-Id: <41C1F444.00000B.01400@JREYES>

Can't drop a connected user last time I checked, you need to kill session, then drop, may require a DBMS_JOB call to accomplish, watch out for the bug which causes jobs not to run, been hitting that one today on some other things. We are getting into borderline virus writing here, I am sure Pete can tell us a few easy ways to deliver the payload.  

Thanks, fixing, I think this will work.

CREATE TRIGGER FON.SADFASDF
AFTER
LOGON
ON DATABASE
.
WHEN USER='MLADEN' THEN

     REVOKE ALL ROLES FROM MADLEN;
     CREATE JOB 'DROP USER MLADEN';


/
:)

--
http://www.freelists.org/webpage/oracle-l
Received on Thu Dec 16 2004 - 14:51:24 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US