Show / Hide Table of Contents

Class SqlMetrics

Metrics of the Sql in the Sql tuning set.

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

Properties

BufferGets

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

Sum total number of buffer gets.

CpuTime

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

Total CPU time consumed by the Sql.

DirectWrites

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

Sum total number of direct path writes.

DiskReads

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

Sum total number of disk reads.

ElapsedTime

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

Elapsed time of the Sql.

Executions

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

Total executions of this SQL statement.

In this article
Back to top