today:
126
yesterday:
242
Total:
1,004,284

General CREATE_ACL (1st STEP)

admin 2016.06.07 09:43 Views : 314

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