Show / Hide Table of Contents

Class SqlStatisticsTimeSeriesByPlanAggregation

SQL performance statistics for a given plan

Inheritance
object
SqlStatisticsTimeSeriesByPlanAggregation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class SqlStatisticsTimeSeriesByPlanAggregation

Properties

PlanHash

Declaration
[Required(ErrorMessage = "PlanHash is required.")]
[JsonProperty(PropertyName = "planHash")]
public long? PlanHash { get; set; }
Property Value
Type Description
long?

Plan hash value for the SQL Execution Plan

Remarks

Required

Statistics

Declaration
[Required(ErrorMessage = "Statistics is required.")]
[JsonProperty(PropertyName = "statistics")]
public List<SqlStatisticsTimeSeries> Statistics { get; set; }
Property Value
Type Description
List<SqlStatisticsTimeSeries>

SQL performance statistics for a given plan

Remarks

Required

In this article
Back to top