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 |
---|---|---|
|
|
Expression ID of the current expression |
|
|
The object number contained in the expression |
|
|
Optimizer dynamic cost of evaluating the expression |
|
|
Number of times the expression has been evaluated |
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
-
“ALL_EXPRESSION_STATISTICS”
-
“DBA_EXPRESSION_STATISTICS”
-
“ALL_EXPRESSION_STATISTICS”