today:
47
yesterday:
191
Total:
998,394

General CREATE_ACL (1st STEP)

admin 2016.06.07 09:43 Views : 305

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;
/