CursorCacheStatementSummary

class oci.database_management.models.CursorCacheStatementSummary(**kwargs)

Bases: object

The summary of a SQL statement in the cursor cache.

Methods

__init__(**kwargs) Initializes a new CursorCacheStatementSummary object with values from keyword arguments.

Attributes

schema [Required] Gets the schema of this CursorCacheStatementSummary.
sql_id [Required] Gets the sql_id of this CursorCacheStatementSummary.
sql_text [Required] Gets the sql_text of this CursorCacheStatementSummary.
__init__(**kwargs)

Initializes a new CursorCacheStatementSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • sql_id (str) – The value to assign to the sql_id property of this CursorCacheStatementSummary.
  • schema (str) – The value to assign to the schema property of this CursorCacheStatementSummary.
  • sql_text (str) – The value to assign to the sql_text property of this CursorCacheStatementSummary.
schema

[Required] Gets the schema of this CursorCacheStatementSummary. The name of the parsing schema.

Returns:The schema of this CursorCacheStatementSummary.
Return type:str
sql_id

[Required] Gets the sql_id of this CursorCacheStatementSummary. The SQL statement identifier. Identifies a SQL statement in the cursor cache.

Returns:The sql_id of this CursorCacheStatementSummary.
Return type:str
sql_text

[Required] Gets the sql_text of this CursorCacheStatementSummary. The first thousand characters of the SQL text.

Returns:The sql_text of this CursorCacheStatementSummary.
Return type:str