Show / Hide Table of Contents

Class SqlTuningTaskPlanStats

The statistics of a SQL execution plan.

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

Properties

PlanStats

Declaration
[Required(ErrorMessage = "PlanStats is required.")]
[JsonProperty(PropertyName = "planStats")]
public Dictionary<string, double> PlanStats { get; set; }
Property Value
Type Description
Dictionary<string, double>

A map contains the statistics for the SQL execution using the plan. The key of the map is the metric's name. The value of the map is the metric's value.

Remarks

Required

PlanStatus

Declaration
[Required(ErrorMessage = "PlanStatus is required.")]
[JsonProperty(PropertyName = "planStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SqlTuningTaskPlanStats.PlanStatusEnum? PlanStatus { get; set; }
Property Value
Type Description
SqlTuningTaskPlanStats.PlanStatusEnum?

The status of the execution using the plan.

Remarks

Required

PlanType

Declaration
[Required(ErrorMessage = "PlanType is required.")]
[JsonProperty(PropertyName = "planType")]
public string PlanType { get; set; }
Property Value
Type Description
string

The type of the original or modified plan with profile, index, and so on.

Remarks

Required

In this article
Back to top