Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

HOW TO REMOVE A USER FROM AN ACL

user8869798Jun 9 2015 — edited Jun 10 2015

Hi,

I mistakingly added the default  user ORACLE_OCM to an ACL using:

BEGIN

DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE

('acl.xml','ORACLE_OCM',TRUE,'connect');

commit;

end;

/


I have tried the following :


Begin

  DBMS_NETWORK_ACL_ADMIN.DELETE_PRIVILEGE ('acl.xml','ORACLE_OCM',FALSE,'connect');

  commit;

  end;

/


The procedure completed successfully. However the following query still returns the user with the 'connect' privilege on the list


select principal, acl, privilege from dba_network_acl_privileges;


PRINCIPAL        ACL                             PRIVILEGE

-------------------- ----------------------------------- ----------

ORACLE_OCM       /sys/acls/acl.xml    connect

Please advise on how to take this off.

thank you.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 8 2015
Added on Jun 9 2015
5 comments
4,518 views