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

本站中文解释

Oracle视图V$EXP_STATS是一个只读视图,显示当前正在运行的export操作的统计信息。

V$EXP_STATS中有八个参数列:

1. EXP_STAT_ID:描述export操作的ID。

2. STATISTIC_NAME:记录的统计值的参数名称。

3. VALUE:记录的统计值。

4. MIN_VALUE:统计值的最小值。

5. MAX_VALUE:统计值的最大值。

6. ELAPSED_TIME:表示总耗费的时间(单位为秒)。

7. MAX_ELAPSED_TIME:最长完成时间(单位为秒)。

8. START_TIME:开始时间。

使用方法:

在SQL *Plus环境下,输入以下语句:

SELECT * FROM V$EXP_STATS WHERE EXP_STAT_ID = 指定的ID;

其中,指定的ID是export操作的ID。

官方英文解释

V$EXP_STATS stores the expression tracking statistics of recently executed queries.

Column Datatype Description

EXPID

NUMBER

Expression ID of the current expression

OBJNUM

NUMBER

The object number contained in the expression

DYNCOST

NUMBER

Optimizer dynamic cost of evaluating the expression

EVALCNT

NUMBER

Number of times the expression has been evaluated

CON_ID

NUMBER

The ID of the container to which the data pertains. Possible values include:

  • 0: This value is used for rows containing data that pertain to the entire CDB. This value is also used for rows in non-CDBs.

  • 1: This value is used for rows containing data that pertain to only the root

  • n: Where n is the applicable container ID for the rows containing data

See Also:

  • “ALL_EXPRESSION_STATISTICS”

  • “DBA_EXPRESSION_STATISTICS”

  • “ALL_EXPRESSION_STATISTICS”


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