From 45582aa2c3667339d69fb1ca581b326e8962a4bc Mon Sep 17 00:00:00 2001 From: Florence Morris Date: Fri, 10 Oct 2025 12:13:40 -0400 Subject: [PATCH 1/2] In sessions.md, added Default Isolation Level column. In active-statement-executions.md and active-transaction-executions.md, added Isolation Level column. --- src/current/_includes/v25.4/ui/active-statement-executions.md | 1 + src/current/_includes/v25.4/ui/active-transaction-executions.md | 1 + src/current/_includes/v25.4/ui/sessions.md | 1 + 3 files changed, 3 insertions(+) diff --git a/src/current/_includes/v25.4/ui/active-statement-executions.md b/src/current/_includes/v25.4/ui/active-statement-executions.md index e2254c2ac02..05f4374f3de 100644 --- a/src/current/_includes/v25.4/ui/active-statement-executions.md +++ b/src/current/_includes/v25.4/ui/active-statement-executions.md @@ -10,6 +10,7 @@ Statement Execution | The SQL statement that was executed. Status | The status of the execution: `Preparing`, `Waiting`, or `Executing`. Start Time (UTC) | The timestamp when the execution started. Time Spent Waiting | The time the execution spent waiting and experiencing [lock contention]({{ link_prefix }}performance-best-practices-overview.html#understanding-and-avoiding-transaction-contention). +Isolation Level | The [isolation level]({{ link_prefix }}transactions.html#isolation-levels) used for the statement execution. Application | The name specified by the [`application_name`]({{ link_prefix }}show-vars.html#supported-variables) session setting. To view details of an active statement execution, click an execution ID in the **Statement Execution ID** column to open the [**Statement Execution** details page](#statement-execution-details-page). diff --git a/src/current/_includes/v25.4/ui/active-transaction-executions.md b/src/current/_includes/v25.4/ui/active-transaction-executions.md index ee2ee069ad1..5fcdbae485d 100644 --- a/src/current/_includes/v25.4/ui/active-transaction-executions.md +++ b/src/current/_includes/v25.4/ui/active-transaction-executions.md @@ -14,6 +14,7 @@ Elapsed Time | The time elapsed since the transaction started. Time Spent Waiting | The amount of time the execution experienced [lock contention]({{ link_prefix }}performance-best-practices-overview.html#understanding-and-avoiding-transaction-contention). Statements | The number of statements in the transaction. Retries | The number of times statements in the transaction were retried. +Isolation Level | The [isolation level]({{ link_prefix }}transactions.html#isolation-levels) used for the transaction execution. Application | The name specified by the [`application_name`]({{ link_prefix }}show-vars.html#supported-variables) session setting. To view details of an active transaction execution, click an execution ID in the **Transaction Execution ID** column to open the [**Transaction Execution** details page](#transaction-execution-details-page). diff --git a/src/current/_includes/v25.4/ui/sessions.md b/src/current/_includes/v25.4/ui/sessions.md index 8803337459b..3f000ccf66e 100644 --- a/src/current/_includes/v25.4/ui/sessions.md +++ b/src/current/_includes/v25.4/ui/sessions.md @@ -31,6 +31,7 @@ Memory Usage | Amount of memory currently allocated to the session followed by t Client IP Address | The IP address and port of the client that opened the session. User Name | The user that opened the session. Application Name | The application that ran the session. +Default Isolation Level | The default [isolation level]({{ link_prefix }}transactions.html#isolation-levels) for transactions in the session. Actions | Options to cancel the active statement and cancel the session. These require the `CANCELQUERY` [system privilege]({{ link_prefix }}security-reference/authorization.html#supported-privileges) (or the legacy `CANCELQUERY` [role option]({{ link_prefix }}alter-role.html#role-options). To view details of a session, click a **Session Start Time (UTC)** to display session details. From 4346018fceb75c997f5e97aedf673e8051dc2e47 Mon Sep 17 00:00:00 2001 From: Florence Morris Date: Tue, 14 Oct 2025 10:22:03 -0400 Subject: [PATCH 2/2] restart deploy-preview