persistent class INFORMATION.SCHEMA.STATEMENTHOURLYSTATS
extends %Persistent, %XML.Adaptor
SQL Table Name: STATEMENT_HOURLY_STATS
Per hour light weight statistics of this SQL statement
parameter READONLY = 1;
READONLY = 1 means that objects can be created, opened but not saved or deleted.
Tables are projected to SQL as READONLY.
relationship Day
as INFORMATION.SCHEMA.STATEMENTDAILYSTATS [ Inverse = Hours,Cardinality = parent ];
property Hour
as %Integer [ Required ];
Hour these stats were recorded on, this is an integer 0-23 so 0 is after midnight up to 1am and 1 is from 1am up to 2am, etc.
property StatCommands
as %Integer;
Total ObjectScript commands from running this query
property StatCount
as %Integer;
Total number of times we have recorded this query being run
property StatRowCount
as %Integer;
Total %ROWCOUNT from running this query
property StatTotal
as %Double;
Total time spent running this query
property StatVariance
as %Double;
Variance in time from running this query
index (StatementHourlyStatsIDKey on Hour) [IdKey];