Oracle 视图 DBA_WORKLOAD_SCHEDULE_CAPTURES 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图 DBA_WORKLOAD_SCHEDULE_CAPTURES 用于捕获 Oracle 数据库中的工作负载任务配置,以便更快速的发现和解决问题。此视图用来检索详细的有关已捕获任务的信息,包括在何时捕获任务、在何处捕获任务和任务的内容等。
使用示例:
–查询已捕获任务
SELECT * FROM DBA_WORKLOAD_SCHEDULE_CAPTURES;
–查询最近捕获工作量数据记录
SELECT * FROM DBA_WORKLOAD_SCHEDULE_CAPTURES
ORDER BY LAST_CAPTURE_TIME DESC;
官方英文解释
DBA_WORKLOAD_SCHEDULE_CAPTURES
displays the workload captures used by replay schedules.
Each row in the view contains information about one workload capture.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
The name of a schedule to be replayed |
|
|
|
Identifies a workload capture added to a replay schedule. It starts with |
|
|
|
Points to the capture ID from |
|
|
|
Name of the directory object for workload capture |
|
|
|
Name of the subdirectory under the replay directory for this workload capture |
|
|
The maximal number of concurrent sessions that was seen in this workload capture |
|
|
|
Number of clients assigned to this workload capture before replay starts |
|
|
|
Number of clients that are running for this workload capture during replay |
|
|
|
Number of clients that have finished the replay of this workload capture |
|
|
|
|
Indicates whether the whole replay will stop once the replay of this workload capture is done ( |
|
|
|
Indicates whether an AWR snapshot will be taken when the replay of this capture starts ( |
|
|
|
Indicates whether an AWR snapshot will be taken when the replay of this capture finishes ( |
|
|
|
Indicates whether only the query-only workload from the current workload capture will be replayed, skipping all the DML/DDL that might update the database ( |
|
|
Displays the wait time (in seconds) when the replay of a workload capture is ready to start. “Ready to start” means the capture does not wait for any other capture, or all the captures for which it should wait have already been replayed. The default value is 0. |
|
|
|
Start time for the replay of this capture |
|
|
|
Finish time for the replay of this capture |
|
|
|
AWR database ID of the replay |
|
|
|
AWR snapshot ID when the replay starts |
|
|
|
AWR snapshot ID when the replay finishes |
|
|
|
Number of workload replay clients aborted during the replay |