PG_CURSORS
PG_CURSORS displays the cursors that are currently available.
| Name | Type | Description |
|---|---|---|
| name | text | Cursor name |
| statement | text | Query statement when the cursor is declared to change |
| is_holdable | Boolean | Whether the cursor is holdable (that is, it can be accessed after the transaction that declared the cursor has committed). If it is, its value is true. |
| is_binary | Boolean | Whether the cursor was declared BINARY. If it was, its value is true. |
| is_scrollable | Boolean | Whether the cursor is scrollable (that is, it allows rows to be retrieved in a nonsequential manner). If it is, its value is true. |
| creation_time | timestamp with time zone | Timestamp at which the cursor is declared |
Last Article: PG_CONTROL_GROUP_CONFIG
Next Article: PG_EXT_STATS
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.