Show / Hide Table of Contents

Class SqlTuningAdvisorTaskSummaryReportObjectStatFindingSummary

A summary for all the statistic findings of an object in a SQL Tuning Advisor task. Includes the object's hash, name, type, schema, problem type and the object reference count.

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

Properties

ObjectHashValue

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

Numerical representation of the object.

Remarks

Required

ObjectName

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

Name of the object.

Remarks

Required

ObjectType

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

Type of the object.

Remarks

Required

ProblemType

Declaration
[Required(ErrorMessage = "ProblemType is required.")]
[JsonProperty(PropertyName = "problemType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SqlTuningAdvisorTaskSummaryReportObjectStatFindingSummary.ProblemTypeEnum? ProblemType { get; set; }
Property Value
Type Description
SqlTuningAdvisorTaskSummaryReportObjectStatFindingSummary.ProblemTypeEnum?

Type of statistics problem related to the object.

Remarks

Required

ReferenceCount

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

The number of the times the object is referenced within the SQL Tuning advisor task findings.

Remarks

Required

Schema

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

Schema of the object.

Remarks

Required

In this article
Back to top