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

本站中文解释

Oracle视图DBA_WI_CAPTURE_FILES是在Oracle数据库中用来查看和管理Oracle GoldenGate数据捕获文件的一种视图。

此视图包含有关捕获文件的信息,包括捕获文件名称、来源实例、起始SCN、偏移量、捕获时间等信息,可以方便的追踪Oracle GoldenGate的工作过程,以帮助DBA管理OGG数据捕获活动和过程。

使用此视图时,可以在Oracle数据库中执行下列查询。

— 查看有哪些捕获文件

SELECT distinct * FROM DBA_WI_CAPTURE_FILES ORDER BY capture_file_name;

— 查看捕获文件的SUM信息

SELECT CAPTURE_FILE_NAME, SUM(CAPTURE_FILE_SIZE) AS CAPTURE_FILE_SIZE_TOTAL
FROM DBA_WI_CAPTURE_FILES
GROUP BY CAPTURE_FILE_NAME
ORDER BY CAPTURE_FILE_NAME;

官方英文解释

Each row in DBA_WI_CAPTURE_FILES represents a capture file that belongs to the workload analyzed in the current Workload Intelligence job.

Column Datatype NULL Description

JOB_ID

NUMBER

NOT NULL

The identifier of the job in the workload to which the given capture file belongs

FILE_ID

NUMBER

NOT NULL

The identifier of the current capture file

FILE_PATH

VARCHAR2(4000)

NOT NULL

The path of the current capture file


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