Thank you for visiting Spatial DBA - Oracle and ArcSDE.
Please visit Oracle DBA Tips (http://www.oracledbatips.com) for more Oracle DBA Tips.
====================================================================
Column
|
Datatype
|
NULL
|
Description
|
HOST
|
VARCHAR2(1000)
|
NOT NULL
|
Network host
|
LOWER_PORT
|
NUMBER(5)
|
Lower bound of the port range
| |
UPPER_PORT
|
NUMBER(5)
|
Upper bound of the port range
| |
ACL
|
VARCHAR2(4000)
|
Path of the access control list
| |
ACLID
|
RAW(16)
|
NOT NULL
|
Object ID of the access control list
|
DBMS_NETWORK_ACL_ADMIN.CREATE_ACL (
acl => ’file_name.xml’,
description => ’file description’,
principal => ’user_or_role’,
is_grant => TRUE|FALSE,
privilege => ’connect|resolve’,
start_date => null|timestamp_with_time_zone,
end_date => null|timestamp_with_time_zone);
END;
DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL (
acl => ’file_name.xml’,
host => ’network_host’,
lower_port => null|port_number,
upper_port => null|port_number);
END;