Querying a System Catalog
In addition to the created tables, a database contains many system catalogs. These system catalogs contain database installation information and information about various queries and processes in GaussDB. You can collect information about the database by querying system catalogs.
In System Catalogs and System Views, the description about each table specifies whether the table is visible to all users or only the initial user. To query tables that are visible only to the initial user, log in as the user.
GaussDB provides the following types of system catalogs and system views:
- PG-compatible system catalogs and views
- New system catalogs and system views of GaussDB
These system catalogs and views have the prefix GS.
Querying Database Tables
openGauss=# CREATE TABLE public.search_table_t1(a int); CREATE TABLE openGauss=# CREATE TABLE public.search_table_t2(b int); CREATE TABLE openGauss=# CREATE TABLE public.search_table_t3(c int); CREATE TABLE openGauss=# CREATE TABLE public.search_table_t4(d int); CREATE TABLE openGauss=# CREATE TABLE public.search_table_t5(e int); CREATE TABLE
1
|
openGauss=# SELECT distinct(tablename) FROM pg_tables WHERE SCHEMANAME = 'public' AND TABLENAME LIKE 'search_table%'; |
Information similar to the following is displayed:
1 2 3 4 5 6 7 8 |
tablename ----------------- search_table_t1 search_table_t2 search_table_t3 search_table_t4 search_table_t5 (5 rows) |
Viewing Database Users
You can run the PG_USER command to view the list of all users in the database, and view the user ID (USESYSID) and permissions.
1
|
SELECT * FROM pg_user; |
usename | usesysid | usecreatedb | usesuper | usecatupd | userepl | passwd | valbegin | valuntil | respool | parent | spacelimit | useconfig | no degroup | tempspacelimit | spillspacelimit | usemonitoradmin | useoperatoradmin | usepolicyadmin ---------+----------+-------------+----------+-----------+---------+----------+----------+----------+--------------+--------+------------+-----------+--- --------+----------------+-----------------+-----------------+------------------+---------------- omm | 10 | t | t | t | t | ******** | | | default_pool | 0 | | | | | | t | t | t
Viewing and Stopping the Running Query Statements
You can view the running query statements in the PG_STAT_ACTIVITY view. You can use the following methods:
- Set the parameter track_activities to on.
1
SET track_activities = on;
The database collects the running information about active queries only if the parameter is set to on.
- View the running query statements. Run the following command to view the database names, users performing queries, query status, and the corresponding PIDs which are connected to the running query statements:
1
SELECT datname, usename, state,pid FROM pg_stat_activity;
1 2 3 4 5 6 7 8
datname | usename | state | pid ----------+---------+--------+----------------- testdb | Ruby | active | 140298793514752 testdb | Ruby | active | 140298718004992 testdb | Ruby | idle | 140298650908416 testdb | Ruby | idle | 140298625742592 testdb | omm | active | 140298575406848 (5 rows)
If the state column is idle, the connection is idle and requires a user to enter a command.
To identify only active query statements, run the following command:
1
SELECT datname, usename, state, pid FROM pg_stat_activity WHERE state != 'idle';
- To cancel queries that have been running for a long time, use the PG_TERMINATE_BACKEND function to end sessions based on the thread ID.
1
SELECT PG_TERMINATE_BACKEND(139834759993104);
If information similar to the following is displayed, the session is successfully terminated:
1 2 3 4
PG_TERMINATE_BACKEND ---------------------- t (1 row)
If information similar to the following is displayed, a user has terminated the current session:1 2
FATAL: terminating connection due to administrator command FATAL: terminating connection due to administrator command
If the PG_TERMINATE_BACKEND function is used to terminate the backend threads of the current session, the gsql client will be reconnected automatically rather than be logged out. The message "The connection to the server was lost. Attempting reset: Succeeded." is returned.
1 2 3
FATAL: terminating connection due to administrator command FATAL: terminating connection due to administrator command The connection to the server was lost. Attempting reset: Succeeded.
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