Oracle 视图 USER_EXTERNAL_LOCATIONS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图”user_external_locations”用于保存表示外部表存储位置的记录。它与数据字典视图user_external_tables关联,指示一个用户的所有外部表的信息。
用户可以通过查询这个视图来获取外部表存储位置的信息,这样他们就可以追踪外部表的数据。
用法:
SELECT *
FROM appuser.user_external_locations;
以上查询从表中检索所有元组,即外部表存储位置的记录,并显示它们的详细信息。
官方英文解释
USER_EXTERNAL_LOCATIONS
describes the locations (data sources) of the external tables owned by the current user. Its columns (except for OWNER
) are the same as those in ALL_EXTERNAL_LOCATIONS
.
See Also:
“ALL_EXTERNAL_LOCATIONS”