DB2 Version 10.1 for Linux, UNIX, and Windows

MON_GET_WORKLOAD_DETAILS table function - Get detailed workload metrics

The MON_GET_WORKLOAD_DETAILS table function returns detailed metrics for one or more workloads.

Syntax

Read syntax diagramSkip visual syntax diagram
>>-MON_GET_WORKLOAD_DETAILS--(--workload_name--,--member--)----><

The schema is SYSPROC.

Table function parameters

workload_name
An input argument of type VARCHAR(128) that specifies a specific workload for which the metrics are to be returned. If the argument is NULL or an empty string, metrics are returned for all workloads.
member
An input argument of type INTEGER that specifies a valid member in the same instance as the currently connected database when calling this function. Specify -1 for the current database member, or -2 for all active database members. If the NULL value is specified, -1 is set implicitly.

Authorization

One of the following authorities is required to execute the routine:
  • EXECUTE privilege on the routine
  • DATAACCESS authority
  • DBADM authority
  • SQLADM authority

Default PUBLIC privilege

None

Example

Display lock information for each workload, aggregated across members, ordered by highest lock wait time.

SELECT varchar(wlmetrics.workload_name,30) as workload_name,
       sum(detmetrics.lock_wait_time) as total_lock_wait_time,
       sum(detmetrics.lock_waits) as total_lock_waits,
       sum(detmetrics.lock_timeouts) as total_lock_timeouts,
       sum(detmetrics.lock_escals) as total_lock_escals
FROM TABLE(MON_GET_WORKLOAD_DETAILS('',-2)) AS WLMETRICS,
XMLTABLE (XMLNAMESPACES( DEFAULT 'http://www.ibm.com/xmlns/prod/db2/mon'),
           '$detmetric/db2_workload' PASSING 
           XMLPARSE(DOCUMENT WLMETRICS.DETAILS) 
           as "detmetric"
COLUMNS "LOCK_WAIT_TIME" INTEGER PATH 'system_metrics/lock_wait_time',
        "LOCK_WAITS" INTEGER PATH 'system_metrics/lock_waits',
        "LOCK_TIMEOUTS" INTEGER PATH 'system_metrics/lock_timeouts',
        "LOCK_ESCALS" INTEGER PATH 'system_metrics/lock_escals'
) AS DETMETRICS
GROUP BY workload_name
ORDER BY total_lock_wait_time desc;

The following is an example of output from this query.

WORKLOAD_NAME                  TOTAL_LOCK_WAIT_TIME TOTAL_LOCK_WAITS ... 
------------------------------ -------------------- ---------------- ... 
SYSDEFAULTADMWORKLOAD                             0                0 ... 
SYSDEFAULTUSERWORKLOAD                            0                0 ... 

  2 record(s) selected.

Output for query (continued).

... TOTAL_LOCK_TIMEOUTS TOTAL_LOCK_ESCALS
... ------------------- -----------------
...                   0                 0
...                   0                 0

Usage notes

The metrics returned by the MON_GET_WORKLOAD_DETAILS function represent the accumulation of all metrics for requests that were submitted by connections mapped to the identified workload object. This function is similar to the MON_GET_WORKLOAD table function:
  • The MON_GET_WORKLOAD table function returns the most commonly used metrics in a column-based format and is the most performance efficient method of retrieving metrics.
  • The MON_GET_WORKLOAD_DETAILS table function returns the entire set of available metrics in an XML document format, which provides maximum flexibility for formatting output. The XML based output can be parsed directly by an XML parser, or it can be converted to relational format by the XMLTABLE function (see the example).

Metrics are rolled up to a workload on unit of work boundaries, and periodically during the execution of requests. Therefore, the values reported by this table function reflect the current state of the system at the time of the most recent rollup. Metrics are strictly increasing in value. To determine the value of a given metric for an interval of time, use the MON_GET_WORKLOAD_DETAILS table function to query the metric at the start and end of the interval, and compute the difference.

Request metrics are controlled through the COLLECT REQUEST METRICS clause on service superclasses and the mon_req_metrics database configuration parameter at the database level. Metrics are only collected for a request if the request is processed by an agent in a service subclass whose parent service superclass has request metrics enabled, or if request metrics collection is enabled for the entire database. By default request metrics are enabled at the database level. If request metrics have been disabled at the database level, and for a service superclass, the metrics reported for each workload mapped to that service superclass stop increasing (or remain at 0 if request metrics were disabled at database activation time).

The MON_GET_WORKLOAD_DETAILS table function returns one row of data per workload and per member. No aggregation across workloads (on a member), or across members (for a service class or more), is performed. However, aggregation can be achieved through SQL queries as shown in the example.

The schema for the XML document that is returned in the DETAILS column is available in the file sqllib/misc/DB2MonRoutines.xsd. Further details can be found in the file sqllib/misc/DB2MonCommon.xsd.

Information returned

Table 1. Information returned for MON_GET_WORKLOAD_DETAILS
Column Name Data Type Description
WORKLOAD_NAME VARCHAR(128) workload_name - Workload name
WORKLOAD_ID INTEGER workload_id - Workload ID
MEMBER SMALLINT member- Database member
DETAILS BLOB(1M) XML document that contains detailed metrics for the workload. See Table 2 for a description of the elements in this document.
The following example shows the structure of the XML document that is returned in the DETAILS column.
<db2_workload xmlns="http://www.ibm.com/xmlns/prod/db2/mon" release="90700000">
   <workload_name>SYSDEFAULTADMWORKLOAD</workload_name>
   <workload_id>11</workload_id>
   <member>0</member>
   <system_metrics release="90700000">
   <act_aborted_total>5</act_aborted_total>
    ...
   <wlm_queue_assignments_total>3</wlm_queue_assignments_total>
   </system_metrics>
</db2_workload>
For the full schema, see sqllib/misc/DB2MonRoutines.xsd.
Table 2. Detailed metrics returned for MON_GET_WORKLOAD_DETAILS
Element Name Data Type Description or corresponding monitor element
act_aborted_total xs:nonNegativeInteger act_aborted_total - Total aborted activities
act_completed_total xs:nonNegativeInteger act_completed_total - Total completed activities
act_rejected_total xs:nonNegativeInteger act_rejected_total - Total rejected activities
act_rqsts_total xs:nonNegativeInteger

act_rqsts_total - Total activity requests

agent_wait_time xs:nonNegativeInteger agent_wait_time - Agent wait time
agent_waits_total xs:nonNegativeInteger agent_waits_total - Total agent waits
app_act_aborted_total xs:nonNegativeInteger app_act_aborted_total - Total failed external coordinator activities monitor element
app_act_completed_total xs:nonNegativeInteger app_act_completed_total - Total successful external coordinator activities monitor element
app_act_rejected_total xs:nonNegativeInteger app_act_rejected_total - Total rejected external coordinator activities monitor element
app_rqsts_completed_total xs:nonNegativeInteger app_rqsts_completed_total - Total application requests completed
audit_events_total xs:nonNetagiveIngteger audit_events_total - Total audit events
audit_file_write_wait_time xs:nonNegativeInteger audit_file_write_wait_time - Audit file write wait time
audit_file_writes_total xs:nonNegativeInteger audit_file_writes_total - Total Audit files written
audit_subsystem_wait_time xs:nonNegativeInteger audit_subsystem_wait_time - Audit subsystem wait time
audit_subsystem_waits_total xs:nonNegativeInteger audit_subsystem_waits_total - Total audit subsystem waits
cat_cache_inserts xs:nonNegativeInteger cat_cache_inserts - Catalog cache inserts
cat_cache_lookups xs:nonNegativeInteger cat_cache_lookups - Catalog cache lookups
client_idle_wait_time xs:nonNegativeInteger client_idle_wait_time - Client idle wait time
comm_exit_wait_time xs:nonNegativeInteger comm_exit_wait_time - Communication buffer exit wait time monitor element
comm_exit_waits xs:nonNegativeInteger comm_exit_waits - Communication buffer exit number of waits monitor element
deadlocks xs:nonNegativeInteger deadlocks - Deadlocks detected
diaglog_write_wait_time xs:nonNegativeInteger diaglog_write_wait_time - Diag log write time
diaglog_writes_total xs:nonNegativeInteger diaglog_writes_total - Diag log total writes
direct_read_reqs xs:nonNegativeInteger direct_read_reqs - Direct read requests
direct_read_time xs:nonNegativeInteger direct_read_time - Direct read time
direct_reads xs:nonNegativeInteger direct_reads - Direct reads from database
direct_write_reqs xs:nonNegativeInteger direct_write_reqs - Direct write requests
direct_write_time xs:nonNegativeInteger direct_write_time - Direct write time
direct_writes xs:nonNegativeInteger direct_writes - Direct writes to database
disabled_peds xs:long disabled_peds - Disabled partial early distincts
evmon_wait_time xs:nonNegativeInteger evmon_wait_time - Event monitor wait time
evmon_waits_total xs:nonNegativeInteger evmon_waits_total - Event monitor total waits
fcm_message_recv_volume xs:nonNegativeInteger fcm_message_recv_volume - FCM message recv volume
fcm_message_recv_wait_time xs:nonNegativeInteger fcm_message_recv_wait_time - FCM message recv wait time
fcm_message_recv_waits_total xs:nonNegativeInteger fcm_message_recv_waits_total - Number of times spent waiting for FCM reply message monitor element
fcm_message_recvs_total xs:nonNegativeInteger fcm_message_recvs_total - FCM message recvs total
fcm_message_send_volume xs:nonNegativeInteger fcm_message_send_volume - FCM message send volume
fcm_message_send_wait_time xs:nonNegativeInteger fcm_message_send_wait_time - FCM message send wait time
fcm_message_send_waits_total xs:nonNegativeInteger fcm_message_send_waits_total - Number of times spent blocking on an FCM message send monitor element
fcm_message_sends_total xs:nonNegativeInteger fcm_message_sends_total - FCM message sends total
fcm_recv_volume xs:nonNegativeInteger fcm_recv_volume - FCM recv volume
fcm_recv_wait_time xs:nonNegativeInteger fcm_recv_wait_time - FCM recv wait time
fcm_recv_waits_total xs:nonNegativeInteger fcm_recv_waits_total - Number of times spent waiting to receive data through FCM monitor element
fcm_recvs_total xs:nonNegativeInteger fcm_recvs_total - FCM recvs total
fcm_send_volume xs:nonNegativeInteger fcm_send_volume - FCM send volume
fcm_send_wait_time xs:nonNegativeInteger fcm_send_wait_time - FCM send wait time
fcm_send_waits_total xs:nonNegativeInteger fcm_send_waits_total - Number of times spent blocking on an FCM send operation monitor element
fcm_sends_total xs:nonNegativeInteger fcm_sends_total - FCM sends total
fcm_tq_recv_volume xs:nonNegativeInteger fcm_tq_recv_volume - FCM tablequeue recv volume
fcm_tq_recv_wait_time xs:nonNegativeInteger fcm_tq_recv_wait_time - FCM tablequeue recv wait time
fcm_tq_recv_waits_total xs:nonNegativeInteger fcm_tq_recv_waits_total - Number of times spent waiting to receive the next buffer monitor element
fcm_tq_recvs_total xs:nonNegativeInteger fcm_tq_recvs_total - FCM tablequeue recvs total
fcm_tq_send_volume xs:nonNegativeInteger fcm_tq_send_volume - FCM tablequeue send volume
fcm_tq_send_wait_time xs:nonNegativeInteger fcm_tq_send_wait_time - FCM tablequeue send wait time
fcm_tq_send_waits_total xs:nonNegativeInteger fcm_tq_send_waits_total - Number of times spent waiting to send the next buffer monitor element
fcm_tq_sends_total xs:nonNegativeInteger fcm_tq_sends_total - FCM tablequeue send total
ida_recv_wait_time xs:nonNegativeInteger The total amount of time spent waiting to receive data from an in-database analytics process.
ida_recv_volume xs:nonNegativeInteger The total volume of data the database server received from an in-database analytics process. The value is reported in bytes.
ida_recvs_total xs:nonNegativeInteger The total number of times data was received from an in-database analytics process.
ida_send_wait_time xs:nonNegativeInteger The total amount of time spent waiting to send data to an in-database analytics process.
ida_send_volume xs:nonNegativeInteger The total volume of data sent from the database server to an in-database analytics process. The value is reported in bytes.
ida_sends_total xs:nonNegativeInteger The total number of times data was sent to an in-database analytics process.
int_commits xs:nonNegativeInteger int_commits - Internal commits
int_rollbacks xs:nonNegativeInteger

int_rollbacks - Internal rollbacks

ipc_recv_volume xs:nonNegativeInteger ipc_recv_volume - Interprocess communication recv volume
ipc_recv_wait_time xs:nonNegativeInteger ipc_recv_wait_time - Interprocess communication recv wait time
ipc_recvs_total xs:nonNegativeInteger ipc_recvs_total - Interprocess communication recvs total
ipc_send_volume xs:nonNegativeInteger ipc_send_volume - Interprocess communication send volume
ipc_send_wait_time xs:nonNegativeInteger ipc_send_wait_time - Interprocess communication send wait time
ipc_sends_total xs:nonNegativeInteger ipc_sends_total - Interprocess communication send total
lock_escals xs:nonNegativeInteger lock_escals - Number of lock escalations
lock_timeouts xs:nonNegativeInteger lock_timeouts - Number of lock timeouts
lock_wait_time xs:nonNegativeInteger lock_wait_time - Time waited on locks
lock_waits xs:nonNegativeInteger lock_waits - Lock waits
log_buffer_wait_time xs:nonNegativeInteger log_buffer_wait_time - Log buffer wait time
log_disk_wait_time xs:nonNegativeInteger log_disk_wait_time - Log disk wait time
log_disk_waits_total xs:nonNegativeInteger log_disk_waits_total - Log disk waits total
member xs:nonNegativeInteger member- Database member
num_log_buffer_full xs:nonNegativeInteger num_log_buffer_full - Number of full log buffers
num_lw_thresh_exceeded xs:nonNegativeInteger

num_lw_thresh_exceeded - Number of thresholds exceeded

pkg_cache_inserts xs:nonNegativeInteger pkg_cache_inserts - Package cache inserts
pkg_cache_lookups xs:nonNegativeInteger pkg_cache_lookups - Package cache lookups
pool_data_gbp_indep_pages_found_in_lbp xs:nonNegativeInteger pool_data_gbp_indep_pages_found_in_lbp - Group buffer pool independent data pages found in local buffer pool monitor element
pool_data_l_reads xs:nonNegativeInteger pool_data_l_reads - Buffer pool data logical reads
pool_data_p_reads xs:nonNegativeInteger pool_data_p_reads - Buffer pool data physical reads
pool_data_writes xs:nonNegativeInteger pool_data_writes - Buffer pool data writes
pool_failed_async_data_reqs xs:nonNegativeInteger pool_failed_async_data_reqs - Failed data prefetch requests monitor element
pool_failed_async_index_reqs xs:nonNegativeInteger pool_failed_async_index_reqs - Failed index prefetch requests monitor element
pool_failed_async_other_reqs xs:nonNegativeInteger pool_failed_async_other_reqs - Failed non-prefetch requests monitor element
pool_failed_async_temp_data_reqs xs:nonNegativeInteger pool_failed_async_temp_data_reqs - Failed data prefetch requests for temporary table spaces monitor element
pool_failed_async_temp_index_reqs xs:nonNegativeInteger pool_failed_async_temp_index_reqs - Failed index prefetch requests for temporary table spaces monitor element
pool_failed_async_temp_xda_reqs xs:nonNegativeInteger pool_failed_async_temp_xda_reqs - Failed XDA prefetch requests for temporary table spaces monitor element
pool_failed_async_xda_reqs xs:nonNegativeInteger pool_failed_async_xda_reqs - Failed XDA prefetch requests monitor element
pool_index_gbp_indep_pages_found_in_lbp xs:nonNegativeInteger pool_index_gbp_indep_pages_found_in_lbp - Group buffer pool independent index pages found in local buffer pool monitor element
pool_index_l_reads xs:nonNegativeInteger pool_index_l_reads - Buffer pool index logical reads
pool_index_p_reads xs:nonNegativeInteger pool_index_p_reads - Buffer pool index physical reads
pool_index_writes xs:nonNegativeInteger pool_index_writes - Buffer pool index writes
pool_queued_async_data_pages xs:nonNegativeInteger pool_queued_async_data_pages - Data pages prefetch requests monitor element
pool_queued_async_data_reqs xs:nonNegativeInteger pool_queued_async_data_reqs - Data prefetch requests monitor element
pool_queued_async_index_pages xs:nonNegativeInteger pool_queued_async_index_pages - Index pages prefetch requests monitor element
pool_queued_async_index_reqs xs:nonNegativeInteger pool_queued_async_index_reqs - Index prefetch requests monitor element
pool_queued_async_other_reqs xs:nonNegativeInteger pool_queued_async_other_reqs - Non-prefetch requests monitor element
pool_queued_async_temp_data_pages xs:nonNegativeInteger pool_queued_async_temp_data_pages - Data pages prefetch requests for temporary table spaces monitor element
pool_queued_async_temp_data_reqs xs:nonNegativeInteger pool_queued_async_temp_data_reqs - Data prefetch requests for temporary table spaces monitor element
pool_queued_async_temp_index_pages xs:nonNegativeInteger pool_queued_async_temp_index_pages - Index pages prefetch requests for temporary table spaces monitor element
pool_queued_async_temp_index_reqs xs:nonNegativeInteger pool_queued_async_temp_index_reqs - Index prefetch requests for temporary table spaces monitor element
pool_queued_async_temp_xda_pages xs:nonNegativeInteger pool_queued_async_temp_xda_pages - XDA data pages prefetch requests for temporary table spaces monitor element
pool_queued_async_temp_xda_reqs xs:nonNegativeInteger pool_queued_async_temp_xda_reqs - XDA data prefetch requests for temporary table spaces monitor element
pool_queued_async_xda_reqs xs:nonNegativeInteger pool_queued_async_xda_reqs - XDA prefetch requests monitor element
pool_read_time xs:nonNegativeInteger pool_read_time - Total buffer pool physical read time
pool_temp_data_l_reads xs:nonNegativeInteger pool_temp_data_l_reads - Buffer pool temporary data logical reads
pool_temp_data_p_reads xs:nonNegativeInteger pool_temp_data_p_reads - Buffer pool temporary data physical reads
pool_temp_index_l_reads xs:nonNegativeInteger pool_temp_index_l_reads - Buffer pool temporary index logical reads
pool_temp_index_p_reads xs:nonNegativeInteger pool_temp_index_p_reads - Buffer pool temporary index physical reads
pool_temp_xda_l_reads xs:nonNegativeInteger pool_temp_xda_l_reads - Buffer pool temporary XDA data logical reads
pool_temp_xda_p_reads xs:nonNegativeInteger pool_temp_xda_p_reads - Buffer pool temporary XDA data physical reads
pool_write_time xs:nonNegativeInteger pool_write_time - Total buffer pool physical write time
pool_xda_gbp_indep_pages_found_in_lbp xs:nonNegativeInteger pool_xda_gbp_indep_pages_found_in_lbp - Group buffer pool XDA independent pages found in local buffer pool monitor element
pool_xda_gbp_invalid_pages xs:nonNegativeInteger pool_xda_gbp_invalid_pages - Group buffer pool invalid XDA data pages
pool_xda_gbp_l_reads xs:nonNegativeInteger pool_xda_gbp_l_reads - Group buffer pool XDA data logical read requests
pool_xda_gbp_p_reads xs:nonNegativeInteger pool_xda_gbp_p_reads - Group buffer pool XDA data physical read requests
pool_xda_l_reads xs:nonNegativeInteger pool_xda_l_reads - Buffer pool XDA data logical reads
pool_xda_lbp_pages_found xs:nonNegativeInteger pool_xda_lbp_pages_found - Local buffer pool XDA data pages found
pool_xda_p_reads xs:nonNegativeInteger pool_xda_p_reads - Buffer pool XDA data physical reads
pool_xda_writes xs:nonNegativeInteger pool_xda_writes - Buffer pool XDA data writes
post_shrthreshold_sorts xs:nonNegativeInteger post_shrthreshold_sorts - Post shared threshold sorts
post_threshold_peas xs:long post_threshold_peas - Partial early aggregation threshold
post_threshold_peds xs:long post_threshold_peds - Partial early distincts threshold
post_threshold_sorts xs:nonNegativeInteger post_threshold_sorts - Post threshold sorts
prefetch_wait_time xs:nonNegativeInteger prefetch_wait_time - Time waited for prefetch
prefetch_waits xs:nonNegativeInteger prefetch_waits - Prefetcher wait count monitor element
rows_modified xs:nonNegativeInteger rows_modified - Rows modified
rows_read xs:nonNegativeInteger rows_read - Rows read
rows_returned xs:nonNegativeInteger rows_returned - Rows returned
rqsts_completed_total xs:nonNegativeInteger rqsts_completed_total - Total requests completed
sort_overflows xs:nonNegativeInteger sort_overflows - Sort overflows
tcpip_recv_volume xs:nonNegativeInteger tcpip_recv_volume - TCP/IP received volume
tcpip_recv_wait_time xs:nonNegativeInteger tcpip_recv_wait_time - TCP/IP recv wait time
tcpip_recvs_total xs:nonNegativeInteger tcpip_recvs_total - TCP/IP recvs total
tcpip_send_volume xs:nonNegativeInteger tcpip_send_volume - TCP/IP send volume
tcpip_send_wait_time xs:nonNegativeInteger tcpip_send_wait_time - TCP/IP send wait time
tcpip_sends_total xs:nonNegativeInteger tcpip_sends_total - TCP/IP sends total
thresh_violations xs:nonNegativeInteger thresh_violations - Number of threshold violations
total_act_time xs:nonNegativeInteger total_act_time - Total activity time
total_act_wait_time xs:nonNegativeInteger total_act_wait_time - Total activity wait time
total_app_commits xs:nonNegativeInteger total_app_commits - Total application commits
total_app_rollbacks xs:nonNegativeInteger total_app_rollbacks - Total application rollbacks
total_app_rqst_time xs:nonNegativeInteger total_app_rqst_time - Total application request time
total_app_section_executions xs:nonNegativeInteger total_app_section_executions - Total section executions
total_commit_proc_time xs:nonNegativeInteger

total_commit_proc_time - Total commits processing time

total_commit_time xs:nonNegativeInteger

total_commit_time - Total commit time

total_compilations xs:nonNegativeInteger

total_compilations - Total compilations

total_compile_proc_time xs:nonNegativeInteger

total_compile_proc_time - Total compile processing time

total_compile_time xs:nonNegativeInteger

total_compile_time - Total compile time

total_connect_authentication_proc_time xs:nonNegativeInteger total_connect_authentication_proc_time - Total connection authentication processing time
total_connect_authentication_time xs:nonNegativeInteger total_connect_authentication_time - Total connection or switch user authentication request time
total_connect_authentications xs:nonNegativeInteger total_connect_authentications - Connections or switch user authentications performed
total_connect_request_proc_time xs:nonNegativeInteger total_connect_request_proc_time - Total connection or switch user request processing time
total_connect_request_time xs:nonNegativeInteger total_connect_request_time - Total connection or switch user request time
total_connect_requests xs:nonNegativeInteger total_connect_requests - Connection or switch user requests
total_cpu_time xs:nonNegativeInteger total_cpu_time - Total CPU time
total_disp_run_queue_time xs:long total_disp_run_queue_time - Total dispatcher run queue time
total_extended_latch_wait_time xs:nonNegativeInteger total_extended_latch_wait_time - Total extended latch wait time
total_extended_latch_waits xs:nonNegativeInteger total_extended_latch_waits - Total extended latch waits
total_implicit_compilations xs:nonNegativeInteger

total_implicit_compilations - Total implicit complications

total_implicit_compile_proc_time xs:nonNegativeInteger

total_implicit_compile_proc_time - Total implicit compile processing time

total_implicit_compile_time xs:nonNegativeInteger

total_implicit_compile_time - Total implicit compile time

total_load_proc_time xs:nonNegativeInteger

total_load_proc_time - Total load processing time

total_load_time xs:nonNegativeInteger

total_load_time - Total load time

total_loads xs:nonNegativeInteger

total_loads - Total loads

total_peas xs:long total_peas - Total partial early aggregations
total_peds xs:long total_peds - Total partial early distincts
total_reorg_proc_time xs:nonNegativeInteger

total_reorg_proc_time - Total reorganization processing time

total_reorg_time xs:nonNegativeInteger

total_reorg_time - Total reorganization time

total_reorgs xs:nonNegativeInteger

total_reorgs - Total reorganizations

total_rollback_proc_time xs:nonNegativeInteger

total_rollback_proc_time - Total rollback processing time

total_rollback_time xs:nonNegativeInteger

total_rollback_time - Total rollback time

total_routine_invocations xs:nonNegativeInteger total_routine_invocations - Total routine invocations
total_routine_time xs:nonNegativeInteger total_routine_time - Total routine time
total_routine_user_code_proc_time xs:nonNegativeInteger total_routine_user_code_proc_time - Total routine user code processing time
total_routine_user_code_time xs:nonNegativeInteger total_routine_user_code_time - Total routine user code time
total_rqst_time xs:nonNegativeInteger total_rqst_time - Total request time
total_runstats xs:nonNegativeInteger

total_runstats - Total runtime statistics

total_runstats_proc_time xs:nonNegativeInteger

total_runstats_proc_time - Total runtime statistics processing time

total_runstats_time xs:nonNegativeInteger

total_runstats_time - Total runtime statistics

total_section_proc_time xs:nonNegativeInteger total_section_proc_time - Total section processing time
total_section_sort_proc_time xs:nonNegativeInteger total_section_sort_proc_time - Total section sort processing time
total_section_sort_time xs:nonNegativeInteger total_section_sort_time - Total section sort time
total_section_sorts xs:nonNegativeInteger total_section_sorts - Total section sorts
total_section_time xs:nonNegativeInteger total_section_time - Total section time
total_sorts xs:nonNegativeInteger total_sorts - Total Sorts
total_stats_fabrication_proc_time xs:nonNegativeInteger total_stats_fabrication_proc_time - Total statistics fabrication processing time
total_stats_fabrication_time xs:nonNegativeInteger total_stats_fabrication_time - Total statistics fabrication time
total_stats_fabrications xs:nonNegativeInteger total_stats_fabrications - Total statistics fabrications
total_sync_runstats xs:nonNegativeInteger total_sync_runstats - Total synchronous RUNSTATS activities
total_sync_runstats_proc_time xs:nonNegativeInteger total_sync_runstats_proc_time - Total synchronous RUNSTATS processing time
total_sync_runstats_time xs:nonNegativeInteger total_sync_runstats_time - Total synchronous RUNSTATS time
total_wait_time xs:nonNegativeInteger total_wait_time - Total wait time
tq_sort_heap_rejections xs:long tq_sort_heap_rejections - Table queue sort heap rejections
tq_sort_heap_requests xs:long tq_sort_heap_requests - Table queue sort heap requests
tq_tot_send_spills xs:nonNegativeInteger tq_tot_send_spills - Total number of table queue buffers overflowed
wlm_queue_assignments_total xs:nonNegativeInteger wlm_queue_assignments_total - Workload manager total queue assignments
wlm_queue_time_total xs:nonNegativeInteger wlm_queue_time_total - Workload manager total queue time
workload_id xs:nonNegativeInteger workload_id - Workload ID
workload_name xs:string (128) workload_name - Workload name