Oracle 视图 V$EXADIRECT_ACL 官方解释,作用,如何使用详细说明

本站中文解释

V$EXADIRECT_ACL视图存储了有关Exadata Storage Server上可以访问异步I/O路径的ACL信息。

这个视图可以用来查询Exadata Storage Server上的ACL的信息,如IP访问掩码和端口,从而可以更改ACL以允许访问数据库文件和日志文件。

要使用这个视图,您需要切换到EXA_USR权限,这是一个EXA_ROLE,因此可以更改文件夹的访问许可。

例如,要切换到EXA_USR角色,您可以执行以下命令:

SQL> EXECUTE dbms_session.set_role(‘EXA_USR’);

然后,您可以使用以下SQL查询来查看Exadata Storage Server上的ACL信息:

SELECT * FROM V$EXADIRECT_ACL;

接下来,您可以使用ALTER DISKGROUP ACL语句来调整ACL:

ALTER DISKGROUP diskgroup_name ACL=(ipaddress1_or_hostname1/ mask1,ipaddress2/mask2, …..);

例如:

ALTER DISKGROUP data_diskgroup ACL=(172.x.x.x/255.255.255.255);

这将允许此IP地址访问所有异步I/0路径。

官方英文解释

V$EXADIRECT_ACL monitors current ACLs propagated to the database instance.

Column Datatype Description

SERVICE_NAME

VARCHAR2(512)

Database service name

SGID

VARCHAR2(39)

Identifier of the VM allowed access to the specified service name

CON_ID

NUMBER

The ID of the container to which the data pertains. Possible values include:

  • 0: This value is used for rows containing data that pertain to the entire CDB. This value is also used for rows in non-CDBs.

  • 1: This value is used for rows containing data that pertain to only the root

  • n: Where n is the applicable container ID for the rows containing data


数据运维技术 » Oracle 视图 V$EXADIRECT_ACL 官方解释,作用,如何使用详细说明