Show / Hide Table of Contents

Class ExecutionPlanStatsComparision

The comparison report of the SQL execution plan statistics in the original and modified plan.

Inheritance
object
ExecutionPlanStatsComparision
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 ExecutionPlanStatsComparision

Properties

Modified

Declaration
[Required(ErrorMessage = "Modified is required.")]
[JsonProperty(PropertyName = "modified")]
public SqlTuningTaskPlanStats Modified { get; set; }
Property Value
Type Description
SqlTuningTaskPlanStats
Remarks

Required

Original

Declaration
[Required(ErrorMessage = "Original is required.")]
[JsonProperty(PropertyName = "original")]
public SqlTuningTaskPlanStats Original { get; set; }
Property Value
Type Description
SqlTuningTaskPlanStats
Remarks

Required

In this article
Back to top