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

本站中文解释

ALL_EXTERNAL_LOCATIONS是一个系统视图,该视图的全称是ALL_EXTERNAL_LOCATIONS,它显示当前用户上下文下的所有外部表位。该视图包含了向外部表访问所需信息。该视图可通过以下SELECT语句进行查询:
SELECT * FROM ALL_EXTERNAL_LOCATIONS;

ALL_EXTERNAL_LOCATIONS视图可在如下情况下使用,例如:
1、用户想获取关联到外部函数(External function)、外部过程(External procedure)和外部表(External table)上所有位置的列表(list)。
2、用户可以使用该视图来检查哪些外部位置与用户相关联。
3、当用户需要查找特定的位置信息时,该视图也可以帮助提供这些信息。
4、当用户需要更改特定的位置信息时,可以使用ALL_EXTERNAL_LOCATIONS视图来完成。

官方英文解释

ALL_EXTERNAL_LOCATIONS describes the locations (data sources) of the external tables accessible to the current user.

Related Views

  • DBA_EXTERNAL_LOCATIONS describes the locations (data sources) of all external tables in the database.

  • USER_EXTERNAL_LOCATIONS describes the locations (data sources) of the external tables owned by the current user. This view does not display the OWNER column.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner of the external table location

TABLE_NAME

VARCHAR2(128)

NOT NULL

Name of the corresponding external table

LOCATION

VARCHAR2(4000)

External table location clause

DIRECTORY_OWNER

CHAR(3)

Owner of the directory containing the external table location

DIRECTORY_NAME

VARCHAR2(128)

Name of the directory containing the external table location

See Also:

  • “DBA_EXTERNAL_LOCATIONS”

  • “USER_EXTERNAL_LOCATIONS”


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