SET (session variable)

On this page Carat arrow pointing down
Warning:
CockroachDB v2.1 is no longer supported. For more details, see the Release Support Policy.

The SET statement can modify one of the session configuration variables. These can also be queried via SHOW.

Warning:
In some cases, client drivers can drop and restart the connection to the server. When this happens, any session configurations made with SET statements are lost. It is therefore more reliable to configure the session in the client's connection string. For examples in different languages, see the Build an App with CockroachDB tutorials.

Required privileges

No privileges are required to modify the session settings.

Synopsis

SET SESSION var_name TO = var_value ,
Note:
The SET statement for session settings is unrelated to the other SET TRANSACTION and SET CLUSTER SETTING statements.

Parameters

The SET <session variable> statement accepts two parameters: the variable name and the value to use to modify the variable.

The variable name is case insensitive. The value can be a list of one or more items. For example, the variable search_path is multi-valued.

Supported variables

Variable name Description Initial value Can be viewed with SHOW?
application_name The current application name for statistics collection. Empty string Yes
database The current database. Database in connection string, or empty if not specified Yes
default_transaction_isolation Read only: All transactions execute with SERIALIZABLE isolation, meaning you cannot SET default_transaction_isolation... to any value. However, this setting remains available for ORM compatibility. SERIALIZABLE Yes
default_transaction_read_only The default transaction access mode for the current session. If set to on, only read operations are allowed in transactions in the current session; if set to off, both read and write operations are allowed. See SET TRANSACTION for more details. off Yes
distsql New in v2.1: The query distribution mode for the current session.

If auto, CockroachDB determines which queries are faster to execute if distributed across multiple nodes, and all other queries are run through the gateway node. auto is recommended.

If on, any queries that can be distributed are distributed, and all other queries are run through the gateway node.

If off, all queries are run through the local SQL engine.

If always, all queries are distributed, even those that cannot be distributed (returns an error). This setting is used for internal testing and is not recommended.
auto Yes
extra_float_digits New in v2.1: The number of digits displayed for floating-point values. Only values between -15 and 3 are supported. 0 Yes
optimizer New in v2.1: The mode in which a query execution plan is generated. If set to on, the cost-based optimizer is enabled by default and the heuristic planner will only be used if the query is not supported by the cost-based optimizer; if set to off, all queries are run through the legacy heuristic planner. on Yes
sql_safe_updates If true, disallow potentially unsafe SQL statements, including DELETE without a WHERE clause, UPDATE without a WHERE clause, and ALTER TABLE ... DROP COLUMN. See Allow Potentially Unsafe SQL Statements for more details. true for interactive sessions from the built-in SQL client unless --safe-updates=false is specified,
false for sessions from other clients
Yes
search_path A list of schemas that will be searched to resolve unqualified table or function names. For more details, see Name Resolution. "{public}" Yes
server_version_num The version of PostgreSQL that CockroachDB emulates. Version-dependent Yes
statement_timeout New in v2.1: The amount of time a statement can run before being stopped.

This value can be an int (e.g., 10) and will be interpreted as milliseconds. It can also be an interval or string argument, where the string can be parsed as a valid interval (e.g., '4s'). A value of 0 turns it off.
0s Yes
timezone The default time zone for the current session.

This value can be a string representation of a local system-defined time zone (e.g., 'EST', 'America/New_York') or a positive or negative numeric offset from UTC (e.g., -7, +7). Also, DEFAULT, LOCAL, or 0 sets the session time zone to UTC.

See Setting the Time Zone for more details.

This session variable was named "time zone" (with a space) in CockroachDB 1.x. It has been renamed for compatibility with PostgreSQL.
UTC Yes
tracing The trace recording state.

See SET TRACING for more details.
off Yes
transaction_isolation Read only: All transactions execute with SERIALIZABLE isolation, meaning you cannot SET transaction_isolation... to any value. However, this available for ORM compatibility.

This session variable was called transaction isolation level (with spaces) in CockroachDB 1.x. It has been renamed for compatibility with PostgreSQL.
SERIALIZABLE Yes
transaction_priority The priority of the current transaction. See Transactions: Priority levels for more details.

This session variable was called transaction priority (with a space) in CockroachDB 1.x. It has been renamed for compatibility with PostgreSQL.
NORMAL Yes
transaction_read_only The access mode of the current transaction. See Set Transaction for more details. off Yes
transaction_status The state of the current transaction. See Transactions for more details.

This session variable was called transaction status (with a space) in CockroachDB 1.x. It has been renamed for compatibility with PostgreSQL.
NoTxn Yes
client_encoding Ignored; recognized for compatibility with PostgreSQL clients. Only possible value is "UTF8". N/A No
client_min_messages Ignored; recognized for compatibility with PostgreSQL clients. Only possible value is notice. N/A Yes
standard_conforming_strings Ignored; recognized for compatibility with PostgreSQL clients. N/A Yes
integer_datetimes Ignored; recognized for compatibility with PostgreSQL clients. Only possible value is on. N/A Yes
server_encoding Ignored; recognized for compatibility with PostgreSQL clients. Only possible value is UTF8. N/A Yes

Special syntax cases:

Syntax Equivalent to Notes
USE ... SET database = ... This is provided as convenience for users with a MySQL/MSSQL background.
SET NAMES ... SET client_encoding = ... This is provided for compatibility with PostgreSQL clients.
SET SCHEMA <name> SET search_path = <name> This is provided for better compatibility with PostgreSQL.
SET SESSION CHARACTERISTICS AS TRANSACTION ISOLATION LEVEL ... SET default_transaction_isolation = ... This is provided for compatibility with standard SQL.
SET TIME ZONE ... SET timezone = ... This is provided for compatibility with PostgreSQL clients.

Examples

Set simple variables

The following demonstrates how SET can be used to configure the default database for the current session:

icon/buttons/copy
> SET database = bank;
icon/buttons/copy
> SHOW database;
+----------+
| database |
+----------+
| bank     |
+----------+
(1 row)

Set variables to values containing spaces

The following demonstrates how to use quoting to use values containing spaces:

icon/buttons/copy
> SET database = "database name with spaces";
icon/buttons/copy
> SHOW database;
+---------------------------+
|         database          |
+---------------------------+
| database name with spaces |
+---------------------------+
(1 row)

Set variables to a list of values

The following demonstrates how to assign a list of values:

icon/buttons/copy
> SET search_path = pg_catalog,public;
icon/buttons/copy
> SHOW search_path;
+---------------------------+
|        search_path        |
+---------------------------+
| pg_catalog, public        |
+---------------------------+
(1 row)

Reset a variable to its default value

Tip:
You can use RESET to reset a session variable as well.
icon/buttons/copy
> SHOW search_path;
+-------------+
| search_path |
+-------------+
| public      |
+-------------+
(1 row)
icon/buttons/copy
> SET search_path = 'app';
icon/buttons/copy
> SHOW search_path;
+-------------+
| search_path |
+-------------+
| app         |
+-------------+
(1 row)
icon/buttons/copy
> SET search_path = DEFAULT;
icon/buttons/copy
> SHOW search_path;
+-------------+
| search_path |
+-------------+
| public      |
+-------------+
(1 row)

SET TIME ZONE

Warning:
As a best practice, we recommend not using this setting and avoid setting a session time for your database. We instead recommend converting UTC values to the appropriate time zone on the client side.

You can control your client's default time zone for the current session with SET TIME ZONE. This will apply a session offset to all TIMESTAMP WITH TIME ZONE values.

Note:
With setting SET TIME ZONE, CockroachDB uses UTC as the default time zone.

Parameters

The time zone value indicates the time zone for the current session.

This value can be a string representation of a local system-defined time zone (e.g., 'EST', 'America/New_York') or a positive or negative numeric offset from UTC (e.g., -7, +7). Also, DEFAULT, LOCAL, or 0 sets the session time zone to UTC.

Example: Set the default time zone via SET TIME ZONE

icon/buttons/copy
> SET TIME ZONE 'EST'; -- same as SET "timezone" = 'EST'
icon/buttons/copy
> SHOW TIME ZONE;
+-----------+
| time zone |
+-----------+
| EST       |
+-----------+
(1 row)
icon/buttons/copy
> SET TIME ZONE DEFAULT; -- same as SET "timezone" = DEFAULT
icon/buttons/copy
> SHOW TIME ZONE;
+-----------+
| time zone |
+-----------+
| UTC       |
+-----------+
(1 row)

SET TRACING

SET TRACING changes the trace recording state of the current session. A trace recording can be inspected with the SHOW TRACE FOR SESSION statement.

Value Description
off Trace recording is disabled.
cluster Trace recording is enabled; distributed traces are collected.
on Same as cluster.
kv Same as cluster except that "kv messages" are collected instead of regular trace messages. See SHOW TRACE FOR SESSION.
local Trace recording is enabled; only trace messages issued by the local node are collected.
results Result rows and row counts are copied to the session trace. This must be specified to in order for the output of a query to be printed in the session trace.

Example: SET tracing = kv, results;

See also


Yes No
On this page

Yes No