Oracle 视图 DBA_HOST_ACES 官方解释,作用,如何使用详细说明
本站中文解释
DBA_HOST_ACES视图,也叫DBA_DB_ACL视图,是一个data dictionary视图,用于显示数据库的远程访问权限。它记录了哪些主机(或其它网络计算机)可以访问该数据库,并列出了连接到该数据库的允许和拒绝列表,以及设置的每个计算机上应用的安全级别。
DBA_HOST_ACES视图可以被用来查询哪些主机受信任访问数据库,以及限制这些主机的访问限制。它也可以用来添加新的连接或更改以前的连接。
可以通过以下查询使用DBA_HOST_ACES视图:
SELECT * FROM DBA_HOST_ACES
WHERE HOST LIKE ”;
该查询将列出给定主机列表,以及该主机的访问规则和安全级别。
在新添加一个连接或更改以前的连接时,可以使用以下语句:
ALTER SYSTEM SET
HOST=,
ACCESS_CONTROL_LIST = ”,
SECURITY_LEVEL = ;
该语句可以用来添加新的主机列表,并可以指定要应用的访问控制列表和安全级别。
官方英文解释
DBA_HOST_ACES
describes access control entries defined in host access control lists.
Related View
USER_HOST_ACES
describes the status of access control entries for the current user to access network hosts through PL/SQL network utility packages. This view does not display the ACE_ORDER
, START_DATE
, END_DATE
, GRANT_TYPE
, INVERTED_PRINCIPAL
, PRINCIPAL
, or PRINCIPAL_TYPE
columns.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Network host |
|
|
Lower bound of the port range |
|
|
|
Upper bound of the port range |
|
|
|
|
Order number of the access control entry |
|
|
Start date of the access control entry |
|
|
|
End date of the access control entry |
|
|
|
Indicates whether the access control entry grants or denies the privilege |
|
|
|
Indicates whether the principal is inverted or not |
|
|
|
Principal the privilege is applied to |
|
|
|
Type of the principal |
|
|
|
Privilege |
See Also:
“USER_HOST_ACES”