today:
125
yesterday:
139
Total:
993,462

General CREATE_ACL (1st STEP)

admin 2016.06.07 09:43 Views : 286

BEGIN
   DBMS_NETWORK_ACL_ADMIN.CREATE_ACL (
    acl          => 'recapcha.xml',
    description  => 'Permissions to access http://www.google.com',
    principal    => 'PYANGWORK',
    is_grant     => TRUE,
    privilege    => 'connect');
   COMMIT;
END;
/