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

本站中文解释

Oracle视图DBA_GG_SUPPORTED_PACKAGES用于查询当前安装的GoldenGate支持的存储过程的全部信息,包括模式、包名称、版本和OS,等信息。

使用方法:

1. 登录Oracle数据库,并切换到SYSTEM用户状态下。使用下列语句将gg_support包发布到相应的用户:

EXEC DBMS_GG_SUPPORT.PUBLISH;

2. 使用下列语句查询Oracle视图 DBA_GG_SUPPORTED_PACKAGES:

select * from DBA_GG_SUPPORTED_PACKAGES;

3. 执行查询结果返回信息,其中包括模式、包名称、版本和OS,等信息。

官方英文解释

DBA_GG_SUPPORTED_PACKAGES provides details about supported procedure packages for Oracle GoldenGate replication.

Column Datatype NULL Description

OWNER

VARCHAR2(384)

NOT NULL

Procedure package owner

NAME

VARCHAR2(384)

NOT NULL

Procedure package name

FEATURE

VARCHAR2(384)

NOT NULL

DBMS feature that the procedure package belongs to

MIN_DB_VERSION

VARCHAR2(100)

Minimum database version for the supported package

MAX_DB_VERSION

VARCHAR2(100)

Maximum database version for the supported package

MIN_REDO_COMPAT_LEVEL

VARCHAR2(100)

Minimum redo compatibility for the supported package

MAX_REDO_COMPAT_LEVEL

VARCHAR2(100)

Maximum redo compatibility for the supported package

SUPPORTED_LEVEL

VARCHAR2(100)

Supported level of the package


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