Oracle DBMS_NETWORK_ACL_UTILITY
Version 26ai

General Information
Library Note Morgan's Library Page Header
The best Oracle News for FY2026

Oracle Database 26ai will be available on generic Linux platforms in January and soon on AIX and Windows
Purpose Provides utility functions that facilitate managing network access permissions.
AUTHID DEFINER
Data Types TYPE domain_table IS TABLE OF VARCHAR2(1000);
Dependencies
DBMS_NETWORK_ACL_ADMIN    
Documented Yes: Packages and Types Reference
Exceptions
Error Code Reason
ORA-24247 Access Denied
First Available 11.1
Security Model Owned by SYS with EXECUTE granted to PUBLIC
Source {$ORACLE_HOME}/rdbms/admin/dbmsnacl.sql
Subprograms
 
CONTAINS_HOST
Undocumented dbms_network_acl_utility.contains_host(
host   IN VARCHAR2,
domain IN VARCHAR2)
RETURN NUMBER DETERMINISTIC;
pragma interface(C, contains_host);
set serveroutput on

DECLARE
 x NUMBER;
BEGIN
  x := dbms_network_acl_utility.contains_host('192.168.1.119', 'mlib.org');
  dbms_output.put_line(x);
END;
/
 
DOMAINS
For a given host, return the domains whose ACL assigned will be used to determine if a user has the privilege to access the given host or not. When the IP address of the host is given, return the subnets instead. dbms_network_acl_utility.domains(host IN VARCHAR2)
RETURN domain_table PIPELINED;
SELECT * FROM TABLE(dbms_network_acl_utility.domains('192.168.1.119'));

COLUMN_VALUE
-----------------------------------------------------------------------
192.168.1.119
192.168.1.*
192.168.*
192.*
*
 
DOMAIN_LEVEL
Return the domain level of the given host name, domain, or subnet dbms_network_acl_utility.domain_level(host IN VARCHAR2)
RETURN NUMBER DETERMINISTIC;
SELECT dbms_network_acl_utility.domain_level('192.168.1.119');

DBMS_NETWORK_ACL_UTILITY.DOMAIN_LEVEL('192.168.1.119')
------------------------------------------------------
                                                     4
 
EQUALS_HOST
Undocumented dbms_network_acl_utility.equals_host(
host1 IN VARCHAR2,
host2 IN VARCHAR2)
RETURN NUMBER DETERMINISTIC;
pragma interface(C, equals_host);
set serveroutput on

DECLARE
 x NUMBER;
BEGIN
  x := dbms_network_acl_utility.contains_host('192.168.1.119', '192.168.1.120');
  dbms_output.put_line(x);
END;
/
32

Related Topics
Built-in Functions
Built-in Packages
DBMS_NETWORK_ACL_ADMIN
UTL_HTTP
UTL_INADDR
UTL_MAIL
UTL_SMTP
UTL_TCP
XS_ACL
XS_ACL_INT
What's New In 21c
What's New In 26ai

Morgan's Library Page Footer
This site is maintained by Daniel Morgan. Last Updated: This site is protected by copyright and trademark laws under U.S. and International law. © 1998-2026 Daniel A. Morgan All Rights Reserved