Show / Hide Table of Contents

Class CursorCacheStatementSummary

The summary of a SQL statement in the cursor cache.

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

Properties

Schema

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

The name of the parsing schema.

Remarks

Required

SqlId

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

The SQL statement identifier. Identifies a SQL statement in the cursor cache.

Remarks

Required

SqlText

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

The first thousand characters of the SQL text.

Remarks

Required

In this article
Back to top