Show / Hide Table of Contents

Class SqlTuningAdvisorTaskSummaryReport

The content of the SQL Tuning Advisor summary report.

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

Properties

IndexFindings

Declaration
[JsonProperty(PropertyName = "indexFindings")]
public List<SqlTuningAdvisorTaskSummaryReportIndexFindingSummary> IndexFindings { get; set; }
Property Value
Type Description
List<SqlTuningAdvisorTaskSummaryReportIndexFindingSummary>

The list of object findings related to indexes.

ObjectStatFindings

Declaration
[JsonProperty(PropertyName = "objectStatFindings")]
public List<SqlTuningAdvisorTaskSummaryReportObjectStatFindingSummary> ObjectStatFindings { get; set; }
Property Value
Type Description
List<SqlTuningAdvisorTaskSummaryReportObjectStatFindingSummary>

The list of object findings related to statistics.

Statistics

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

Required

TaskInfo

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

Required

In this article
Back to top