Viewing Parameter Values
GaussDB uses a set of default running parameters after it is installed. You can modify the parameters to better fit the current service scenarios and data volume.
Procedure
- Connect to the database. For details, see Using gsql to Connect to an Instance.
gsql -d postgres -p 8000
postgres is the name of the database to be connected, and 8000 is the port number of the database primary node.
If information similar to the following is displayed, the connection succeeds:
gsql((GaussDB Kernel VxxxRxxxCxx build f521c606) compiled at 2021-09-16 14:55:22 commit 2935 last mr 6385 release) Non-SSL connection (SSL connection is recommended when requiring high-security) Type "help" for help. openGauss=#
- View the parameter values in the database.
- Method 1: Run the SHOW command.
- Run the following command to view the value of a certain parameter:
1
openGauss=# SHOW server_version;
server_version indicates the database version.
- Run the following command to view values of all parameters:
1
openGauss=# SHOW ALL;
- Run the following command to view the value of a certain parameter:
- Method 2: Query the pg_settings view.
- Run the following command to view the value of a certain parameter:
1
openGauss=# SELECT * FROM pg_settings WHERE NAME='server_version';
- Run the following command to view values of all parameters:
1
openGauss=# SELECT * FROM pg_settings;
- Run the following command to view the value of a certain parameter:
- Method 1: Run the SHOW command.
Example
Check the character encoding type of the client.
1 2 3 4 5 |
openGauss=# SHOW client_encoding; client_encoding ---------------- UTF8 (1 row) |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot