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

本站中文解释

Oracle视图DBA_LOGSTDBY_PLSQL_SUPPORT用于报告哪些存储过程支持在基点保护模式日志应用程序期间由LOGSTDBY管理器运行

此视图以传统方式为拥有足够权限的DBA提供了报告用户定义的存储过程的基础。DBA可以根据此视图,使用LOGSTDBY管理器复制过程,以允许基点保护模式下的备份应用程序。

如何使用:
为使用DBA_LOGSTDBY_PLSQL_SUPPORT,需要:
1、创建一个会话拥有DBA权限,以便能够查看拥有的存储过程和函数等。
2、然后使用SELECT * FROM DBA_LOGSTDBY_PLSQL_SUPPORT语句收集所有可用的存储过程、函数。
3、使用ALTER SESSION && SET LOGSTDBY特征运行备份程序:

alter session set logstdby=”;
run &&&& -s standby_process_name

官方英文解释

DBA_LOGSTDBY_PLSQL_SUPPORT shows the PL/SQL packages that are only supported during rolling operations.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner name of the package

PKG_NAME

VARCHAR2(128)

Package name of the user invokable procedure

SUPPORT_LEVEL

VARCHAR2(12)

Logical standby PL/SQL support level for the package:

  • ALWAYS – PL/SQL replication is always supported for this package, whether it is called inside or outside of DBMS_ROLLING

  • DBMS_ROLLING: PL/SQL replication is supported only when the procedure is called inside DBMS_ROLLING

Note:

In a CDB, this view shows data when queried in the root or a PDB.

See Also:

Oracle Database PL/SQL
Packages and Types Reference
for more information about the DBMS_ROLLING package


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