Show / Hide Table of Contents

Class AddmDbSqlStatementSummary

Details for a given SQL ID

Inheritance
object
AddmDbSqlStatementSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class AddmDbSqlStatementSummary

Properties

Id

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

The OCID of the Database insight.

Remarks

Required

IsSqlTextTruncated

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

SQL identifier

Remarks

Required

SqlCommand

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

SQL command name (such as SELECT, INSERT)

Remarks

Required

SqlIdentifier

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

SQL identifier

Remarks

Required

SqlText

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

First 3800 characters of the SQL text

Remarks

Required

In this article
Back to top