I want to upgrade Oracle APEX 5.0 to 5.1. In the access control stage, an error shows in the oracle database 11gR2.
BEGIN
DBMS_NETWORK_ACL_ADMIN.APPEND_HOST_ACE (
HOST => '*',
ace => xs$ace_type (privilege_list => xs$name_list ('connect'),
principal_name => 'APEX_050100',
principal_type => xs_acl.ptype_db)
);
END;
/
The following error show in XS$ACE_TYPE
ERROR at line 4:
ORA-06550: line 4, column 8:
PLS-00201: identifier 'XS$ACE_TYPE' must be declared
ORA-06550: line 2, column 1:
PL/SQL: Statement ignored
Give a try - worked for me :
Step 1:
Step 2: Conn as sysdba conn / as sysdba
Step 3:
Step 4:
Step 5:
Reference : https://mohamedazar.com/2015/11/26/ora-24247-network-access-denied-by-access-control-list-acl/