title | summary | toc |
---|---|---|
SET (session variable) |
The SET statement modifies the current configuration variables for the client session. |
true |
The SET
statement can modify one of the session configuration variables. These can also be queried via SHOW
.
{{site.data.alerts.callout_danger}}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.{{site.data.alerts.end}}
No privileges are required to modify the session settings.
{{site.data.alerts.callout_info}}The SET
statement for session settings is unrelated to the other SET TRANSACTION
and SET CLUSTER SETTING
statements.{{site.data.alerts.end}}
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.
{% include {{ page.version.version }}/misc/session-vars.html %}
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. |
The following demonstrates how SET
can be used to configure the
default database for the current session:
{% include copy-clipboard.html %}
> SET database = bank;
{% include copy-clipboard.html %}
> SHOW database;
+----------+
| database |
+----------+
| bank |
+----------+
(1 row)
The following demonstrates how to use quoting to use values containing spaces:
{% include copy-clipboard.html %}
> SET database = "database name with spaces";
{% include copy-clipboard.html %}
> SHOW database;
+---------------------------+
| database |
+---------------------------+
| database name with spaces |
+---------------------------+
(1 row)
The following demonstrates how to assign a list of values:
{% include copy-clipboard.html %}
> SET search_path = pg_catalog,public;
{% include copy-clipboard.html %}
> SHOW search_path;
+---------------------------+
| search_path |
+---------------------------+
| pg_catalog, public |
+---------------------------+
(1 row)
{{site.data.alerts.callout_success}}You can use RESET
to reset a session variable as well.{{site.data.alerts.end}}
{% include copy-clipboard.html %}
> SHOW search_path;
+-------------+
| search_path |
+-------------+
| public |
+-------------+
(1 row)
{% include copy-clipboard.html %}
> SET search_path = 'app';
{% include copy-clipboard.html %}
> SHOW search_path;
+-------------+
| search_path |
+-------------+
| app |
+-------------+
(1 row)
{% include copy-clipboard.html %}
> SET search_path = DEFAULT;
{% include copy-clipboard.html %}
> SHOW search_path;
+-------------+
| search_path |
+-------------+
| public |
+-------------+
(1 row)
{{site.data.alerts.callout_danger}}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.{{site.data.alerts.end}}
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.
{{site.data.alerts.callout_info}}With setting SET TIME ZONE
, CockroachDB uses UTC as the default time zone.{{site.data.alerts.end}}
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
.
{% include copy-clipboard.html %}
> SET TIME ZONE 'EST'; -- same as SET "timezone" = 'EST'
{% include copy-clipboard.html %}
> SHOW TIME ZONE;
+-----------+
| time zone |
+-----------+
| EST |
+-----------+
(1 row)
{% include copy-clipboard.html %}
> SET TIME ZONE DEFAULT; -- same as SET "timezone" = DEFAULT
{% include copy-clipboard.html %}
> SHOW TIME ZONE;
+-----------+
| time zone |
+-----------+
| UTC |
+-----------+
(1 row)
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; |