Class QueryStoreSchema.QueryStoreRuntimeStatsInterval
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.query_store_runtime_stats_interval (Transact-SQL)
Applies to: √ SQL Server 2016 (13.x) and later √ Azure SQL Database √ Azure SQL Managed Instance √ Azure Synapse Analytics
Contains information about the start and end time of each interval over which runtime execution statistics information for a query has been collected.
[Table(Schema = "sys", Name = "query_store_runtime_stats_interval", IsView = true)]
public class QueryStoreSchema.QueryStoreRuntimeStatsInterval
- Inheritance
-
QueryStoreSchema.QueryStoreRuntimeStatsInterval
- Extension Methods
Properties
Comment
Always NULL.
[Column("comment")]
[Nullable]
public string? Comment { get; set; }
Property Value
EndTime
End time of the interval.
[Column("end_time")]
[NotNull]
public DateTimeOffset EndTime { get; set; }
Property Value
RuntimeStatsIntervalID
Primary key.
[Column("runtime_stats_interval_id")]
[NotNull]
public long RuntimeStatsIntervalID { get; set; }
Property Value
StartTime
Start time of the interval.
[Column("start_time")]
[NotNull]
public DateTimeOffset StartTime { get; set; }