Quick onboard
Deployment
Data Modeling
Connecting
Migration
Query
Operations and Maintenance
Common Maintenance
Partition
Backup and Restore
Expansion
Mirroring
Resource Management
Security
Monitoring
Performance Tuning
Troubleshooting
Reference Guide
Tool guide
Data type
Storage Engine
Executor
Stream
DR (Disaster Recovery)
Configuration
Index
Extension
SQL Reference
Displays the value of the system configuration parameters.
SHOW configuration_parameter
SHOW ALL
SHOW displays the current settings for the YMatrix database system configuration parameters. You can set these parameters using SET statements or by editing the postgresql.conf configuration file of the YMatrix database master. Note that some of the parameters that SHOW can view are read-only - they can be viewed but cannot be set. For more information, see the YMatrix Database Reference Guide.
configuration_parameter
ALL
Display the current settings of the parameter DateStyle:
SHOW DateStyle;
DateStyle
--------------
ISO, MDY
(1 row)
Display the current settings of parameter geqo:
SHOW geqo;
geqo
------
off
(1 row)
Shows the current settings for all parameters:
SHOW ALL;
name | setting | description
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
application_name | psql | Sets the application name to be reported in sta...
.
.
.
xmlbinary | base64 | Sets how binary values are to be encoded in XML.
xmloption | content | Sets whether XML data in implicit parsing and s...
(331 rows)
SHOW is a YMatrix database extension.