Class SqlTuningAdvisorTaskSummaryReportStatementCounts
The number of statements in the SQL Tuning Advisor summary report.
Inherited Members
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