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