doc-exports/docs/dws/dev/dws_06_0224.html
Lu, Huayi ef0ada5a59 DWS DEV 20240716 version
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-authored-by: Lu, Huayi <luhuayi@huawei.com>
Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
2024-11-02 09:07:47 +00:00

5.4 KiB

SHOW

Function

Shows the current value of a runtime parameter. You can use the SET statement to set these parameters.

Precautions

Some parameters that can be viewed by running the SHOW command are read-only. You can view but cannot modify their values.

Syntax

1
2
3
4
5
6
7
8
9
SHOW 
  { 
    configuration_parameter | 
    CURRENT_SCHEMA | 
    TIME ZONE | 
    TRANSACTION ISOLATION LEVEL | 
    SESSION AUTHORIZATION | 
    ALL 
  };

Parameter Description

See Parameter Description in RESET.

Examples

Show the value of timezone.

1
SHOW timezone;

Show the current setting of the DateStyle parameter.

1
SHOW DateStyle;

Show the current setting of all parameters.

1
SHOW ALL;

Helpful Links

SET, RESET