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

本站中文解释

Oracle视图DBA_REGISTRY_SCHEMAS显示了字典对象上被外部程序引用的模式列表。 它可以用来查看每个模式的外部名称、外部资源和外部程序的URL(通常是JAR文件的位置)。查看此视图可以帮助DBA更准确地了解外部程序引用的哪些模式及外部名称,以及它们在何处发布。

要查看视图DBA_REGISTRY_SCHEMAS中的内容,可以使用SELECT命令:

SELECT * FROM DBA_REGISTRY_SCHEMAS;

官方英文解释

DBA_REGISTRY_SCHEMAS lists the primary and ancillary schemas included in the component registry. The ancillary schemas that are listed in this view are the same schemas that would be included in the OTHER_SCHEMAS column of the DBA_REGISTRY view.

Column Datatype NULL Description

NAMESPACE

VARCHAR2(30)

Component namespace

COMP_ID

VARCHAR2(30)

Component identifier

SCHEMA

VARCHAR2(128)

User that contains the objects for the component

See Also:

  • “DBA_REGISTRY”

  • “USER_REGISTRY”


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