Show / Hide Table of Contents

Class SqlTuningAdvisorTaskSummaryReportStatementCounts

The number of statements in the SQL Tuning Advisor summary report.

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

Properties

DistinctSql

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

The number of distinct SQL statements.

Remarks

Required

ErrorCount

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

The number of distinct SQL statements with errors.

Remarks

Required

FindingCount

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

The number of distinct SQL statements with findings.

Remarks

Required

TotalSql

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

The total number of SQL statements.

Remarks

Required

In this article
Back to top