Show / Hide Table of Contents

Class SqlInSqlTuningSet

Sql information in the Sql tuning set.

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

Properties

ContainerDatabaseId

Declaration
[JsonProperty(PropertyName = "containerDatabaseId")]
public long? ContainerDatabaseId { get; set; }
Property Value
Type Description
long?

The unique container database identifier.

Metrics

Declaration
[JsonProperty(PropertyName = "metrics")]
public List<SqlMetrics> Metrics { get; set; }
Property Value
Type Description
List<SqlMetrics>

A list of the Sqls associated with the Sql tuning set.

Module

Declaration
[JsonProperty(PropertyName = "module")]
public string Module { get; set; }
Property Value
Type Description
string

The module of the Sql.

PlanHashValue

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

Plan hash value of the Sql statement.

Remarks

Required

Schema

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

The schema name of the Sql.

SqlId

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

The unique Sql identifier.

Remarks

Required

SqlText

Declaration
[JsonProperty(PropertyName = "sqlText")]
public string SqlText { get; set; }
Property Value
Type Description
string

Sql text.

In this article
Back to top