principal
を置き換えます データベースのユーザー名を使用した引数- 解決権限も追加します
- 冗長な
begin..end
を使用する ブロックは不要です。
したがって、以下のものの使用を検討してください:
-- create acl
begin
dbms_network_acl_admin.create_acl (
acl => 'gmail.xml',
description => 'Normal Access',
principal => 'DB_USER',
is_grant => TRUE,
privilege => 'connect',
start_date => null,
end_date => null);
-- add priviliege to acl
dbms_network_acl_admin.add_privilege (
acl => 'gmail.xml',
principal => 'DB_USER',
is_grant => TRUE,
privilege => 'connect',
start_date => null,
end_date => null);
dbms_network_acl_admin.add_privilege (
acl => 'gmail.xml',
principal => 'DB_USER',
is_grant => TRUE,
privilege => 'resolve',
start_date => null,
end_date => null);
-- assign host, port to acl
dbms_network_acl_admin.assign_acl (
acl => 'gmail.xml',
host => 'localhost',
lower_port => 25,
upper_port => 25);
end;
/