diff --git a/content/en/docs/Developerguide/administrators.md b/content/en/docs/Developerguide/administrators.md
index c51762f2b1d13ebdb217b45906a42d60ec19936a..79e037c3a9d5bcd52ac787c344973799f89d5307 100644
--- a/content/en/docs/Developerguide/administrators.md
+++ b/content/en/docs/Developerguide/administrators.md
@@ -24,21 +24,5 @@ postgres=# ALTER USER joe SYSADMIN;
To run the **ALTER USER** statement, the user must exist.
-## Monitoring Administrators
-A monitoring administrator is an account with the **MONADMIN** attribute and has the permissions to query views and functions in **dbe\_perf** mode. A monitoring administrator can also grant or revoke object permissions in **dbe\_perf** mode.
-
-To create a monitoring administrator, connect to the database as the initial user and run the **[CREATE USER](create-user.md)** or **[ALTER USER](alter-user.md)** statement with **MONADMIN** specified.
-
-```
-postgres=# CREATE USER monadmin WITH MONADMIN password "Bigdata@123";
-```
-
-or
-
-```
-postgres=# ALTER USER joe MONADMIN;
-```
-
-To run the **ALTER USER** statement, the user must exist.
diff --git a/content/en/docs/Developerguide/alter-role.md b/content/en/docs/Developerguide/alter-role.md
index 39cd2d3f7171aea77416404b6146387be258dcb6..5048ae0e2e1c46a4b343db8a9555b38343be5abc 100644
--- a/content/en/docs/Developerguide/alter-role.md
+++ b/content/en/docs/Developerguide/alter-role.md
@@ -24,9 +24,6 @@ None
| {INHERIT | NOINHERIT}
| {AUDITADMIN | NOAUDITADMIN}
| {SYSADMIN | NOSYSADMIN}
- | {MONADMIN | NOMONADMIN}
- | {OPRADMIN | NOOPRADMIN}
- | {POLADMIN | NOPOLADMIN}
| {USEFT | NOUSEFT}
| {LOGIN | NOLOGIN}
| {REPLICATION | NOREPLICATION}
@@ -44,7 +41,7 @@ None
| ACCOUNT { LOCK | UNLOCK }
| PGUSER
```
-
+
- Rename a role.
```
diff --git a/content/en/docs/Developerguide/alter-user.md b/content/en/docs/Developerguide/alter-user.md
index 7c45c25acca45ae8fb980f2965b022e92b9874d9..a2e55f686224004643d9112b33ac5b6fcc99023f 100644
--- a/content/en/docs/Developerguide/alter-user.md
+++ b/content/en/docs/Developerguide/alter-user.md
@@ -24,9 +24,6 @@ Session parameters modified by **ALTER USER** apply to a specified user and ta
| { INHERIT | NOINHERIT }
| { AUDITADMIN | NOAUDITADMIN }
| { SYSADMIN | NOSYSADMIN }
- | {MONADMIN | NOMONADMIN}
- | {OPRADMIN | NOOPRADMIN}
- | {POLADMIN | NOPOLADMIN}
| { USEFT | NOUSEFT }
| { LOGIN | NOLOGIN }
| { REPLICATION | NOREPLICATION }
@@ -42,7 +39,7 @@ Session parameters modified by **ALTER USER** apply to a specified user and ta
| ACCOUNT { LOCK | UNLOCK }
| PGUSER
```
-
+
- Change the username.
```
diff --git a/content/en/docs/Developerguide/create-user.md b/content/en/docs/Developerguide/create-user.md
index 3100305b071da4abe29af1ca2f8b9832fd6376de..c263de3d4dfe82e779ead4e95df2d0369cf64b79 100644
--- a/content/en/docs/Developerguide/create-user.md
+++ b/content/en/docs/Developerguide/create-user.md
@@ -20,9 +20,6 @@ The **option** clause is used to configure information, including permissions
```
{SYSADMIN | NOSYSADMIN}
- | {MONADMIN | NOMONADMIN}
- | {OPRADMIN | NOOPRADMIN}
- | {POLADMIN | NOPOLADMIN}
| {AUDITADMIN | NOAUDITADMIN}
| {CREATEDB | NOCREATEDB}
| {USEFT | NOUSEFT}
diff --git a/content/en/docs/Developerguide/dbe_perf-schema.md b/content/en/docs/Developerguide/dbe_perf-schema.md
index 36b2bc5b6155c0eb36e052a9787840a1f906d4b7..78ded17b3b942cf375e3de43fabf17efc52df007 100644
--- a/content/en/docs/Developerguide/dbe_perf-schema.md
+++ b/content/en/docs/Developerguide/dbe_perf-schema.md
@@ -1,6 +1,6 @@
# DBE\_PERF Schema
-In the **DBE\_PERF** schema, views are used to diagnose performance issues and are also the data source of WDR snapshots. After the database is installed, only the initial user and administrator have permissions for the **DBE\_PERF** schema by default. If the database is upgraded from an earlier version, permissions for the **DBE\_PERF** schema are the same as those of the earlier version to ensure forward compatibility. Organization views are divided based on multiple dimensions, such as OS, instance, and memory. These views comply with the following naming rules:
+In the **DBE\_PERF** schema, views are used to diagnose performance issues and are also the data source of WDR snapshots. After the database is installed, only the initial user have permissions for the **DBE\_PERF** schema by default. If the database is upgraded from an earlier version, permissions for the **DBE\_PERF** schema are the same as those of the earlier version to ensure forward compatibility. Organization views are divided based on multiple dimensions, such as OS, instance, and memory. These views comply with the following naming rules:
- Views starting with **GLOBAL\_**: Request data from database nodes and return the data without processing them.
- Views starting with **SUMMARY\_**: Summarize data in openGauss. In most cases, data from database nodes \(sometimes only the primary database node\) is processed, collected, and returned.
diff --git a/content/en/docs/Developerguide/global_bgwriter_stat.md b/content/en/docs/Developerguide/global_bgwriter_stat.md
index 2954802fd824f00e24d3fff1d7006e72ca277acb..84eb2a5d7f6dc1906d2879ea57f3cb7afb99c67e 100644
--- a/content/en/docs/Developerguide/global_bgwriter_stat.md
+++ b/content/en/docs/Developerguide/global_bgwriter_stat.md
@@ -1,6 +1,6 @@
# GLOBAL\_BGWRITER\_STAT
-**GLOBAL\_BGWRITER\_STAT** displays statistics about the background writer process's activities on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_BGWRITER\_STAT** displays statistics about the background writer process's activities on each node.
**Table 1** GLOBAL\_BGWRITER\_STAT columns
diff --git a/content/en/docs/Developerguide/global_ckpt_status.md b/content/en/docs/Developerguide/global_ckpt_status.md
index 83159a6ff4e991c5b22fa0f77f919660fe27711f..2356031c777a7b898178544cd88802c08c08b09f 100644
--- a/content/en/docs/Developerguide/global_ckpt_status.md
+++ b/content/en/docs/Developerguide/global_ckpt_status.md
@@ -1,6 +1,6 @@
# GLOBAL\_CKPT\_STATUS
-**GLOBAL\_CKPT\_STATUS** displays the checkpoint information and log flushing information about all instances in openGauss. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_CKPT\_STATUS** displays the checkpoint information and log flushing information about all instances in openGauss.
**Table 1** GLOBAL\_CKPT\_STATUS columns
diff --git a/content/en/docs/Developerguide/global_config_settings.md b/content/en/docs/Developerguide/global_config_settings.md
index 5226ab9e4d3535dd9878cea25846d05eea44280f..c887e9dc1c3d2986bca40a546d98dbaca4d6b53b 100644
--- a/content/en/docs/Developerguide/global_config_settings.md
+++ b/content/en/docs/Developerguide/global_config_settings.md
@@ -1,6 +1,6 @@
# GLOBAL\_CONFIG\_SETTINGS
-**GLOBAL\_CONFIG\_SETTINGS** displays information about parameters of running databases on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_CONFIG\_SETTINGS** displays information about parameters of running databases on each node.
**Table 1** GLOBAL\_CONFIG\_SETTINGS columns
diff --git a/content/en/docs/Developerguide/global_double_write_status.md b/content/en/docs/Developerguide/global_double_write_status.md
index bd1385eb4a7e63205d61ae5bbcc08e8219a0c554..a856f981567c36b4a35ab2138d4529086f72fd6d 100644
--- a/content/en/docs/Developerguide/global_double_write_status.md
+++ b/content/en/docs/Developerguide/global_double_write_status.md
@@ -1,6 +1,6 @@
# GLOBAL\_DOUBLE\_WRITE\_STATUS
-**GLOBAL\_DOUBLE\_WRITE\_STATUS** displays doublewrite file status of all instances in openGauss. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_DOUBLE\_WRITE\_STATUS** displays doublewrite file status of all instances in openGauss.
**Table 1** GLOBAL\_DOUBLEWRITE\_STATUS columns
diff --git a/content/en/docs/Developerguide/global_file_iostat.md b/content/en/docs/Developerguide/global_file_iostat.md
index aeb266d9e21798bdce8cf1befe7e8462ccffedd6..b056f7a3d195d41679a881088b71ecfcd079c3bf 100644
--- a/content/en/docs/Developerguide/global_file_iostat.md
+++ b/content/en/docs/Developerguide/global_file_iostat.md
@@ -1,6 +1,6 @@
# GLOBAL\_FILE\_IOSTAT
-**GLOBAL\_FILE\_IOSTAT** records statistics about data file I/Os on all nodes. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_FILE\_IOSTAT** records statistics about data file I/Os on all nodes.
**Table 1** GLOBAL\_FILE\_IOSTAT columns
diff --git a/content/en/docs/Developerguide/global_file_redo_iostat.md b/content/en/docs/Developerguide/global_file_redo_iostat.md
index 68cc0e22b1be53885de88727ec073e891838eb7a..e0f4044abf35bf7b936c0a9ed176d11ccd52de40 100644
--- a/content/en/docs/Developerguide/global_file_redo_iostat.md
+++ b/content/en/docs/Developerguide/global_file_redo_iostat.md
@@ -1,6 +1,6 @@
# GLOBAL\_FILE\_REDO\_IOSTAT
-**GLOBAL\_FILE\_REDO\_IOSTAT** records statistics about redo logs and WALs on each node in openGauss. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_FILE\_REDO\_IOSTAT** records statistics about redo logs and WALs on each node in openGauss.
**Table 1** GLOBALXC\_FILE\_REDO\_IOSTAT columns
diff --git a/content/en/docs/Developerguide/global_instance_time.md b/content/en/docs/Developerguide/global_instance_time.md
index c1a2bef6e72e1b872f4a450cd9e180ca5d44520a..e2f920ae24f0609bf2c9f0c990ce481bc3b25496 100644
--- a/content/en/docs/Developerguide/global_instance_time.md
+++ b/content/en/docs/Developerguide/global_instance_time.md
@@ -1,6 +1,6 @@
# GLOBAL\_INSTANCE\_TIME
-**GLOBAL\_INSTANCE\_TIME** provides time consumption information about all normal nodes in openGauss. For details about the time types, see the **INSTANCE\_TIME** view. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_INSTANCE\_TIME** provides time consumption information about all normal nodes in openGauss. For details about the time types, see the **INSTANCE\_TIME** view.
**Table 1** GLOBAL\_INSTANCE\_TIME columns
diff --git a/content/en/docs/Developerguide/global_locks.md b/content/en/docs/Developerguide/global_locks.md
index eb8dcbace6de9eb6b80861bc895012be0db6e664..e0b19cfc68f44d63580872f99d5ef45f0cab675e 100644
--- a/content/en/docs/Developerguide/global_locks.md
+++ b/content/en/docs/Developerguide/global_locks.md
@@ -1,6 +1,6 @@
# GLOBAL\_LOCKS
-**GLOBAL\_LOCKS** displays information about locks held by open transactions on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_LOCKS** displays information about locks held by open transactions on each node.
**Table 1** GLOBAL\_LOCKS columns
diff --git a/content/en/docs/Developerguide/global_memory_node_detail.md b/content/en/docs/Developerguide/global_memory_node_detail.md
index 90ffca7b179157d84f099c3a6009a1a5a95b0b23..8581c0883f30afee5369c8cd2fe6124e6278b93f 100644
--- a/content/en/docs/Developerguide/global_memory_node_detail.md
+++ b/content/en/docs/Developerguide/global_memory_node_detail.md
@@ -1,6 +1,6 @@
# GLOBAL\_MEMORY\_NODE\_DETAIL
-The memory usage of all normal nodes in openGauss is displayed. Query the view as a user with the **monadmin** permission.
+The memory usage of all normal nodes in openGauss is displayed.
**Table 1** GLOBAL\_MEMORY\_NODE\_DETAIL fields
diff --git a/content/en/docs/Developerguide/global_operator_history.md b/content/en/docs/Developerguide/global_operator_history.md
index 033a26bebea47f033ab0fe09dc16dc52bad41915..91dfbd8726f664e89115d6a8b5a212e77d071901 100644
--- a/content/en/docs/Developerguide/global_operator_history.md
+++ b/content/en/docs/Developerguide/global_operator_history.md
@@ -1,6 +1,6 @@
# GLOBAL\_OPERATOR\_HISTORY
-**GLOBAL\_OPERATOR\_HISTORY** displays records of operators in jobs that have been executed by the current user on the primary database node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_OPERATOR\_HISTORY** displays records of operators in jobs that have been executed by the current user on the primary database node.
**Table 1** GLOBAL\_OPERATOR\_HISTORY columns
diff --git a/content/en/docs/Developerguide/global_operator_history_table.md b/content/en/docs/Developerguide/global_operator_history_table.md
index ed315a119b683949ca6406017447b54a4e28e47e..ab4e1305851770d031517fae8c02795246c4dde5 100644
--- a/content/en/docs/Developerguide/global_operator_history_table.md
+++ b/content/en/docs/Developerguide/global_operator_history_table.md
@@ -1,4 +1,4 @@
# GLOBAL\_OPERATOR\_HISTORY\_TABLE
-**GLOBAL\_OPERATOR\_HISTORY\_TABLE** displays the records about operators of completed jobs on the primary database node. Data is dumped from the kernel to the system catalog **GS\_WLM\_OPERATOR\_INFO**. **GLOBAL\_OPERATOR\_HISTORY\_TABLE** is a collection view for querying the system catalog **GS\_WLM\_OPERATOR\_INFO** on the primary database node. Columns in this view are the same as those in [Table 1](global_operator_history.md#en-us_topic_0237122744_en-us_topic_0111176227_table85181143511). To query this view, you must have the **monadmin** permission.
+**GLOBAL\_OPERATOR\_HISTORY\_TABLE** displays the records about operators of completed jobs on the primary database node. Data is dumped from the kernel to the system catalog **GS\_WLM\_OPERATOR\_INFO**. **GLOBAL\_OPERATOR\_HISTORY\_TABLE** is a collection view for querying the system catalog **GS\_WLM\_OPERATOR\_INFO** on the primary database node. Columns in this view are the same as those in [Table 1](global_operator_history.md#en-us_topic_0237122744_en-us_topic_0111176227_table85181143511).
diff --git a/content/en/docs/Developerguide/global_operator_runtime.md b/content/en/docs/Developerguide/global_operator_runtime.md
index 9c4ce3c4b49640f95bccfee3b26b0743dc895573..20c353d586baadca01fa0f021df74cfca1441a3e 100644
--- a/content/en/docs/Developerguide/global_operator_runtime.md
+++ b/content/en/docs/Developerguide/global_operator_runtime.md
@@ -1,6 +1,6 @@
# GLOBAL\_OPERATOR\_RUNTIME
-**GLOBAL\_OPERATOR\_RUNTIME** displays information about operators of the jobs that are being executed by the current user on the primary database node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_OPERATOR\_RUNTIME** displays information about operators of the jobs that are being executed by the current user on the primary database node.
**Table 1** GLOBAL\_OPERATOR\_RUNTIME columns
diff --git a/content/en/docs/Developerguide/global_os_runtime.md b/content/en/docs/Developerguide/global_os_runtime.md
index 086f6ed63b07ee3e15f13e4477d121ba1ba297f6..50bbb97fc5464d1fe571ee5339d9b05701c70610 100644
--- a/content/en/docs/Developerguide/global_os_runtime.md
+++ b/content/en/docs/Developerguide/global_os_runtime.md
@@ -1,6 +1,6 @@
# GLOBAL\_OS\_RUNTIME
-**GLOBAL\_OS\_RUNTIME** provides OS running status information about all normal nodes in openGauss. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_OS\_RUNTIME** provides OS running status information about all normal nodes in openGauss.
**Table 1** GLOBAL\_OS\_RUNTIME columns
diff --git a/content/en/docs/Developerguide/global_os_threads.md b/content/en/docs/Developerguide/global_os_threads.md
index 07d480fcba3b58d9f7c5f045b79d8c200f3bf3f9..33019cecbaaac2157cc21973e249689d85397ba1 100644
--- a/content/en/docs/Developerguide/global_os_threads.md
+++ b/content/en/docs/Developerguide/global_os_threads.md
@@ -1,6 +1,6 @@
# GLOBAL\_OS\_THREADS
-**GLOBAL\_OS\_THREADS** provides status information about threads on all normal nodes in openGauss. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_OS\_THREADS** provides status information about threads on all normal nodes in openGauss.
**Table 1** GLOBAL\_OS\_THREADS columns
diff --git a/content/en/docs/Developerguide/global_pagewriter_status.md b/content/en/docs/Developerguide/global_pagewriter_status.md
index 05e64e1b65d9405a425343dc0f93284eb7082752..44125f98e7a5d0c1c3fda49b23db31d21d143f2a 100644
--- a/content/en/docs/Developerguide/global_pagewriter_status.md
+++ b/content/en/docs/Developerguide/global_pagewriter_status.md
@@ -1,6 +1,6 @@
# GLOBAL\_PAGEWRITER\_STATUS
-**GLOBAL\_PAGEWRITER\_STATUS** displays the page flushing information and checkpoint information about all instances in openGauss. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_PAGEWRITER\_STATUS** displays the page flushing information and checkpoint information about all instances in openGauss.
**Table 1** GLOBAL\_PAGEWRITER\_STATUS columns
diff --git a/content/en/docs/Developerguide/global_record_reset_time.md b/content/en/docs/Developerguide/global_record_reset_time.md
index ea86e86262f2d209a8c9631f1b02a075726a0c48..bfef8cf84a7353a35e39660b82fc4418fd1cf9ee 100644
--- a/content/en/docs/Developerguide/global_record_reset_time.md
+++ b/content/en/docs/Developerguide/global_record_reset_time.md
@@ -1,6 +1,6 @@
# GLOBAL\_RECORD\_RESET\_TIME
-**GLOBAL\_RECORD\_RESET\_TIME** displays statistics about reset time in openGauss. Restart, primary/standby switchover, and database deletion will cause the time to be reset. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_RECORD\_RESET\_TIME** displays statistics about reset time in openGauss. Restart, primary/standby switchover, and database deletion will cause the time to be reset.
**Table 1** GLOBAL\_RECORD\_RESET\_TIME columns
diff --git a/content/en/docs/Developerguide/global_recovery_status.md b/content/en/docs/Developerguide/global_recovery_status.md
index dffdd1c2a376fbd2d5e16bb20768ed16b808b284..6b4811e469919446fecc72829b8f3391867f3c3b 100644
--- a/content/en/docs/Developerguide/global_recovery_status.md
+++ b/content/en/docs/Developerguide/global_recovery_status.md
@@ -1,6 +1,6 @@
# GLOBAL\_RECOVERY\_STATUS
-**GLOBAL\_RECOVERY\_STATUS** displays log flow control information about the primary and standby nodes. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_RECOVERY\_STATUS** displays log flow control information about the primary and standby nodes.
**Table 1** GLOBAL\_RECOVERY\_STATUS columns
diff --git a/content/en/docs/Developerguide/global_redo_status.md b/content/en/docs/Developerguide/global_redo_status.md
index 8b7ed9eda1d81652cfc20a03eb73257a25ca579c..4901f6fcbce43b541ae4d7ee030277369f2ff0cb 100644
--- a/content/en/docs/Developerguide/global_redo_status.md
+++ b/content/en/docs/Developerguide/global_redo_status.md
@@ -1,6 +1,6 @@
# GLOBAL\_REDO\_STATUS
-**GLOBAL\_REDO\_STATUS** displays the log replay status of all instances in openGauss. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_REDO\_STATUS** displays the log replay status of all instances in openGauss.
**Table 1** GLOBAL\_REDO\_STATUS columns
diff --git a/content/en/docs/Developerguide/global_rel_iostat.md b/content/en/docs/Developerguide/global_rel_iostat.md
index 52ab623ffabc186828d49c5911a9eabf8c06716b..da2a0b1e611d24860bcdae90dd1733fd989d4898 100644
--- a/content/en/docs/Developerguide/global_rel_iostat.md
+++ b/content/en/docs/Developerguide/global_rel_iostat.md
@@ -1,6 +1,6 @@
# GLOBAL\_REL\_IOSTAT
-**GLOBAL\_REL\_IOSTAT** obtains statistics about data file I/Os on all nodes. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_REL\_IOSTAT** obtains statistics about data file I/Os on all nodes.
**Table 1** GLOBAL\_REL\_IOSTAT columns
diff --git a/content/en/docs/Developerguide/global_replication_slots.md b/content/en/docs/Developerguide/global_replication_slots.md
index 9df2b0073126c8d2e8e4af9f25c0f88fb5ce5037..62e50c3a4966e94f1a5a61ea9112e6fe17e9ac27 100644
--- a/content/en/docs/Developerguide/global_replication_slots.md
+++ b/content/en/docs/Developerguide/global_replication_slots.md
@@ -1,6 +1,6 @@
# GLOBAL\_REPLICATION\_SLOTS
-**GLOBAL\_REPLICATION\_SLOTS** displays replication node information of each node in openGauss. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_REPLICATION\_SLOTS** displays replication node information of each node in openGauss.
**Table 1** GLOBAL\_REPLICATION\_SLOTS columns
diff --git a/content/en/docs/Developerguide/global_replication_stat.md b/content/en/docs/Developerguide/global_replication_stat.md
index c571df998bb6dd53147cc06a542a170ea502fb74..75f0f9f7501091fb2cb002f56e9266ad0cc9b40e 100644
--- a/content/en/docs/Developerguide/global_replication_stat.md
+++ b/content/en/docs/Developerguide/global_replication_stat.md
@@ -1,6 +1,6 @@
# GLOBAL\_REPLICATION\_STAT
-**GLOBAL\_REPLICATION\_STAT** displays information about log synchronization status on each node, such as the locations where the sender sends logs and where the receiver receives logs. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_REPLICATION\_STAT** displays information about log synchronization status on each node, such as the locations where the sender sends logs and where the receiver receives logs.
**Table 1** GLOBAL\_REPLICATION\_STAT columns
diff --git a/content/en/docs/Developerguide/global_session_memory.md b/content/en/docs/Developerguide/global_session_memory.md
index ab465bdbc947d7a846255597f3ff8e709ce1872b..7ad86df8f418515f42f4a0e4d8930eeafba88751 100644
--- a/content/en/docs/Developerguide/global_session_memory.md
+++ b/content/en/docs/Developerguide/global_session_memory.md
@@ -1,6 +1,6 @@
# GLOBAL\_SESSION\_MEMORY
-**GLOBAL\_SESSION\_MEMORY** collects statistics about memory usage at the session level on each node in the unit of MB, including all the memory allocated to Postgres and stream threads on DNs for jobs currently executed by users. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_SESSION\_MEMORY** collects statistics about memory usage at the session level on each node in the unit of MB, including all the memory allocated to Postgres and stream threads on DNs for jobs currently executed by users.
**Table 1** GLOBAL\_SESSION\_MEMORY columns
diff --git a/content/en/docs/Developerguide/global_session_memory_detail.md b/content/en/docs/Developerguide/global_session_memory_detail.md
index 9486704760600c6a35c45e8b0a3abf966d320df5..972b09010874f85d40f97f4e6a14bd7bfaeb8bee 100644
--- a/content/en/docs/Developerguide/global_session_memory_detail.md
+++ b/content/en/docs/Developerguide/global_session_memory_detail.md
@@ -1,6 +1,6 @@
# GLOBAL\_SESSION\_MEMORY\_DETAIL
-**GLOBAL\_SESSION\_MEMORY\_DETAIL** collects statistics about thread memory usage on each node by MemoryContext node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_SESSION\_MEMORY\_DETAIL** collects statistics about thread memory usage on each node by MemoryContext node.
**Table 1** GLOBAL\_SESSION\_MEMORY\_DETAIL columns
diff --git a/content/en/docs/Developerguide/global_session_stat.md b/content/en/docs/Developerguide/global_session_stat.md
index acd9c9d810c002dc9a824f0287c501dd520b8318..9e909f8d72213f498d2ab24c5151c48691ca5074 100644
--- a/content/en/docs/Developerguide/global_session_stat.md
+++ b/content/en/docs/Developerguide/global_session_stat.md
@@ -1,6 +1,6 @@
# GLOBAL\_SESSION\_STAT
-**GLOBAL\_SESSION\_STAT** collects statistics about session status on each node based on session threads or the **AutoVacuum** thread. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_SESSION\_STAT** collects statistics about session status on each node based on session threads or the **AutoVacuum** thread.
**Table 1** GLOBAL\_SESSION\_STAT columns
diff --git a/content/en/docs/Developerguide/global_session_stat_activity.md b/content/en/docs/Developerguide/global_session_stat_activity.md
index 95f7e2eeff5261bde1c62db2e90fc39f116195d7..373683acab63c332709a4b81368a963e4b028ac2 100644
--- a/content/en/docs/Developerguide/global_session_stat_activity.md
+++ b/content/en/docs/Developerguide/global_session_stat_activity.md
@@ -1,6 +1,6 @@
# GLOBAL\_SESSION\_STAT\_ACTIVITY
-**GLOBAL\_SESSION\_STAT\_ACTIVITY** displays information about threads that are running on each node in openGauss. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_SESSION\_STAT\_ACTIVITY** displays information about threads that are running on each node in openGauss.
**Table 1** GLOBAL\_SESSION\_STAT\_ACTIVITY columns
diff --git a/content/en/docs/Developerguide/global_session_time.md b/content/en/docs/Developerguide/global_session_time.md
index 014e66241305fc60ca127d8fb951e1828b235d03..c30312fd7193441916bd706589d36125d76f8b22 100644
--- a/content/en/docs/Developerguide/global_session_time.md
+++ b/content/en/docs/Developerguide/global_session_time.md
@@ -1,6 +1,6 @@
# GLOBAL\_SESSION\_TIME
-**GLOBAL\_SESSION\_TIME** collects statistics about the running time of session threads and time consumed in each execution phase on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_SESSION\_TIME** collects statistics about the running time of session threads and time consumed in each execution phase on each node.
**Table 1** GLOBAL\_SESSION\_TIME columns
diff --git a/content/en/docs/Developerguide/global_shared_memory_detail.md b/content/en/docs/Developerguide/global_shared_memory_detail.md
index e556c3ec849fb29f0e23023ccd743271f6c0f95a..ff786700da7f3c25469989cdceb753cc6a17ad86 100644
--- a/content/en/docs/Developerguide/global_shared_memory_detail.md
+++ b/content/en/docs/Developerguide/global_shared_memory_detail.md
@@ -1,6 +1,6 @@
# GLOBAL\_SHARED\_MEMORY\_DETAIL
-**GLOBAL\_SHARED\_MEMORY\_DETAIL** is used to query the usage of shared memory contexts on all normal nodes in openGauss. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_SHARED\_MEMORY\_DETAIL** is used to query the usage of shared memory contexts on all normal nodes in openGauss.
**Table 1** GLOBAL\_SHARED\_MEMORY\_DETAIL columns
diff --git a/content/en/docs/Developerguide/global_stat_all_indexes.md b/content/en/docs/Developerguide/global_stat_all_indexes.md
index e5f5be4f189a13972ed4daa990ed599fad6498cc..5b7d52fa238e45d1ca590cee3e6f05dcb32627a9 100644
--- a/content/en/docs/Developerguide/global_stat_all_indexes.md
+++ b/content/en/docs/Developerguide/global_stat_all_indexes.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_ALL\_INDEXES
-**GLOBAL\_STAT\_ALL\_INDEXES** contains every row of each index in databases on each node, showing statistics about accesses to specific indexes. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_ALL\_INDEXES** contains every row of each index in databases on each node, showing statistics about accesses to specific indexes.
**Table 1** GLOBAL\_STAT\_ALL\_INDEXES columns
diff --git a/content/en/docs/Developerguide/global_stat_all_tables.md b/content/en/docs/Developerguide/global_stat_all_tables.md
index 5288d1c5f59c9b0b26c021e15dde63fd273ee45a..ae4220b8b3694e84d862f3f0e8155664686525bb 100644
--- a/content/en/docs/Developerguide/global_stat_all_tables.md
+++ b/content/en/docs/Developerguide/global_stat_all_tables.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_ALL\_TABLES
-**GLOBAL\_STAT\_ALL\_TABLES** displays statistics about one row for each table \(including TOAST tables\) in databases on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_ALL\_TABLES** displays statistics about one row for each table \(including TOAST tables\) in databases on each node.
**Table 1** GLOBAL\_STAT\_ALL\_TABLES columns
diff --git a/content/en/docs/Developerguide/global_stat_bad_block.md b/content/en/docs/Developerguide/global_stat_bad_block.md
index d857960f7d653eadbc8864fecfe1a0b34314dfd5..2309f08eae890f504b7cb519339257e3ddc9bc93 100644
--- a/content/en/docs/Developerguide/global_stat_bad_block.md
+++ b/content/en/docs/Developerguide/global_stat_bad_block.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_BAD\_BLOCK
-**GLOBAL\_STAT\_BAD\_BLOCK** displays information about table and index read failures on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_BAD\_BLOCK** displays information about table and index read failures on each node.
**Table 1** GLOBAL\_STAT\_BAD\_BLOCK columns
diff --git a/content/en/docs/Developerguide/global_stat_database.md b/content/en/docs/Developerguide/global_stat_database.md
index 0f9d42c96fe6ba25b22a694fed26ffece847e130..a0b7db662b82fe8986c78f5dd80bfab1f275871c 100644
--- a/content/en/docs/Developerguide/global_stat_database.md
+++ b/content/en/docs/Developerguide/global_stat_database.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_DATABASE
-**GLOBAL\_STAT\_DATABASE** contains every row of each database on each node in openGauss, showing database-wide statistics. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_DATABASE** contains every row of each database on each node in openGauss, showing database-wide statistics.
**Table 1** GLOBAL\_STAT\_DATABASE columns
diff --git a/content/en/docs/Developerguide/global_stat_database_conflicts.md b/content/en/docs/Developerguide/global_stat_database_conflicts.md
index 68adbc452a54de0961e6a01344e0b9b617ef6bc6..e09e60ed9d8ecf522a1a4754372574753a679883 100644
--- a/content/en/docs/Developerguide/global_stat_database_conflicts.md
+++ b/content/en/docs/Developerguide/global_stat_database_conflicts.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_DATABASE\_CONFLICTS
-**GLOBAL\_STAT\_DATABASE\_CONFLICTS** displays statistics about database conflicts on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_DATABASE\_CONFLICTS** displays statistics about database conflicts on each node.
**Table 1** GLOBAL\_STAT\_DATABASE\_CONFLICTS columns
diff --git a/content/en/docs/Developerguide/global_stat_db_cu.md b/content/en/docs/Developerguide/global_stat_db_cu.md
index 65cdc69d32343419500aabb70ae5d6969aa874a3..49e7657207bb942ba8df61d0726bac2c67fe39db 100644
--- a/content/en/docs/Developerguide/global_stat_db_cu.md
+++ b/content/en/docs/Developerguide/global_stat_db_cu.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_DB\_CU
-**GLOBAL\_STAT\_DB\_CU** is used to query CU hits in each database in openGauss. You can clear it using **gs\_stat\_reset\(\)**. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_DB\_CU** is used to query CU hits in each database in openGauss. You can clear it using **gs\_stat\_reset\(\)**.
**Table 1** GLOBAL\_STAT\_DB\_CU columns
diff --git a/content/en/docs/Developerguide/global_stat_session_cu.md b/content/en/docs/Developerguide/global_stat_session_cu.md
index abcbcfdf0c7dbd9f81f5f27b4c300c021f750cf9..969c56a12271710c1f771fbb9b3b90918b867d55 100644
--- a/content/en/docs/Developerguide/global_stat_session_cu.md
+++ b/content/en/docs/Developerguide/global_stat_session_cu.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_SESSION\_CU
-**GLOBAL\_STAT\_SESSION\_CU** is used to query the CU hit rate of running sessions on each node in openGauss. The data about a session is cleared when you exit this session or restart openGauss. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_SESSION\_CU** is used to query the CU hit rate of running sessions on each node in openGauss. The data about a session is cleared when you exit this session or restart openGauss.
**Table 1** GLOBAL\_STAT\_SESSION\_CU columns
diff --git a/content/en/docs/Developerguide/global_stat_sys_indexes.md b/content/en/docs/Developerguide/global_stat_sys_indexes.md
index 9e35e5bd82af8333a8f6a58eef4982c495b1cbc4..79bc4a386b633f6780324d63bf064d88d68a2938 100644
--- a/content/en/docs/Developerguide/global_stat_sys_indexes.md
+++ b/content/en/docs/Developerguide/global_stat_sys_indexes.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_SYS\_INDEXES
-**GLOBAL\_STAT\_SYS\_INDEXES** displays index status information about all the system catalogs in the **pg\_catalog**, **information\_schema**, and **pg\_toast** schemas on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_SYS\_INDEXES** displays index status information about all the system catalogs in the **pg\_catalog**, **information\_schema**, and **pg\_toast** schemas on each node.
**Table 1** GLOBAL\_STAT\_SYS\_INDEXES columns
diff --git a/content/en/docs/Developerguide/global_stat_sys_tables.md b/content/en/docs/Developerguide/global_stat_sys_tables.md
index e14875d65f6f17fe76d339b658fcda186933079b..47161da514abf8c3d873ba8cbc88022574953191 100644
--- a/content/en/docs/Developerguide/global_stat_sys_tables.md
+++ b/content/en/docs/Developerguide/global_stat_sys_tables.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_SYS\_TABLES
-**GLOBAL\_STAT\_SYS\_TABLES** displays statistics about the system catalogs of all the namespaces in **pg\_catalog** and **information\_schema** schemas on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_SYS\_TABLES** displays statistics about the system catalogs of all the namespaces in **pg\_catalog** and **information\_schema** schemas on each node.
**Table 1** GLOBAL\_STAT\_SYS\_TABLES columns
diff --git a/content/en/docs/Developerguide/global_stat_user_functions.md b/content/en/docs/Developerguide/global_stat_user_functions.md
index 20fd766d22ae344357cfc5564c43f64e0c2654f3..c0e30043dbd0d475b37c293519a023a709c83f72 100644
--- a/content/en/docs/Developerguide/global_stat_user_functions.md
+++ b/content/en/docs/Developerguide/global_stat_user_functions.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_USER\_FUNCTIONS
-**GLOBAL\_STAT\_USER\_FUNCTIONS** displays statistics about the status of functions created by users on each node in openGauss. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_USER\_FUNCTIONS** displays statistics about the status of functions created by users on each node in openGauss.
**Table 1** GLOBAL\_STAT\_USER\_FUNCTIONS columns
diff --git a/content/en/docs/Developerguide/global_stat_user_indexes.md b/content/en/docs/Developerguide/global_stat_user_indexes.md
index c746472be68cb3b32f8e861004e42e5b033d8e63..5b8cc1a605b8111178f1afbaeea05d47a903abc0 100644
--- a/content/en/docs/Developerguide/global_stat_user_indexes.md
+++ b/content/en/docs/Developerguide/global_stat_user_indexes.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_USER\_INDEXES
-**GLOBAL\_STAT\_USER\_INDEXES** displays the status information about the index of user-defined ordinary tables in all databases of each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_USER\_INDEXES** displays the status information about the index of user-defined ordinary tables in all databases of each node.
**Table 1** GLOBAL\_STAT\_USER\_INDEXES columns
diff --git a/content/en/docs/Developerguide/global_stat_user_tables.md b/content/en/docs/Developerguide/global_stat_user_tables.md
index 9400ced5c8fa30b30a2d072449f9e2d8db989a74..bb534c28b98da79e11655fdbcd9c929de83baf3e 100644
--- a/content/en/docs/Developerguide/global_stat_user_tables.md
+++ b/content/en/docs/Developerguide/global_stat_user_tables.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_USER\_TABLES
-**GLOBAL\_STAT\_USER\_TABLES** displays the status information about user-defined ordinary tables in all namespaces on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_USER\_TABLES** displays the status information about user-defined ordinary tables in all namespaces on each node.
**Table 1** GLOBAL\_STAT\_USER\_TABLES columns
diff --git a/content/en/docs/Developerguide/global_stat_xact_all_tables.md b/content/en/docs/Developerguide/global_stat_xact_all_tables.md
index 7ddb2c939d454317afc8ec74b99868177c1a4e74..c2b2de66f78346c31f72dd0630154f09391312c3 100644
--- a/content/en/docs/Developerguide/global_stat_xact_all_tables.md
+++ b/content/en/docs/Developerguide/global_stat_xact_all_tables.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_XACT\_ALL\_TABLES
-**GLOBAL\_STAT\_XACT\_ALL\_TABLES** displays transaction status information about all ordinary tables and TOAST tables in namespaces on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_XACT\_ALL\_TABLES** displays transaction status information about all ordinary tables and TOAST tables in namespaces on each node.
**Table 1** GLOBAL\_STAT\_XACT\_ALL\_TABLES columns
diff --git a/content/en/docs/Developerguide/global_stat_xact_sys_tables.md b/content/en/docs/Developerguide/global_stat_xact_sys_tables.md
index be46448140b62ad5859fc50c07964f11274f6f10..32cea21006ab6bd4dc66b67fbf2b192913f7ee75 100644
--- a/content/en/docs/Developerguide/global_stat_xact_sys_tables.md
+++ b/content/en/docs/Developerguide/global_stat_xact_sys_tables.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_XACT\_SYS\_TABLES
-**GLOBAL\_STAT\_XACT\_SYS\_TABLES** displays transaction status information about the system catalogs in namespaces on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_XACT\_SYS\_TABLES** displays transaction status information about the system catalogs in namespaces on each node.
**Table 1** GLOBAL\_STAT\_XACT\_SYS\_TABLES columns
diff --git a/content/en/docs/Developerguide/global_stat_xact_user_functions.md b/content/en/docs/Developerguide/global_stat_xact_user_functions.md
index f335f07a407a25ec550eff260f4988c4ab14b68a..37df2c23f3e16f7df6fe056f0f1138be954672dd 100644
--- a/content/en/docs/Developerguide/global_stat_xact_user_functions.md
+++ b/content/en/docs/Developerguide/global_stat_xact_user_functions.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_XACT\_USER\_FUNCTIONS
-**GLOBAL\_STAT\_XACT\_USER\_FUNCTIONS** displays statistics about function executions in transactions on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_XACT\_USER\_FUNCTIONS** displays statistics about function executions in transactions on each node.
**Table 1** GLOBAL\_STAT\_XACT\_USER\_FUNCTIONS columns
diff --git a/content/en/docs/Developerguide/global_stat_xact_user_tables.md b/content/en/docs/Developerguide/global_stat_xact_user_tables.md
index 9d3776d3b94947ce6cd05606441ea2712acaca2d..21f5affc6483614758a0fb41ba5a0719b6eade19 100644
--- a/content/en/docs/Developerguide/global_stat_xact_user_tables.md
+++ b/content/en/docs/Developerguide/global_stat_xact_user_tables.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_XACT\_USER\_TABLES
-**GLOBAL\_STAT\_XACT\_USER\_TABLES** displays transaction status information about the user tables in namespaces on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STAT\_XACT\_USER\_TABLES** displays transaction status information about the user tables in namespaces on each node.
**Table 1** GLOBAL\_STAT\_XACT\_USER\_TABLES columns
diff --git a/content/en/docs/Developerguide/global_statement_complex_history.md b/content/en/docs/Developerguide/global_statement_complex_history.md
index 3f1d96ece758c0c508a2ac1cc3bfbc4f6edfaaed..ddb0bb484ea5298552f1e89a6826f465ad1ed648 100644
--- a/content/en/docs/Developerguide/global_statement_complex_history.md
+++ b/content/en/docs/Developerguide/global_statement_complex_history.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATEMENT\_COMPLEX\_HISTORY
-**GLOBAL\_STATEMENT\_COMPLEX\_HISTORY** displays load management records after jobs are executed on each node. To query this function, you must have the **monadmin** permission.
+**GLOBAL\_STATEMENT\_COMPLEX\_HISTORY** displays load management records after jobs are executed on each node.
**Table 1** GLOBAL\_STATEMENT\_COMPLEX\_HISTORY columns
diff --git a/content/en/docs/Developerguide/global_statement_complex_runtime.md b/content/en/docs/Developerguide/global_statement_complex_runtime.md
index 19111f03616bd5a364612c295795855f43388d93..90fdbb0796c01b6beea0eb0e93f784fc05703f3e 100644
--- a/content/en/docs/Developerguide/global_statement_complex_runtime.md
+++ b/content/en/docs/Developerguide/global_statement_complex_runtime.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATEMENT\_COMPLEX\_RUNTIME
-**GLOBAL\_STATEMENT\_COMPLEX\_RUNTIME** displays load management information about jobs being executed by the current user on each node. To query this function, you must have the **monadmin** permission.
+**GLOBAL\_STATEMENT\_COMPLEX\_RUNTIME** displays load management information about jobs being executed by the current user on each node.
**Table 1** GLOBAL\_STATEMENT\_COMPLEX\_RUNTIME columns
diff --git a/content/en/docs/Developerguide/global_statement_count.md b/content/en/docs/Developerguide/global_statement_count.md
index bdaf5a9d3454b0fc4944b696199e9b018ff0e6bf..e26219004bec149cbce24385b0c5e380ad2d96b0 100644
--- a/content/en/docs/Developerguide/global_statement_count.md
+++ b/content/en/docs/Developerguide/global_statement_count.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATEMENT\_COUNT
-**GLOBAL\_STATEMENT\_COUNT** displays statistics about five types of running statements \(**SELECT**, **INSERT**, **UPDATE**, **DELETE**, and **MERGE INTO**\) as well as DDL, DML, and DCL statements on each node of the database. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STATEMENT\_COUNT** displays statistics about five types of running statements \(**SELECT**, **INSERT**, **UPDATE**, **DELETE**, and **MERGE INTO**\) as well as DDL, DML, and DCL statements on each node of the database.
**Table 1** GLOBAL\_STATEMENT\_COUNT columns
diff --git a/content/en/docs/Developerguide/global_statio_all_indexes.md b/content/en/docs/Developerguide/global_statio_all_indexes.md
index 9b0289ead7036e16f4ebfdeecb514bb04ac0f067..98e6e5ba9d51da4649b6473ac6540c78ecb82299 100644
--- a/content/en/docs/Developerguide/global_statio_all_indexes.md
+++ b/content/en/docs/Developerguide/global_statio_all_indexes.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_ALL\_INDEXES
-**GLOBAL\_STATIO\_ALL\_INDEXES** contains one row for each index in databases on each node, showing I/O statistics about specific indexes. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STATIO\_ALL\_INDEXES** contains one row for each index in databases on each node, showing I/O statistics about specific indexes.
**Table 1** GLOBAL\_STATIO\_ALL\_INDEXES columns
diff --git a/content/en/docs/Developerguide/global_statio_all_sequences.md b/content/en/docs/Developerguide/global_statio_all_sequences.md
index 57cc0fdf1b60b9d475e13425f31c7622d7f46f82..6aea6e3685ef3a8f88ddd92dba7888e5139281ba 100644
--- a/content/en/docs/Developerguide/global_statio_all_sequences.md
+++ b/content/en/docs/Developerguide/global_statio_all_sequences.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_ALL\_SEQUENCES
-**GLOBAL\_STATIO\_ALL\_SEQUENCES** contains every row of each sequence in databases on each node, showing I/O statistics about specific sequences. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STATIO\_ALL\_SEQUENCES** contains every row of each sequence in databases on each node, showing I/O statistics about specific sequences.
**Table 1** GLOBAL\_STATIO\_ALL\_SEQUENCES columns
diff --git a/content/en/docs/Developerguide/global_statio_all_tables.md b/content/en/docs/Developerguide/global_statio_all_tables.md
index 5be29c9bc13184460cebd68b9f653b8877bab1db..14ca1cee219a3643a33da92c5dfcc065a5a108c1 100644
--- a/content/en/docs/Developerguide/global_statio_all_tables.md
+++ b/content/en/docs/Developerguide/global_statio_all_tables.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_ALL\_TABLES
-**GLOBAL\_STATIO\_ALL\_TABLES** contains I/O statistics about each table \(including TOAST tables\) in databases on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STATIO\_ALL\_TABLES** contains I/O statistics about each table \(including TOAST tables\) in databases on each node.
**Table 1** GLOBAL\_STATIO\_ALL\_TABLES columns
diff --git a/content/en/docs/Developerguide/global_statio_sys_indexes.md b/content/en/docs/Developerguide/global_statio_sys_indexes.md
index 2a20df981873c728a3bf157602a64c67e5e9e0a0..051efea1dd378c734150b3f295bb99332dbe391d 100644
--- a/content/en/docs/Developerguide/global_statio_sys_indexes.md
+++ b/content/en/docs/Developerguide/global_statio_sys_indexes.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_SYS\_INDEXES
-**GLOBAL\_STATIO\_SYS\_INDEXES** displays I/O status information about all system catalog indexes in namespaces on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STATIO\_SYS\_INDEXES** displays I/O status information about all system catalog indexes in namespaces on each node.
**Table 1** GLOBAL\_STATIO\_SYS\_INDEXES columns
diff --git a/content/en/docs/Developerguide/global_statio_sys_sequences.md b/content/en/docs/Developerguide/global_statio_sys_sequences.md
index c9e30fde5af5b99a025240da9b57702db5201854..93488f050e94558237ee8083ae874c7c9c3dcb7d 100644
--- a/content/en/docs/Developerguide/global_statio_sys_sequences.md
+++ b/content/en/docs/Developerguide/global_statio_sys_sequences.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_SYS\_SEQUENCES
-**GLOBAL\_STATIO\_SYS\_SEQUENCES** displays I/O status information about all system sequences in namespaces on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STATIO\_SYS\_SEQUENCES** displays I/O status information about all system sequences in namespaces on each node.
**Table 1** GLOBAL\_STATIO\_SYS\_SEQUENCES columns
diff --git a/content/en/docs/Developerguide/global_statio_sys_tables.md b/content/en/docs/Developerguide/global_statio_sys_tables.md
index a2be3594083edf6b755eecea2e4da536623643de..ec8fb292b64513eb258707bc2d8e13721643c9c4 100644
--- a/content/en/docs/Developerguide/global_statio_sys_tables.md
+++ b/content/en/docs/Developerguide/global_statio_sys_tables.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_SYS\_TABLES
-**GLOBAL\_STATIO\_SYS\_TABLES** displays I/O status information about all system catalogs in namespaces on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STATIO\_SYS\_TABLES** displays I/O status information about all system catalogs in namespaces on each node.
**Table 1** GLOBAL\_STATIO\_SYS\_TABLES columns
diff --git a/content/en/docs/Developerguide/global_statio_user_indexes.md b/content/en/docs/Developerguide/global_statio_user_indexes.md
index a62ad5a5ce984b9b56866a592be3a1528092936b..44831bd4dd221f9603ced44f29744c1060bf4a09 100644
--- a/content/en/docs/Developerguide/global_statio_user_indexes.md
+++ b/content/en/docs/Developerguide/global_statio_user_indexes.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_USER\_INDEXES
-**GLOBAL\_STATIO\_USER\_INDEXES** displays I/O status information about all user relationship table indexes in namespaces on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STATIO\_USER\_INDEXES** displays I/O status information about all user relationship table indexes in namespaces on each node.
**Table 1** GLOBAL\_STATIO\_USER\_INDEXES columns
diff --git a/content/en/docs/Developerguide/global_statio_user_sequences.md b/content/en/docs/Developerguide/global_statio_user_sequences.md
index 01ae9376e2ca46d2a34ef98ba706a622985b44c7..7157cafcd844dc3a22b00a9735ed9175b55a2e36 100644
--- a/content/en/docs/Developerguide/global_statio_user_sequences.md
+++ b/content/en/docs/Developerguide/global_statio_user_sequences.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_USER\_SEQUENCES
-**GLOBAL\_STATIO\_USER\_SEQUENCES** displays I/O status information about all user-defined sequences in namespaces on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STATIO\_USER\_SEQUENCES** displays I/O status information about all user-defined sequences in namespaces on each node.
**Table 1** GLOBAL\_STATIO\_USER\_SEQUENCES columns
diff --git a/content/en/docs/Developerguide/global_statio_user_tables.md b/content/en/docs/Developerguide/global_statio_user_tables.md
index 0124874204cdda329a7da4741471c61763907bf8..4ee0e64e64a851d88b1d62fba2f955cc7f304654 100644
--- a/content/en/docs/Developerguide/global_statio_user_tables.md
+++ b/content/en/docs/Developerguide/global_statio_user_tables.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_USER\_TABLES
-**GLOBAL\_STATIO\_USER\_TABLES** displays I/O status information about all user relationship tables in namespaces on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_STATIO\_USER\_TABLES** displays I/O status information about all user relationship tables in namespaces on each node.
**Table 1** GLOBAL\_STATIO\_USER\_TABLES columns
diff --git a/content/en/docs/Developerguide/global_thread_wait_status.md b/content/en/docs/Developerguide/global_thread_wait_status.md
index 88d926f58b140bd3ad82b706d201f8b22c3e0fdc..2093508abbce401d2f63473c8600cf0511ba4f98 100644
--- a/content/en/docs/Developerguide/global_thread_wait_status.md
+++ b/content/en/docs/Developerguide/global_thread_wait_status.md
@@ -1,6 +1,6 @@
# GLOBAL\_THREAD\_WAIT\_STATUS
-**GLOBAL\_THREAD\_WAIT\_STATUS** allows you to test the block waiting status of backend threads and auxiliary threads on all nodes. To query this view, you must have the **monadmin** permission. For details about events, see [Table 2](pg_thread_wait_status.md#en-us_topic_0237122466_en-us_topic_0059777957_t794f802302c24514a5db22d51eabacc4), [Table 3](pg_thread_wait_status.md#en-us_topic_0237122466_table38811324183420), [Table 4](pg_thread_wait_status.md#en-us_topic_0237122466_table124603113369), and [Table 5](pg_thread_wait_status.md#en-us_topic_0237122466_table11826123533718).
+**GLOBAL\_THREAD\_WAIT\_STATUS** allows you to test the block waiting status of backend threads and auxiliary threads on all nodes. For details about events, see [Table 2](pg_thread_wait_status.md#en-us_topic_0237122466_en-us_topic_0059777957_t794f802302c24514a5db22d51eabacc4), [Table 3](pg_thread_wait_status.md#en-us_topic_0237122466_table38811324183420), [Table 4](pg_thread_wait_status.md#en-us_topic_0237122466_table124603113369), and [Table 5](pg_thread_wait_status.md#en-us_topic_0237122466_table11826123533718).
In **GLOBAL\_THREAD\_WAIT\_STATUS**, you can see all the call hierarchy relationships between threads of the SQL statements on all nodes in openGauss, and the block waiting status for each thread. With this view, you can easily locate the causes of process hang and similar issues.
diff --git a/content/en/docs/Developerguide/global_transactions_prepared_xacts.md b/content/en/docs/Developerguide/global_transactions_prepared_xacts.md
index eab76dacb3e7ce29104fb22ef111a210c2fab9ff..d0dd41337890331bc66a0bde12656c7c27b1ee68 100644
--- a/content/en/docs/Developerguide/global_transactions_prepared_xacts.md
+++ b/content/en/docs/Developerguide/global_transactions_prepared_xacts.md
@@ -1,6 +1,6 @@
# GLOBAL\_TRANSACTIONS\_PREPARED\_XACTS
-**GLOBAL\_TRANSACTIONS\_PREPARED\_XACTS** displays information about transactions that are currently prepared for two-phase commit on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_TRANSACTIONS\_PREPARED\_XACTS** displays information about transactions that are currently prepared for two-phase commit on each node.
**Table 1** GLOBAL\_TRANSACTIONS\_PREPARED\_XACTS columns
diff --git a/content/en/docs/Developerguide/global_wait_events.md b/content/en/docs/Developerguide/global_wait_events.md
index b6d3bb9b520eb08c457df8df228a573724dbcae8..f06c9bf02d269311e6bc817f0f18fa4b9546e699 100644
--- a/content/en/docs/Developerguide/global_wait_events.md
+++ b/content/en/docs/Developerguide/global_wait_events.md
@@ -1,6 +1,6 @@
# GLOBAL\_WAIT\_EVENTS
-**GLOBAL\_WAIT\_EVENTS** displays statistics about wait events on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_WAIT\_EVENTS** displays statistics about wait events on each node.
**Table 1** GLOBAL\_WAIT\_EVENTS columns
diff --git a/content/en/docs/Developerguide/global_workload_transaction.md b/content/en/docs/Developerguide/global_workload_transaction.md
index 43a403d38e2ae197cf0893fec183b76f5c9d1a78..f6346389e571f3dace4d2260c5dec169d467c47e 100644
--- a/content/en/docs/Developerguide/global_workload_transaction.md
+++ b/content/en/docs/Developerguide/global_workload_transaction.md
@@ -1,6 +1,6 @@
# GLOBAL\_WORKLOAD\_TRANSACTION
-**GLOBAL\_WORKLOAD\_TRANSACTION** displays load information about workloads on each node. To query this view, you must have the **monadmin** permission.
+**GLOBAL\_WORKLOAD\_TRANSACTION** displays load information about workloads on each node.
**Table 1** GLOBAL\_WORKLOAD\_TRANSACTION columns
diff --git a/content/en/docs/Developerguide/pg_shadow.md b/content/en/docs/Developerguide/pg_shadow.md
index 12137875479795dede1d85e4742d7e57c27534ec..05e4dff25018a7c8ec2cd020cdb61b1eb0f69ef3 100644
--- a/content/en/docs/Developerguide/pg_shadow.md
+++ b/content/en/docs/Developerguide/pg_shadow.md
@@ -152,33 +152,7 @@ The name stems from the fact that this view should not be readable by the public
Session defaults for runtime configuration variables
|
-usemonitoradmin
- |
-Boolean
- |
--
- |
-User is a monitor administrator.
- |
-
-useoperatoradmin
- |
-Boolean
- |
--
- |
-User is an O&M administrator.
- |
-
-usepolicyadmin
- |
-Boolean
- |
--
- |
-User is a security policy administrator.
- |
-
+
diff --git a/content/en/docs/Developerguide/pg_user.md b/content/en/docs/Developerguide/pg_user.md
index 08b76b4ec4f19e2b3167a486a14f022938d5ec9b..6f50d7b32770dabd5076456fdbf68dac2c2c10ca 100644
--- a/content/en/docs/Developerguide/pg_user.md
+++ b/content/en/docs/Developerguide/pg_user.md
@@ -125,27 +125,7 @@
Name of the logical openGauss associated with the user. If no logical openGauss is associated, this column is left blank.
|
-usemonitoradmin
- |
-Boolean
- |
-Specifies whether the user is a monitor administrator.
- |
-
-useoperatoradmin
- |
-Boolean
- |
-Specifies whether the user is an O&M administrator.
- |
-
-usepolicyadmin
- |
-Boolean
- |
-Specifies whether the user is a security policy administrator.
- |
-
+
diff --git a/content/en/docs/Developerguide/statement.md b/content/en/docs/Developerguide/statement.md
index 86e290d8a3836e93549282201b198c3aaf7f598e..40e9d339d8f10a2a54f4da020ea2ca9c1624fb64 100644
--- a/content/en/docs/Developerguide/statement.md
+++ b/content/en/docs/Developerguide/statement.md
@@ -1,6 +1,6 @@
# STATEMENT
-**STATEMENT** obtains information about execution statements \(normalized SQL statements\) on the current node. To query this view, you must have the **sysadmin** permission. You can view all statistics about normalized SQL statements received by the primary database node and other database nodes, whereas you can view only the statistics about normalized SQL statements executed on other database nodes.
+**STATEMENT** obtains information about execution statements \(normalized SQL statements\) on the current node. You can view all statistics about normalized SQL statements received by the primary database node and other database nodes, whereas you can view only the statistics about normalized SQL statements executed on other database nodes.
**Table 1** STATEMENT columns
diff --git a/content/en/docs/Developerguide/summary_file_iostat.md b/content/en/docs/Developerguide/summary_file_iostat.md
index 31eab0ea2b3c2a434486030fc986f277d0b868c0..ced8076776a4a03a4cde87c86d7650985c0fcba0 100644
--- a/content/en/docs/Developerguide/summary_file_iostat.md
+++ b/content/en/docs/Developerguide/summary_file_iostat.md
@@ -1,6 +1,6 @@
# SUMMARY\_FILE\_IOSTAT
-**SUMMARY\_FILE\_IOSTAT** records statistics about data file I/Os in openGauss to indicate I/O performance and detect performance problems such as abnormal I/O operations. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_FILE\_IOSTAT** records statistics about data file I/Os in openGauss to indicate I/O performance and detect performance problems such as abnormal I/O operations.
**Table 1** SUMMARY\_FILE\_IOSTAT columns
diff --git a/content/en/docs/Developerguide/summary_file_redo_iostat.md b/content/en/docs/Developerguide/summary_file_redo_iostat.md
index c6174fd287d4c81fee61f6bc0c6d1b37b5456f00..65d40cd5d6333cf5e54c20f86398b68ff4c88b94 100644
--- a/content/en/docs/Developerguide/summary_file_redo_iostat.md
+++ b/content/en/docs/Developerguide/summary_file_redo_iostat.md
@@ -1,6 +1,6 @@
# SUMMARY\_FILE\_REDO\_IOSTAT
-**SUMMARY\_FILE\_REDO\_IOSTAT** records statistics about all redo logs and WALs in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_FILE\_REDO\_IOSTAT** records statistics about all redo logs and WALs in openGauss.
**Table 1** SUMMARY\_FILE\_REDO\_IOSTAT columns
diff --git a/content/en/docs/Developerguide/summary_rel_iostat.md b/content/en/docs/Developerguide/summary_rel_iostat.md
index 33333c559cece4b3377246951aad9cae52fd1e91..7878e75afc4b9afd84e553b6c4604677fa69d9ea 100644
--- a/content/en/docs/Developerguide/summary_rel_iostat.md
+++ b/content/en/docs/Developerguide/summary_rel_iostat.md
@@ -1,6 +1,6 @@
# SUMMARY\_REL\_IOSTAT
-**SUMMARY\_REL\_IOSTAT** obtains statistics about data file I/Os on all nodes. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_REL\_IOSTAT** obtains statistics about data file I/Os on all nodes.
**Table 1** SUMMARY\_REL\_IOSTAT columns
diff --git a/content/en/docs/Developerguide/summary_stat_all_indexes.md b/content/en/docs/Developerguide/summary_stat_all_indexes.md
index ec04bf02471929bbbef04cc6e785dbde700dc30e..617554a6129a6081892912584a96709219ba1ae0 100644
--- a/content/en/docs/Developerguide/summary_stat_all_indexes.md
+++ b/content/en/docs/Developerguide/summary_stat_all_indexes.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_ALL\_INDEXES
-**SUMMARY\_STAT\_ALL\_INDEXES** contains every row of each index in databases in openGauss, showing statistics about accesses to specific indexes. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_ALL\_INDEXES** contains every row of each index in databases in openGauss, showing statistics about accesses to specific indexes.
**Table 1** SUMMARY\_STAT\_ALL\_INDEXES columns
diff --git a/content/en/docs/Developerguide/summary_stat_all_tables.md b/content/en/docs/Developerguide/summary_stat_all_tables.md
index 015bb6d3cd3396652b88e908ad1eeb5de8c1433f..54476c8ca14b7a63721316db60f83f6143a4addd 100644
--- a/content/en/docs/Developerguide/summary_stat_all_tables.md
+++ b/content/en/docs/Developerguide/summary_stat_all_tables.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_ALL\_TABLES
-**SUMMARY\_STAT\_ALL\_TABLES** displays statistics about one row for each table \(including TOAST tables\) in databases in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_ALL\_TABLES** displays statistics about one row for each table \(including TOAST tables\) in databases in openGauss.
**Table 1** SUMMARY\_STAT\_ALL\_TABLES columns
diff --git a/content/en/docs/Developerguide/summary_stat_bad_block.md b/content/en/docs/Developerguide/summary_stat_bad_block.md
index cdae35375f8f7d401e545585ab9ead477b0ae7fe..f85df74f748712843bcb901f24b8380ec59c3231 100644
--- a/content/en/docs/Developerguide/summary_stat_bad_block.md
+++ b/content/en/docs/Developerguide/summary_stat_bad_block.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_BAD\_BLOCK
-**SUMMARY\_STAT\_BAD\_BLOCK** displays information about table and index read failures in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_BAD\_BLOCK** displays information about table and index read failures in openGauss.
**Table 1** SUMMARY\_STAT\_BAD\_BLOCK columns
diff --git a/content/en/docs/Developerguide/summary_stat_database.md b/content/en/docs/Developerguide/summary_stat_database.md
index 7e626ccc6d9d6ab4fcd307113a0f4568b3730d2e..c8841a352bcabcaceec8122894a48bad41a2d2b3 100644
--- a/content/en/docs/Developerguide/summary_stat_database.md
+++ b/content/en/docs/Developerguide/summary_stat_database.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_DATABASE
-**SUMMARY\_STAT\_DATABASE** contains every row of each database in the cluster, showing database-wide statistics. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_DATABASE** contains every row of each database in the cluster, showing database-wide statistics.
**Table 1** SUMMARY\_STAT\_DATABASE
diff --git a/content/en/docs/Developerguide/summary_stat_database_conflicts.md b/content/en/docs/Developerguide/summary_stat_database_conflicts.md
index affc0d67725841a0d108c7e15f28190677d2fc9d..f6f945a571b63da2f9a85bcc99aea2d68f55f522 100644
--- a/content/en/docs/Developerguide/summary_stat_database_conflicts.md
+++ b/content/en/docs/Developerguide/summary_stat_database_conflicts.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_DATABASE\_CONFLICTS
-**SUMMARY\_STAT\_DATABASE\_CONFLICTS** displays statistics about database conflicts in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_DATABASE\_CONFLICTS** displays statistics about database conflicts in openGauss.
**Table 1** SUMMARY\_STAT\_DATABASE\_CONFLICTS columns
diff --git a/content/en/docs/Developerguide/summary_stat_sys_indexes.md b/content/en/docs/Developerguide/summary_stat_sys_indexes.md
index 151d40419f4ef6d4bf3ec056d7ffa787ddf494c3..45c3fddbd0abd3c542a95a46c58b78de29984a2c 100644
--- a/content/en/docs/Developerguide/summary_stat_sys_indexes.md
+++ b/content/en/docs/Developerguide/summary_stat_sys_indexes.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_SYS\_INDEXES
-**SUMMARY\_STAT\_SYS\_INDEXES** displays index status information about all the system catalogs in the **pg\_catalog**, **information\_schema**, and **pg\_toast** schemas in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_SYS\_INDEXES** displays index status information about all the system catalogs in the **pg\_catalog**, **information\_schema**, and **pg\_toast** schemas in openGauss.
**Table 1** SUMMARY\_STAT\_SYS\_INDEXES columns
diff --git a/content/en/docs/Developerguide/summary_stat_sys_tables.md b/content/en/docs/Developerguide/summary_stat_sys_tables.md
index 3f86dd29731845e8c5f96e2f728232725bfe6992..ce36fe45a2a599fe41dae30436025742ec18048e 100644
--- a/content/en/docs/Developerguide/summary_stat_sys_tables.md
+++ b/content/en/docs/Developerguide/summary_stat_sys_tables.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_SYS\_TABLES
-**SUMMARY\_STAT\_SYS\_TABLES** displays statistics about the system catalogs of all the namespaces in **pg\_catalog** and **information\_schema** schemas in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_SYS\_TABLES** displays statistics about the system catalogs of all the namespaces in **pg\_catalog** and **information\_schema** schemas in openGauss.
**Table 1** SUMMARY\_STAT\_SYS\_TABLES columns
diff --git a/content/en/docs/Developerguide/summary_stat_user_functions.md b/content/en/docs/Developerguide/summary_stat_user_functions.md
index 62519069a316a26ae4f7c50af539db6b9360ed44..d32e55c90cd6c460accd4448b24f290a10b8481f 100644
--- a/content/en/docs/Developerguide/summary_stat_user_functions.md
+++ b/content/en/docs/Developerguide/summary_stat_user_functions.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_USER\_FUNCTIONS
-**SUMMARY\_STAT\_USER\_FUNCTIONS** displays statistics about user-defined views on all database nodes. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_USER\_FUNCTIONS** displays statistics about user-defined views on all database nodes.
**Table 1** SUMMARY\_STAT\_USER\_FUNCTIONS columns
diff --git a/content/en/docs/Developerguide/summary_stat_user_indexes.md b/content/en/docs/Developerguide/summary_stat_user_indexes.md
index fd9b8bca77836c63aa2320977a8ecd249e5b361e..4df547e3eb013c8cdb9296b35901b4f46c160866 100644
--- a/content/en/docs/Developerguide/summary_stat_user_indexes.md
+++ b/content/en/docs/Developerguide/summary_stat_user_indexes.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_USER\_INDEXES
-**SUMMARY\_STAT\_USER\_INDEXES** displays the status information about the index of user-defined ordinary tables in all databases in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_USER\_INDEXES** displays the status information about the index of user-defined ordinary tables in all databases in openGauss.
**Table 1** SUMMARY\_STAT\_USER\_INDEXES columns
diff --git a/content/en/docs/Developerguide/summary_stat_user_tables.md b/content/en/docs/Developerguide/summary_stat_user_tables.md
index 54b3aa224f62678cb516a9c4d89077697e3f4c3e..8df8f746099c9644a43817af086478a76d7eb5f4 100644
--- a/content/en/docs/Developerguide/summary_stat_user_tables.md
+++ b/content/en/docs/Developerguide/summary_stat_user_tables.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_USER\_TABLES
-**SUMMARY\_STAT\_USER\_TABLES** displays the status information about user-defined ordinary tables in all namespaces in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_USER\_TABLES** displays the status information about user-defined ordinary tables in all namespaces in openGauss.
**Table 1** SUMMARY\_STAT\_USER\_TABLES columns
diff --git a/content/en/docs/Developerguide/summary_stat_xact_all_tables.md b/content/en/docs/Developerguide/summary_stat_xact_all_tables.md
index aa153e8be1e244c043e3399bef2cc880ce83ce63..ec884dcd252441723bc82acef97dcd2f70183156 100644
--- a/content/en/docs/Developerguide/summary_stat_xact_all_tables.md
+++ b/content/en/docs/Developerguide/summary_stat_xact_all_tables.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_XACT\_ALL\_TABLES
-**SUMMARY\_STAT\_XACT\_ALL\_TABLES** displays transaction status information about all ordinary tables and TOAST tables in all namespaces in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_XACT\_ALL\_TABLES** displays transaction status information about all ordinary tables and TOAST tables in all namespaces in openGauss.
**Table 1** SUMMARY\_STAT\_XACT\_ALL\_TABLES columns
diff --git a/content/en/docs/Developerguide/summary_stat_xact_sys_tables.md b/content/en/docs/Developerguide/summary_stat_xact_sys_tables.md
index a8339386733746c923c3e070dde31e12818396f5..1bc7ad054c86b76edd51a8b9e5095be91b27596f 100644
--- a/content/en/docs/Developerguide/summary_stat_xact_sys_tables.md
+++ b/content/en/docs/Developerguide/summary_stat_xact_sys_tables.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_XACT\_SYS\_TABLES
-**SUMMARY\_STAT\_XACT\_SYS\_TABLES** displays transaction status information about the system catalogs in namespaces in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_XACT\_SYS\_TABLES** displays transaction status information about the system catalogs in namespaces in openGauss.
**Table 1** SUMMARY\_STAT\_XACT\_SYS\_TABLES columns
diff --git a/content/en/docs/Developerguide/summary_stat_xact_user_functions.md b/content/en/docs/Developerguide/summary_stat_xact_user_functions.md
index 42ec77a952d4ae8b5b082ac965f47abf3cf76787..8423588df79df72be5e9dcaf0fe5a7665b817c9d 100644
--- a/content/en/docs/Developerguide/summary_stat_xact_user_functions.md
+++ b/content/en/docs/Developerguide/summary_stat_xact_user_functions.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_XACT\_USER\_FUNCTIONS
-**SUMMARY\_STAT\_XACT\_USER\_FUNCTIONS** displays statistics about function executions in transactions in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_XACT\_USER\_FUNCTIONS** displays statistics about function executions in transactions in openGauss.
**Table 1** SUMMARY\_STAT\_XACT\_USER\_FUNCTIONS columns
diff --git a/content/en/docs/Developerguide/summary_stat_xact_user_tables.md b/content/en/docs/Developerguide/summary_stat_xact_user_tables.md
index 3b50a41db2093f2588e3a7e1e7e7187862d2e4a7..5752cd673fe9f3b16e6451ed042ae104c690909a 100644
--- a/content/en/docs/Developerguide/summary_stat_xact_user_tables.md
+++ b/content/en/docs/Developerguide/summary_stat_xact_user_tables.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_XACT\_USER\_TABLES
-**SUMMARY\_STAT\_XACT\_USER\_TABLES** displays transaction status information about the user tables in namespaces in the cluster. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STAT\_XACT\_USER\_TABLES** displays transaction status information about the user tables in namespaces in the cluster.
**Table 1** SUMMARY\_STAT\_XACT\_USER\_TABLES columns
diff --git a/content/en/docs/Developerguide/summary_statement.md b/content/en/docs/Developerguide/summary_statement.md
index 2ddf56000d9da2a82732fe397600af9f6cccb078..6692fbbb96ee743a551205fcb04fd09fe144a86c 100644
--- a/content/en/docs/Developerguide/summary_statement.md
+++ b/content/en/docs/Developerguide/summary_statement.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATEMENT
-**SUMMARY\_STATEMENT** obtains all information about execution statements \(normalized SQL statements\) on the primary database node and other database nodes. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STATEMENT** obtains all information about execution statements \(normalized SQL statements\) on the primary database node and other database nodes.
**Table 1** SUMMARY\_STATEMENT columns
diff --git a/content/en/docs/Developerguide/summary_statement_count.md b/content/en/docs/Developerguide/summary_statement_count.md
index e65c728992e362f8cca79c686a4582ebd8bb607d..09dfa088729eea2a5f7eb62e7b229ad96902bcd0 100644
--- a/content/en/docs/Developerguide/summary_statement_count.md
+++ b/content/en/docs/Developerguide/summary_statement_count.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATEMENT\_COUNT
-**SUMMARY\_STATEMENT\_COUNT** displays statistics about five types of running statements \(**SELECT**, **INSERT**, **UPDATE**, **DELETE**, and **MERGE INTO**\) as well as DDL, DML, and DCL statements on all nodes \(database nodes\) of the database. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STATEMENT\_COUNT** displays statistics about five types of running statements \(**SELECT**, **INSERT**, **UPDATE**, **DELETE**, and **MERGE INTO**\) as well as DDL, DML, and DCL statements on all nodes \(database nodes\) of the database.
**Table 1** SUMMARY\_STATEMENT\_COUNT columns
diff --git a/content/en/docs/Developerguide/summary_statio_all_indexes.md b/content/en/docs/Developerguide/summary_statio_all_indexes.md
index 5a4621d6309ca3f643f6a6615ff6e930bae5f396..385a444a9495c1e36b32000972e088046d5cfa0f 100644
--- a/content/en/docs/Developerguide/summary_statio_all_indexes.md
+++ b/content/en/docs/Developerguide/summary_statio_all_indexes.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_ALL\_INDEXES
-**SUMMARY\_STATIO\_ALL\_INDEXES** contains every row of each index in databases in openGauss, showing I/O statistics about specific indexes. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STATIO\_ALL\_INDEXES** contains every row of each index in databases in openGauss, showing I/O statistics about specific indexes.
**Table 1** SUMMARY\_STATIO\_ALL\_INDEXES columns
diff --git a/content/en/docs/Developerguide/summary_statio_all_sequences.md b/content/en/docs/Developerguide/summary_statio_all_sequences.md
index 5b9c2b2fff74b37f1dfbef2cbc4c4bdbdcaaeb15..f280c19f279204032b2877d3235d77d9bf2f0bfc 100644
--- a/content/en/docs/Developerguide/summary_statio_all_sequences.md
+++ b/content/en/docs/Developerguide/summary_statio_all_sequences.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_ALL\_SEQUENCES
-**SUMMARY\_STATIO\_ALL\_SEQUENCES** contains one row for each sequence in databases in openGauss, showing I/O statistics about specific sequences. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STATIO\_ALL\_SEQUENCES** contains one row for each sequence in databases in openGauss, showing I/O statistics about specific sequences.
**Table 1** SUMMARY\_STATIO\_ALL\_SEQUENCES columns
diff --git a/content/en/docs/Developerguide/summary_statio_all_tables.md b/content/en/docs/Developerguide/summary_statio_all_tables.md
index 5fdd8737db0f05d9bdb4feea73ec2c2398d21c00..2b7ffca8d1196805c0632f03029eb76a1c491c79 100644
--- a/content/en/docs/Developerguide/summary_statio_all_tables.md
+++ b/content/en/docs/Developerguide/summary_statio_all_tables.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_ALL\_TABLES
-**SUMMARY\_STATIO\_ALL\_TABLES** contains I/O statistics about each table \(including TOAST tables\) in databases in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STATIO\_ALL\_TABLES** contains I/O statistics about each table \(including TOAST tables\) in databases in openGauss.
**Table 1** SUMMARY\_STATIO\_ALL\_TABLES columns
diff --git a/content/en/docs/Developerguide/summary_statio_sys_indexes.md b/content/en/docs/Developerguide/summary_statio_sys_indexes.md
index f26dead448278e699d4a4efa2a65fad9103e58a8..4bd2414e03b9b7c0cddd3010287797cf17b32897 100644
--- a/content/en/docs/Developerguide/summary_statio_sys_indexes.md
+++ b/content/en/docs/Developerguide/summary_statio_sys_indexes.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_SYS\_INDEXES
-**SUMMARY\_STATIO\_SYS\_INDEXES** displays I/O status information about all system catalog indexes in namespaces in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STATIO\_SYS\_INDEXES** displays I/O status information about all system catalog indexes in namespaces in openGauss.
**Table 1** SUMMARY\_STATIO\_SYS\_INDEXES columns
diff --git a/content/en/docs/Developerguide/summary_statio_sys_sequences.md b/content/en/docs/Developerguide/summary_statio_sys_sequences.md
index 7ca6f045d70e9c1788ba8d936fdb487131aa98c9..365e047ab38f562a97ed9cfa7ffa141a6ba45834 100644
--- a/content/en/docs/Developerguide/summary_statio_sys_sequences.md
+++ b/content/en/docs/Developerguide/summary_statio_sys_sequences.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_SYS\_SEQUENCES
-**SUMMARY\_STATIO\_SYS\_SEQUENCES** displays I/O status information about all system sequences in namespaces in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STATIO\_SYS\_SEQUENCES** displays I/O status information about all system sequences in namespaces in openGauss.
**Table 1** SUMMARY\_STATIO\_SYS\_SEQUENCES columns
diff --git a/content/en/docs/Developerguide/summary_statio_sys_tables.md b/content/en/docs/Developerguide/summary_statio_sys_tables.md
index 0cf073dda1fa54ce47f7303c6f77102b237fb15a..79f9f25eb1db66703e43980be4c87b89ef1091f9 100644
--- a/content/en/docs/Developerguide/summary_statio_sys_tables.md
+++ b/content/en/docs/Developerguide/summary_statio_sys_tables.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_SYS\_TABLES
-**SUMMARY\_STATIO\_SYS\_TABLES** displays I/O status information about all system catalogs in namespaces in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STATIO\_SYS\_TABLES** displays I/O status information about all system catalogs in namespaces in openGauss.
**Table 1** SUMMARY\_STATIO\_SYS\_TABLES columns
diff --git a/content/en/docs/Developerguide/summary_statio_user_indexes.md b/content/en/docs/Developerguide/summary_statio_user_indexes.md
index 331a17d2ffdb2335b61957ed1cd6881e890f3753..b219e6f9fc6604b9f456eb0baa66d26766040fd6 100644
--- a/content/en/docs/Developerguide/summary_statio_user_indexes.md
+++ b/content/en/docs/Developerguide/summary_statio_user_indexes.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_USER\_INDEXES
-**SUMMARY\_STATIO\_USER\_INDEXES** displays I/O status information about all user relationship table indexes in namespaces in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STATIO\_USER\_INDEXES** displays I/O status information about all user relationship table indexes in namespaces in openGauss.
**Table 1** SUMMARY\_STATIO\_USER\_INDEXES columns
diff --git a/content/en/docs/Developerguide/summary_statio_user_sequences.md b/content/en/docs/Developerguide/summary_statio_user_sequences.md
index e5749dece8547634de1a519eed9055f9211478e7..7408bd2249b707a1770b0593aa8c61282bb02ca8 100644
--- a/content/en/docs/Developerguide/summary_statio_user_sequences.md
+++ b/content/en/docs/Developerguide/summary_statio_user_sequences.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_USER\_SEQUENCES
-**SUMMARY\_STATIO\_USER\_SEQUENCES** displays I/O status information about all user-defined sequences in namespaces in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STATIO\_USER\_SEQUENCES** displays I/O status information about all user-defined sequences in namespaces in openGauss.
**Table 1** SUMMARY\_STATIO\_USER\_SEQUENCES columns
diff --git a/content/en/docs/Developerguide/summary_statio_user_tables.md b/content/en/docs/Developerguide/summary_statio_user_tables.md
index ce654c67f85eefac8bf20ac4491aae3b68b1ad5b..b8eb9f4c2abebc3a11cecbbed2775dfe0a59b293 100644
--- a/content/en/docs/Developerguide/summary_statio_user_tables.md
+++ b/content/en/docs/Developerguide/summary_statio_user_tables.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_USER\_TABLES
-**SUMMARY\_STATIO\_USER\_TABLES** displays I/O status information about all user relationship tables in namespaces in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_STATIO\_USER\_TABLES** displays I/O status information about all user relationship tables in namespaces in openGauss.
**Table 1** SUMMARY\_STATIO\_USER\_TABLES columns
diff --git a/content/en/docs/Developerguide/summary_transactions_prepared_xacts.md b/content/en/docs/Developerguide/summary_transactions_prepared_xacts.md
index df8e254a983fd7bc4888e2bb34e3bcc75adfb84a..d3e20e5f022ffcb3545c57dc82f04668be994b97 100644
--- a/content/en/docs/Developerguide/summary_transactions_prepared_xacts.md
+++ b/content/en/docs/Developerguide/summary_transactions_prepared_xacts.md
@@ -1,6 +1,6 @@
# SUMMARY\_TRANSACTIONS\_PREPARED\_XACTS
-**SUMMARY\_TRANSACTIONS\_PREPARED\_XACTS** displays information about transactions that are currently prepared for two-phase commit on the primary database node in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_TRANSACTIONS\_PREPARED\_XACTS** displays information about transactions that are currently prepared for two-phase commit on the primary database node in openGauss.
**Table 1** SUMMARY\_TRANSACTIONS\_PREPARED\_XACTS columns
diff --git a/content/en/docs/Developerguide/summary_user_login.md b/content/en/docs/Developerguide/summary_user_login.md
index 36c09a51adfd3053a99954254e374d5e52567ad9..b166c217865294b3b1410582ef10ff1f437942c7 100644
--- a/content/en/docs/Developerguide/summary_user_login.md
+++ b/content/en/docs/Developerguide/summary_user_login.md
@@ -1,6 +1,6 @@
# SUMMARY\_USER\_LOGIN
-**SUMMARY\_USER\_LOGIN** records the number of user logins and logouts on the primary database node. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_USER\_LOGIN** records the number of user logins and logouts on the primary database node.
**Table 1** SUMMARY\_USER\_LOGIN columns
diff --git a/content/en/docs/Developerguide/summary_workload_sql_count.md b/content/en/docs/Developerguide/summary_workload_sql_count.md
index 8920157033873d7ab8a2b762462eb96880e4ec2a..c6bfef1af093bec422cf671348c6bac7c0206ea5 100644
--- a/content/en/docs/Developerguide/summary_workload_sql_count.md
+++ b/content/en/docs/Developerguide/summary_workload_sql_count.md
@@ -1,6 +1,6 @@
# SUMMARY\_WORKLOAD\_SQL\_COUNT
-**SUMMARY\_WORKLOAD\_SQL\_COUNT** displays the distribution of SQL statements in workloads on the primary database node in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_WORKLOAD\_SQL\_COUNT** displays the distribution of SQL statements in workloads on the primary database node in openGauss.
**Table 1** SUMMARY\_WORKLOAD\_SQL\_COUNT columns
diff --git a/content/en/docs/Developerguide/summary_workload_sql_elapse_time.md b/content/en/docs/Developerguide/summary_workload_sql_elapse_time.md
index 67eb31bb5ced70d9c9e22d355e686b7b4e320005..c5af12ae53c9f8b2f161b15c1048f67dc24e5ce3 100644
--- a/content/en/docs/Developerguide/summary_workload_sql_elapse_time.md
+++ b/content/en/docs/Developerguide/summary_workload_sql_elapse_time.md
@@ -1,6 +1,6 @@
# SUMMARY\_WORKLOAD\_SQL\_ELAPSE\_TIME
-**SUMMARY\_WORKLOAD\_SQL\_ELAPSE\_TIME** collects statistics about SUIDs in workloads on the primary database node. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_WORKLOAD\_SQL\_ELAPSE\_TIME** collects statistics about SUIDs in workloads on the primary database node.
**Table 1** SUMMARY\_WORKLOAD\_SQL\_ELAPSE\_TIM columns
diff --git a/content/en/docs/Developerguide/summary_workload_transaction.md b/content/en/docs/Developerguide/summary_workload_transaction.md
index 20ccfc54897e1dddb16022da02024f238fb5a7b1..78e85c11480f1d37d87caeca75c7da9158cc48a5 100644
--- a/content/en/docs/Developerguide/summary_workload_transaction.md
+++ b/content/en/docs/Developerguide/summary_workload_transaction.md
@@ -1,6 +1,6 @@
# SUMMARY\_WORKLOAD\_TRANSACTION
-**SUMMARY\_WORKLOAD\_TRANSACTION** displays information about transactions loaded in openGauss. To query this view, you must have the **monadmin** permission.
+**SUMMARY\_WORKLOAD\_TRANSACTION** displays information about transactions loaded in openGauss.
**Table 1** SUMMARY\_WORKLOAD\_TRANSACTION columns
diff --git a/content/en/docs/Developerguide/workload_sql_count.md b/content/en/docs/Developerguide/workload_sql_count.md
index e2d31c7b165746622c6228975398d4f269c15cef..ab7b9a0e65ed4264cdec83e162693e9dea6e6373 100644
--- a/content/en/docs/Developerguide/workload_sql_count.md
+++ b/content/en/docs/Developerguide/workload_sql_count.md
@@ -1,6 +1,6 @@
# WORKLOAD\_SQL\_COUNT
-**WORKLOAD\_SQL\_COUNT** displays the distribution of SQL statements in workloads on the current node. Common users can view only the distribution of SQL statements executed by themselves in workloads, whereas user **monadmin** can view the overall load status of workloads.
+**WORKLOAD\_SQL\_COUNT** displays the distribution of SQL statements in workloads on the current node. Common users can view only the distribution of SQL statements executed by themselves in workloads, whereas Initial user can view the overall load status of workloads.
**Table 1** WORKLOAD\_SQL\_COUNT columns
diff --git a/content/zh/docs/Developerguide/ALTER-ROLE.md b/content/zh/docs/Developerguide/ALTER-ROLE.md
index a7ddeaf4ec82c82b4756acf4d73decaeea5d4877..18bb8dccd83070b961defdb678d9eb25a54737bb 100644
--- a/content/zh/docs/Developerguide/ALTER-ROLE.md
+++ b/content/zh/docs/Developerguide/ALTER-ROLE.md
@@ -24,9 +24,6 @@
| {INHERIT | NOINHERIT}
| {AUDITADMIN | NOAUDITADMIN}
| {SYSADMIN | NOSYSADMIN}
- | {MONADMIN | NOMONADMIN}
- | {OPRADMIN | NOOPRADMIN}
- | {POLADMIN | NOPOLADMIN}
| {USEFT | NOUSEFT}
| {LOGIN | NOLOGIN}
| {REPLICATION | NOREPLICATION}
@@ -44,7 +41,7 @@
| ACCOUNT { LOCK | UNLOCK }
| PGUSER
```
-
+
- 修改角色的名称。
```
diff --git a/content/zh/docs/Developerguide/ALTER-USER.md b/content/zh/docs/Developerguide/ALTER-USER.md
index e0554aa08d666be32d71e180ed7752ddd53704fb..1126a349242e54cd2bcdc91825676d1b9977baa9 100644
--- a/content/zh/docs/Developerguide/ALTER-USER.md
+++ b/content/zh/docs/Developerguide/ALTER-USER.md
@@ -24,9 +24,6 @@ ALTER USER中修改的会话参数只针对指定的用户,且在下一次会
| { INHERIT | NOINHERIT }
| { AUDITADMIN | NOAUDITADMIN }
| { SYSADMIN | NOSYSADMIN }
- | {MONADMIN | NOMONADMIN}
- | {OPRADMIN | NOOPRADMIN}
- | {POLADMIN | NOPOLADMIN}
| { USEFT | NOUSEFT }
| { LOGIN | NOLOGIN }
| { REPLICATION | NOREPLICATION }
@@ -42,7 +39,7 @@ ALTER USER中修改的会话参数只针对指定的用户,且在下一次会
| ACCOUNT { LOCK | UNLOCK }
| PGUSER
```
-
+
- 修改用户名。
```
diff --git a/content/zh/docs/Developerguide/CLASS_VITAL_INFO.md b/content/zh/docs/Developerguide/CLASS_VITAL_INFO.md
index 50431779291e5947e0d84803e3866e978ab3e0db..0ea190b262657b8c40468d902f65fdbbd626a8db 100644
--- a/content/zh/docs/Developerguide/CLASS_VITAL_INFO.md
+++ b/content/zh/docs/Developerguide/CLASS_VITAL_INFO.md
@@ -1,6 +1,6 @@
# CLASS\_VITAL\_INFO
-CLASS\_VITAL\_INFO视图用于做WDR时校验相同的表或者索引的Oid是否一致。
+CLASS\_VITAL\_INFO视图用于做WDR时校验相同的表或者索引的oid是否一致。
**表 1** CLASS\_VITAL\_INFO字段
diff --git a/content/zh/docs/Developerguide/CREATE-USER.md b/content/zh/docs/Developerguide/CREATE-USER.md
index f660f6e340e96dea74231408f613a1c9417d21f1..1c15fe4ca16648bbd186ecdd23247d709787a093 100644
--- a/content/zh/docs/Developerguide/CREATE-USER.md
+++ b/content/zh/docs/Developerguide/CREATE-USER.md
@@ -20,9 +20,6 @@ CREATE USER user_name [ [ WITH ] option [ ... ] ] [ ENCRYPTED | UNENCRYPTED ] {
```
{SYSADMIN | NOSYSADMIN}
- | {MONADMIN | NOMONADMIN}
- | {OPRADMIN | NOOPRADMIN}
- | {POLADMIN | NOPOLADMIN}
| {AUDITADMIN | NOAUDITADMIN}
| {CREATEDB | NOCREATEDB}
| {USEFT | NOUSEFT}
diff --git a/content/zh/docs/Developerguide/DBE_PERF-Schema.md b/content/zh/docs/Developerguide/DBE_PERF-Schema.md
index 7e0ffa9a0aca16b1f7a75419fda9478d91459b04..d010d8f905917a04e0cb958443c111c5f105f0d5 100644
--- a/content/zh/docs/Developerguide/DBE_PERF-Schema.md
+++ b/content/zh/docs/Developerguide/DBE_PERF-Schema.md
@@ -1,41 +1,28 @@
# DBE\_PERF Schema
-DBE\_PERF Schema内视图主要用来诊断性能问题,也是WDR Snapshot的数据来源。数据库安装后,默认只有初始用户和监控管理员具有模式dbe\_perf的权限。若是由旧版本升级而来,为保持权限的前向兼容,模式dbe\_perf的权限与旧版本保持一致。从OS、Instance、Memory等多个维度划分组织视图,并且符合如下命名规范:
+DBE\_PERF Schema内视图主要用来诊断性能问题,也是WDR Snapshot的数据来源。数据库安装后,默认只有初始用户和系统管理员具有模式dbe\_perf的权限。若是由旧版本升级而来,为保持权限的前向兼容,模式dbe\_perf的权限与旧版本保持一致。从OS、Instance、Memory等多个维度划分组织视图,并且符合如下命名规范:
- GLOBAL\_开头的视图,代表从数据库节点请求数据,并将数据追加对外返回,不会处理数据。
- SUMMARY\_开头的视图,代表是将openGauss内的数据概述,多数情况下是返回数据库节点\(有时只有数据库主节点的\)的数据,会对数据进行加工和汇聚。
- 非这两者开头的视图,一般代表本地视图,不会向其它数据库节点请求数据。
-- **[OS](OS.md)**
+DBE\_PERF Schema内视图如下:
+- **[OS](OS.md)**
- **[Instance](Instance.md)**
-
- **[Memory](Memory.md)**
-
- **[File](File.md)**
-
- **[Object](Object.md)**
-
- **[Workload](Workload.md)**
-
- **[Session/Thread](Session-Thread.md)**
-
- **[Transaction](Transaction.md)**
-
- **[Query](Query.md)**
-
- **[Cache/IO](Cache-IO.md)**
-
- **[Utility](Utility.md)**
-
- **[Lock](Lock.md)**
-
- **[Wait Events](Wait-Events.md)**
-
- **[Configuration](Configuration.md)**
-
- **[Operator](Operator.md)**
-
- **[Workload Manager](Workload-Manager.md)**
diff --git a/content/zh/docs/Developerguide/GLOBAL_BGWRITER_STAT.md b/content/zh/docs/Developerguide/GLOBAL_BGWRITER_STAT.md
index a7f3153fc3de878eb12c594aeddd24309cf0d0d8..ca2edc801f128a86c95d6a3d92066856ac0927e0 100644
--- a/content/zh/docs/Developerguide/GLOBAL_BGWRITER_STAT.md
+++ b/content/zh/docs/Developerguide/GLOBAL_BGWRITER_STAT.md
@@ -1,6 +1,6 @@
# GLOBAL\_BGWRITER\_STAT
-GLOBAL\_BGWRITER\_STAT视图显示各节点关于后端写进程活动的统计信息。查询视图必须具有monadmin权限。
+GLOBAL\_BGWRITER\_STAT视图显示各节点关于后端写进程活动的统计信息。
**表 1** GLOBAL\_BGWRITER\_STAT字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_CKPT_STATUS.md b/content/zh/docs/Developerguide/GLOBAL_CKPT_STATUS.md
index 81379ce45e76b44f9465230f8b5806110f46f5cf..75d4cdce1ea0d555835575b447a6eaeed95ef4a8 100644
--- a/content/zh/docs/Developerguide/GLOBAL_CKPT_STATUS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_CKPT_STATUS.md
@@ -1,6 +1,6 @@
# GLOBAL\_CKPT\_STATUS
-GLOBAL\_CKPT\_STATUS视图用于显示openGauss所有实例的检查点信息和各类日志刷页情况。查询视图必须具有monadmin权限。
+GLOBAL\_CKPT\_STATUS视图用于显示openGauss所有实例的检查点信息和各类日志刷页情况。
**表 1** GLOBAL\_CKPT\_STATUS字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_CONFIG_SETTINGS.md b/content/zh/docs/Developerguide/GLOBAL_CONFIG_SETTINGS.md
index 5bf8c048cf04e0fee142738aa823e2fafc86420a..8c5a0dba4f46adfff3c69755c0cf5ebcaab0b301 100644
--- a/content/zh/docs/Developerguide/GLOBAL_CONFIG_SETTINGS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_CONFIG_SETTINGS.md
@@ -1,6 +1,6 @@
# GLOBAL\_CONFIG\_SETTINGS
-GLOBAL\_CONFIG\_SETTINGS显示各节点数据库运行时参数的相关信息。查询视图必须具有monadmin权限。
+GLOBAL\_CONFIG\_SETTINGS显示各节点数据库运行时参数的相关信息。
**表 1** GLOBAL\_CONFIG\_SETTINGS的字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_DOUBLE_WRITE_STATUS.md b/content/zh/docs/Developerguide/GLOBAL_DOUBLE_WRITE_STATUS.md
index c3841b7300c6fc5e8bc6d9af6c6a6a702d225d36..36a35291dcec1ed117934b37834ef202c732a516 100644
--- a/content/zh/docs/Developerguide/GLOBAL_DOUBLE_WRITE_STATUS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_DOUBLE_WRITE_STATUS.md
@@ -1,6 +1,6 @@
# GLOBAL\_DOUBLE\_WRITE\_STATUS
-GLOBAL\_DOUBLE\_WRITE\_STATUS视图显示openGauss所有实例的双写文件的情况。查询视图必须具有monadmin权限。
+GLOBAL\_DOUBLE\_WRITE\_STATUS视图显示openGauss所有实例的双写文件的情况。
**表 1** GLOBAL\_DOUBLEWRITE\_STATUS字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_FILE_IOSTAT.md b/content/zh/docs/Developerguide/GLOBAL_FILE_IOSTAT.md
index 85384127d5d91ca1098ebc59b5f6ee8cd525b4a6..8593d459b2acd92dc42c1c1c85423976d93785d3 100644
--- a/content/zh/docs/Developerguide/GLOBAL_FILE_IOSTAT.md
+++ b/content/zh/docs/Developerguide/GLOBAL_FILE_IOSTAT.md
@@ -1,6 +1,6 @@
# GLOBAL\_FILE\_IOSTAT
-得到所有节点上的数据文件IO 统计信息。查询视图必须具有monadmin权限。
+得到所有节点上的数据文件IO 统计信息。
**表 1** GLOBAL\_FILE\_IOSTAT字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_FILE_REDO_IOSTAT.md b/content/zh/docs/Developerguide/GLOBAL_FILE_REDO_IOSTAT.md
index 03f13ae79a04da2047ca823a8130103a9423fd09..59ef8327c5a74010574b252d762cb6d7fbcdd417 100644
--- a/content/zh/docs/Developerguide/GLOBAL_FILE_REDO_IOSTAT.md
+++ b/content/zh/docs/Developerguide/GLOBAL_FILE_REDO_IOSTAT.md
@@ -1,6 +1,6 @@
# GLOBAL\_FILE\_REDO\_IOSTAT
-得到openGauss内各节点的Redo\(WAL\)相关统计信息。查询视图必须具有monadmin权限。
+得到openGauss内各节点的Redo\(WAL\)相关统计信息。
**表 1** GLOBALXC\_FILE\_REDO\_IOSTAT字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_INSTANCE_TIME.md b/content/zh/docs/Developerguide/GLOBAL_INSTANCE_TIME.md
index f0aaf8fecaabcd9656bd6c1498f12567b280b12d..0cffce01bf84ff61b97e622ef5201694ace634a8 100644
--- a/content/zh/docs/Developerguide/GLOBAL_INSTANCE_TIME.md
+++ b/content/zh/docs/Developerguide/GLOBAL_INSTANCE_TIME.md
@@ -1,6 +1,6 @@
# GLOBAL\_INSTANCE\_TIME
-提供openGauss中所有正常节点下的各种时间消耗信息\(时间类型见instance\_time视图\)。查询视图必须具有monadmin权限。
+提供openGauss中所有正常节点下的各种时间消耗信息\(时间类型见instance\_time视图\)。
**表 1** GLOBAL\_INSTANCE\_TIME字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_LOCKS.md b/content/zh/docs/Developerguide/GLOBAL_LOCKS.md
index cf01e01385e7467784e300842171371fd2d2889e..09a9cff64045f5eca8194e79fdddd1aee21b2ffa 100644
--- a/content/zh/docs/Developerguide/GLOBAL_LOCKS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_LOCKS.md
@@ -1,8 +1,6 @@
# GLOBAL\_LOCKS
-GLOBAL\_LOCKS视图用于查看各节点各打开事务所持有的锁信息。查询视图必须具有monadmin权限。
-
-**表 1** GLOBAL\_LOCKS字段
+GLOBAL\_LOCKS视图用于查看各节点各打开事务所持有的锁信息。
名称
diff --git a/content/zh/docs/Developerguide/GLOBAL_MEMORY_NODE_DETAIL.md b/content/zh/docs/Developerguide/GLOBAL_MEMORY_NODE_DETAIL.md
index 8d6a28d7e29bb76534aabe1c2f2b89828449c6d5..2a8178679e6bfbc869e04fd60785bf0941932ee5 100644
--- a/content/zh/docs/Developerguide/GLOBAL_MEMORY_NODE_DETAIL.md
+++ b/content/zh/docs/Developerguide/GLOBAL_MEMORY_NODE_DETAIL.md
@@ -1,6 +1,6 @@
# GLOBAL\_MEMORY\_NODE\_DETAIL
-显示前openGauss中所有正常节点下的内存使用情况。查询视图必须具有monadmin权限。
+显示前openGauss中所有正常节点下的内存使用情况。
**表 1** GLOBAL\_MEMORY\_NODE\_DETAIL字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_OPERATOR_HISTORY.md b/content/zh/docs/Developerguide/GLOBAL_OPERATOR_HISTORY.md
index 276d70a6d37ab9e5a50a4531c623db0d723d3258..9dd8b461c0061119190b2242acdabe933e7364a5 100644
--- a/content/zh/docs/Developerguide/GLOBAL_OPERATOR_HISTORY.md
+++ b/content/zh/docs/Developerguide/GLOBAL_OPERATOR_HISTORY.md
@@ -1,6 +1,6 @@
# GLOBAL\_OPERATOR\_HISTORY
-GLOBAL\_OPERATOR\_HISTORY系统视图显示的是当前用户在数据库主节点上执行作业结束后的算子的相关记录。查询视图必须具有monadmin权限。
+GLOBAL\_OPERATOR\_HISTORY系统视图显示的是当前用户在数据库主节点上执行作业结束后的算子的相关记录。
**表 1** GLOBAL\_OPERATOR\_HISTORY的字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_OPERATOR_HISTORY_TABLE.md b/content/zh/docs/Developerguide/GLOBAL_OPERATOR_HISTORY_TABLE.md
index a596b408012178c35c0e2ef6453087e5aaf83b43..f3845f4558a60a724e141377d2c697a72aec52ca 100644
--- a/content/zh/docs/Developerguide/GLOBAL_OPERATOR_HISTORY_TABLE.md
+++ b/content/zh/docs/Developerguide/GLOBAL_OPERATOR_HISTORY_TABLE.md
@@ -1,4 +1,4 @@
# GLOBAL\_OPERATOR\_HISTORY\_TABLE
-GLOBAL\_OPERATOR\_HISTORY\_TABLE视图显示数据库主节点执行作业结束后的算子相关的记录。此数据是从内核中转储到系统表GS\_WLM\_OPERATOR\_INFO中的数据。该视图是查询数据库主节点系统表GS\_WLM\_OPERATOR\_INFO的汇聚视图。表字段同[表1](GLOBAL_OPERATOR_HISTORY.md#zh-cn_topic_0237122744_zh-cn_topic_0111176227_table85181143511)。查询视图必须具有monadmin权限。
+GLOBAL\_OPERATOR\_HISTORY\_TABLE视图显示数据库主节点执行作业结束后的算子相关的记录。此数据是从内核中转储到系统表GS\_WLM\_OPERATOR\_INFO中的数据。该视图是查询数据库主节点系统表GS\_WLM\_OPERATOR\_INFO的汇聚视图。表字段同[表1](GLOBAL_OPERATOR_HISTORY.md#zh-cn_topic_0237122744_zh-cn_topic_0111176227_table85181143511)。
diff --git a/content/zh/docs/Developerguide/GLOBAL_OPERATOR_RUNTIME.md b/content/zh/docs/Developerguide/GLOBAL_OPERATOR_RUNTIME.md
index 35a87f58c2cfd65012d1f615c00d4d58090ae012..1f2d50c8a070690ba5b7459f22bc3472dac527a3 100644
--- a/content/zh/docs/Developerguide/GLOBAL_OPERATOR_RUNTIME.md
+++ b/content/zh/docs/Developerguide/GLOBAL_OPERATOR_RUNTIME.md
@@ -1,6 +1,6 @@
# GLOBAL\_OPERATOR\_RUNTIME
-GLOBAL\_OPERATOR\_RUNTIME视图显示当前用户在数据库主节点上正在执行的作业的算子相关信息。查询视图必须具有monadmin权限。
+GLOBAL\_OPERATOR\_RUNTIME视图显示当前用户在数据库主节点上正在执行的作业的算子相关信息。
**表 1** GLOBAL\_OPERATOR\_RUNTIME的字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_OS_RUNTIME.md b/content/zh/docs/Developerguide/GLOBAL_OS_RUNTIME.md
index 4883846502f914e36d6d1f285feabe69b6df46ad..d46c7b5104e741769a95e6561f5273ee11f4ca1d 100644
--- a/content/zh/docs/Developerguide/GLOBAL_OS_RUNTIME.md
+++ b/content/zh/docs/Developerguide/GLOBAL_OS_RUNTIME.md
@@ -1,6 +1,6 @@
# GLOBAL\_OS\_RUNTIME
-提供openGauss中所有正常节点下的操作系统运行状态信息。查询视图必须具有monadmin权限。
+提供openGauss中所有正常节点下的操作系统运行状态信息。
**表 1** GLOBAL\_OS\_RUNTIME字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_OS_THREADS.md b/content/zh/docs/Developerguide/GLOBAL_OS_THREADS.md
index d9c151059bdf3769688132000dd55cf20a2fcca3..a2757a15375e7bfc9c979c676452a552403a629f 100644
--- a/content/zh/docs/Developerguide/GLOBAL_OS_THREADS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_OS_THREADS.md
@@ -1,6 +1,6 @@
# GLOBAL\_OS\_THREADS
-提供openGauss中所有正常节点下的线程状态信息。查询视图必须具有monadmin权限。
+提供openGauss中所有正常节点下的线程状态信息。
**表 1** GLOBAL\_OS\_THREADS字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_PAGEWRITER_STATUS.md b/content/zh/docs/Developerguide/GLOBAL_PAGEWRITER_STATUS.md
index f0fc5d86eaccc81f6fdff747ba35179802f1865b..aa92e7bccc14b28e991c0d388a770c7ff1ee617a 100644
--- a/content/zh/docs/Developerguide/GLOBAL_PAGEWRITER_STATUS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_PAGEWRITER_STATUS.md
@@ -1,6 +1,6 @@
# GLOBAL\_PAGEWRITER\_STATUS
-GLOBAL\_PAGEWRITER\_STATUS视图显示openGauss实例的刷页信息和检查点信息。查询视图必须具有monadmin权限。
+GLOBAL\_PAGEWRITER\_STATUS视图显示openGauss实例的刷页信息和检查点信息。
**表 1** GLOBAL\_PAGEWRITER\_STATUS字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_RECORD_RESET_TIME.md b/content/zh/docs/Developerguide/GLOBAL_RECORD_RESET_TIME.md
index c930fb3d209903ec12f13e281c7a2bc201e542c0..9455aa9b82aae49e1861b1a036a50c85daa0ccae 100644
--- a/content/zh/docs/Developerguide/GLOBAL_RECORD_RESET_TIME.md
+++ b/content/zh/docs/Developerguide/GLOBAL_RECORD_RESET_TIME.md
@@ -1,6 +1,6 @@
# GLOBAL\_RECORD\_RESET\_TIME
-GLOBAL\_RECORD\_RESET\_TIME用于重置(重启,主备倒换,数据库删除)汇聚openGauss统计信息时间。查询视图必须具有monadmin权限。
+GLOBAL\_RECORD\_RESET\_TIME用于重置(重启,主备倒换,数据库删除)汇聚openGauss统计信息时间。
**表 1** GLOBAL\_RECORD\_RESET\_TIME字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_RECOVERY_STATUS.md b/content/zh/docs/Developerguide/GLOBAL_RECOVERY_STATUS.md
index fa200e16d06345b0a805cb9096bb8ecff7ea0908..13fd2b7abb092e36f2540491771a1489c5271253 100644
--- a/content/zh/docs/Developerguide/GLOBAL_RECOVERY_STATUS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_RECOVERY_STATUS.md
@@ -1,6 +1,6 @@
# GLOBAL\_RECOVERY\_STATUS
-GLOBAL\_RECOVERY\_STATUS视图显示关于主机和备机的日志流控信息。查询视图必须具有monadmin权限。
+GLOBAL\_RECOVERY\_STATUS视图显示关于主机和备机的日志流控信息。
**表 1** GLOBAL\_RECOVERY\_STATUS字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_REDO_STATUS.md b/content/zh/docs/Developerguide/GLOBAL_REDO_STATUS.md
index b1302a926a5303e4e95a430ad9108031df3ed6d5..67d99cb65dfe65e589b41f91006e6a454d1bd4d3 100644
--- a/content/zh/docs/Developerguide/GLOBAL_REDO_STATUS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_REDO_STATUS.md
@@ -1,6 +1,6 @@
# GLOBAL\_REDO\_STATUS
-GLOBAL\_REDO\_STATUS视图显示openGauss实例的日志回放情况。查询视图必须具有monadmin权限。
+GLOBAL\_REDO\_STATUS视图显示openGauss实例的日志回放情况。
**表 1** GLOBAL\_REDO\_STATUS字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_REL_IOSTAT.md b/content/zh/docs/Developerguide/GLOBAL_REL_IOSTAT.md
index 7b7ad37922c59e0795144046e7f365c124bfa66b..f3031b4111f1aaa5851e40fe24bc310ec9699092 100644
--- a/content/zh/docs/Developerguide/GLOBAL_REL_IOSTAT.md
+++ b/content/zh/docs/Developerguide/GLOBAL_REL_IOSTAT.md
@@ -1,6 +1,6 @@
# GLOBAL\_REL\_IOSTAT
-获取所有节点上的数据文件IO统计信息,查询视图必须具有monadmin权限。
+获取所有节点上的数据文件IO统计信息。
**表 1** GLOBAL\_REL\_IOSTAT字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_REPLICATION_SLOTS.md b/content/zh/docs/Developerguide/GLOBAL_REPLICATION_SLOTS.md
index aa47f227da49cdf97432b275693442ea77510cbb..dd93f7fedf55995bfa4af69a75ef0277aa083edd 100644
--- a/content/zh/docs/Developerguide/GLOBAL_REPLICATION_SLOTS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_REPLICATION_SLOTS.md
@@ -1,6 +1,6 @@
# GLOBAL\_REPLICATION\_SLOTS
-GLOBAL\_REPLICATION\_SLOTS视图用于查看openGauss各节点的复制节点的信息。查询视图必须具有monadmin权限。
+GLOBAL\_REPLICATION\_SLOTS视图用于查看openGauss各节点的复制节点的信息。
**表 1** GLOBAL\_REPLICATION\_SLOTS字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_REPLICATION_STAT.md b/content/zh/docs/Developerguide/GLOBAL_REPLICATION_STAT.md
index 15c6ae4fb59f3a2b5c2fe9ffde59429438327c82..0f789d9bb0eee14ef32715fb72c2d2ba9bb2ef39 100644
--- a/content/zh/docs/Developerguide/GLOBAL_REPLICATION_STAT.md
+++ b/content/zh/docs/Developerguide/GLOBAL_REPLICATION_STAT.md
@@ -1,6 +1,6 @@
# GLOBAL\_REPLICATION\_STAT
-GLOBAL\_REPLICATION\_STAT视图用于获得各节点描述日志同步状态信息,如发起端发送日志位置,收端接收日志位置等。查询视图必须具有monadmin权限。
+GLOBAL\_REPLICATION\_STAT视图用于获得各节点描述日志同步状态信息,如发起端发送日志位置,收端接收日志位置等。
**表 1** GLOBAL\_REPLICATION\_STAT字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_SESSION_MEMORY.md b/content/zh/docs/Developerguide/GLOBAL_SESSION_MEMORY.md
index 44fa476bf858e84dc15b8866da46111874b49196..bfdd66b46338616859205d851d751bfc9a5162dd 100644
--- a/content/zh/docs/Developerguide/GLOBAL_SESSION_MEMORY.md
+++ b/content/zh/docs/Developerguide/GLOBAL_SESSION_MEMORY.md
@@ -1,6 +1,6 @@
# GLOBAL\_SESSION\_MEMORY
-统计各节点的Session级别的内存使用情况,包含执行作业在数据节点上Postgres线程和Stream线程分配的所有内存,单位为MB。查询视图必须具有monadmin权限。
+统计各节点的Session级别的内存使用情况,包含执行作业在数据节点上Postgres线程和Stream线程分配的所有内存,单位为MB。
**表 1** GLOBAL\_SESSION\_MEMORY字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_SESSION_MEMORY_DETAIL.md b/content/zh/docs/Developerguide/GLOBAL_SESSION_MEMORY_DETAIL.md
index e491f657940de941abee668eaac59581eaf01b58..9a87d3f6755689583a1cb584b8615ba0761e5dcf 100644
--- a/content/zh/docs/Developerguide/GLOBAL_SESSION_MEMORY_DETAIL.md
+++ b/content/zh/docs/Developerguide/GLOBAL_SESSION_MEMORY_DETAIL.md
@@ -1,6 +1,6 @@
# GLOBAL\_SESSION\_MEMORY\_DETAIL
-统计各节点的线程的内存使用情况,以MemoryContext节点来统计。查询视图必须具有monadmin权限。
+统计各节点的线程的内存使用情况,以MemoryContext节点来统计。
**表 1** GLOBAL\_SESSION\_MEMORY\_DETAIL字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_SESSION_STAT.md b/content/zh/docs/Developerguide/GLOBAL_SESSION_STAT.md
index 020ffc8d116b24208e6ee1e494fe7ba8d46564a2..0a4b8713eaa475f19d00d4cced3f6fe4c0b11eaf 100644
--- a/content/zh/docs/Developerguide/GLOBAL_SESSION_STAT.md
+++ b/content/zh/docs/Developerguide/GLOBAL_SESSION_STAT.md
@@ -1,6 +1,6 @@
# GLOBAL\_SESSION\_STAT
-各节点上以会话线程或AutoVacuum线程为单位,统计会话状态信息。查询视图必须具有monadmin权限。
+各节点上以会话线程或AutoVacuum线程为单位,统计会话状态信息。
**表 1** GLOBAL\_SESSION\_STAT字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_SESSION_STAT_ACTIVITY.md b/content/zh/docs/Developerguide/GLOBAL_SESSION_STAT_ACTIVITY.md
index c3760d8a267e9b8063d22247184a796ffaf7f7b5..58225366715d6ae6ffbeaff65e090a2c2abe0cf3 100644
--- a/content/zh/docs/Developerguide/GLOBAL_SESSION_STAT_ACTIVITY.md
+++ b/content/zh/docs/Developerguide/GLOBAL_SESSION_STAT_ACTIVITY.md
@@ -1,6 +1,6 @@
# GLOBAL\_SESSION\_STAT\_ACTIVITY
-显示openGauss内各节点上正在运行的线程相关的信息。查询视图必须具有monadmin权限。
+显示openGauss内各节点上正在运行的线程相关的信息。
**表 1** GLOBAL\_SESSION\_STAT\_ACTIVITY字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_SESSION_TIME.md b/content/zh/docs/Developerguide/GLOBAL_SESSION_TIME.md
index 7ab14722f6b57ec978444f685810556ca29224c4..83c292ce0238614ad5e0b4cf03274791dc831909 100644
--- a/content/zh/docs/Developerguide/GLOBAL_SESSION_TIME.md
+++ b/content/zh/docs/Developerguide/GLOBAL_SESSION_TIME.md
@@ -1,6 +1,6 @@
# GLOBAL\_SESSION\_TIME
-用于统计各节点会话线程的运行时间信息,及各执行阶段所消耗时间。查询视图必须具有monadmin权限。
+用于统计各节点会话线程的运行时间信息,及各执行阶段所消耗时间。
**表 1** GLOBAL\_SESSION\_TIME字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_SHARED_MEMORY_DETAIL.md b/content/zh/docs/Developerguide/GLOBAL_SHARED_MEMORY_DETAIL.md
index 5829b1f457f63490b6def6b12b972f9d8539dcef..76b53992f37e181ffe70f64696c548ec9fc0e576 100644
--- a/content/zh/docs/Developerguide/GLOBAL_SHARED_MEMORY_DETAIL.md
+++ b/content/zh/docs/Developerguide/GLOBAL_SHARED_MEMORY_DETAIL.md
@@ -1,6 +1,6 @@
# GLOBAL\_SHARED\_MEMORY\_DETAIL
-查询openGauss中所有正常节点下的共享内存上下文的使用信息。查询视图必须具有monadmin权限。
+查询openGauss中所有正常节点下的共享内存上下文的使用信息。
**表 1** GLOBAL\_SHARED\_MEMORY\_DETAIL字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STATEMENT_COMPLEX_HISTORY.md b/content/zh/docs/Developerguide/GLOBAL_STATEMENT_COMPLEX_HISTORY.md
index 54bd71ba7e5ed7c0b5106f689182ff1d73489e98..90f3a954896702a0e5188bf8b6a0c41577d2bb12 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STATEMENT_COMPLEX_HISTORY.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STATEMENT_COMPLEX_HISTORY.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATEMENT\_COMPLEX\_HISTORY
-显示各个节点执行作业结束后的负载管理记录,查询该函数必须具有monadmin权限。
+显示各个节点执行作业结束后的负载管理记录。
**表 1** GLOBAL\_STATEMENT\_COMPLEX\_HISTORY的字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md b/content/zh/docs/Developerguide/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md
index 83c55eeeb034fec93bd2d8ab71eed23dbd256f3b..159a4a4faa4408b8c6248bba303494f5171760d8 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATEMENT\_COMPLEX\_RUNTIME
-显示当前用户在各个节点上正在执行的作业的负载管理记录,查询该函数必须具有monadmin权限。
+显示当前用户在各个节点上正在执行的作业的负载管理记录。
**表 1** GLOBAL\_STATEMENT\_COMPLEX\_RUNTIME的字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STATEMENT_COUNT.md b/content/zh/docs/Developerguide/GLOBAL_STATEMENT_COUNT.md
index 02ad1a7fbaae6baafcf2f6b70a157f3c0cea8e76..27aff903ea73af3bbd1b2ce906c8f53fe4dd54e8 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STATEMENT_COUNT.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STATEMENT_COUNT.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATEMENT\_COUNT
-显示数据库各节点当前时刻执行的五类语句(SELECT、INSERT、UPDATE、DELETE、MERGE INTO)和\(DDL、DML、DCL\)统计信息。查询视图必须具有monadmin权限。
+显示数据库各节点当前时刻执行的五类语句(SELECT、INSERT、UPDATE、DELETE、MERGE INTO)和\(DDL、DML、DCL\)统计信息。
**表 1** GLOBAL\_STATEMENT\_COUNT字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STATIO_ALL_INDEXES.md b/content/zh/docs/Developerguide/GLOBAL_STATIO_ALL_INDEXES.md
index 715f1fbd031087d009f1c60ac44604bc0340f0d7..21f780d37dc05f05ca0c4a908d6aa0f8b294e025 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STATIO_ALL_INDEXES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STATIO_ALL_INDEXES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_ALL\_INDEXES
-GLOBAL\_STATIO\_ALL\_INDEXES视图包含各节点的数据库中的每个索引行,显示特定索引的I/O的统计。查询视图必须具有monadmin权限。
+GLOBAL\_STATIO\_ALL\_INDEXES视图包含各节点的数据库中的每个索引行,显示特定索引的I/O的统计。
**表 1** GLOBAL\_STATIO\_ALL\_INDEXES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STATIO_ALL_SEQUENCES.md b/content/zh/docs/Developerguide/GLOBAL_STATIO_ALL_SEQUENCES.md
index 090ba7c91849b4fca1f71d30b36f36ea2a47edad..363065d6ce7b08072e915a7d0156443d30cc9ccb 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STATIO_ALL_SEQUENCES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STATIO_ALL_SEQUENCES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_ALL\_SEQUENCES
-GLOBAL\_STATIO\_ALL\_SEQUENCES包含各节点的数据库中每个序列的每一行,显示特定序列关于I/O的统计。查询视图必须具有monadmin权限。
+GLOBAL\_STATIO\_ALL\_SEQUENCES包含各节点的数据库中每个序列的每一行,显示特定序列关于I/O的统计。
**表 1** GLOBAL\_STATIO\_ALL\_SEQUENCES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STATIO_ALL_TABLES.md b/content/zh/docs/Developerguide/GLOBAL_STATIO_ALL_TABLES.md
index b350a9605b7743c5920c75465fdc8409dda0f4d2..b665f3e20a8c0250c4a5d018c5e8d872cb7e9e01 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STATIO_ALL_TABLES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STATIO_ALL_TABLES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_ALL\_TABLES
-GLOBAL\_STATIO\_ALL\_TABLES视图将包含各节点的数据库中每个表(包括TOAST表)的I/O的统计。查询视图必须具有monadmin权限。
+GLOBAL\_STATIO\_ALL\_TABLES视图将包含各节点的数据库中每个表(包括TOAST表)的I/O的统计。
**表 1** GLOBAL\_STATIO\_ALL\_TABLES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STATIO_SYS_INDEXES.md b/content/zh/docs/Developerguide/GLOBAL_STATIO_SYS_INDEXES.md
index ebb6e81653c724922f22af6096fc4983e7b57295..163d3dc1f79dee23fc962d56739457f1e3c63fad 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STATIO_SYS_INDEXES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STATIO_SYS_INDEXES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_SYS\_INDEXES
-GLOBAL\_STATIO\_SYS\_INDEXES视图显示各节点的命名空间中所有系统表索引的IO状态信息。查询视图必须具有monadmin权限。
+GLOBAL\_STATIO\_SYS\_INDEXES视图显示各节点的命名空间中所有系统表索引的IO状态信息。
**表 1** GLOBAL\_STATIO\_SYS\_INDEXES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STATIO_SYS_SEQUENCES.md b/content/zh/docs/Developerguide/GLOBAL_STATIO_SYS_SEQUENCES.md
index 41c1ac7f5939b9a44d1be99cd20a0760ec3b9583..2ffc2c6ffd9481fc33b2f990005ea78650d5333c 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STATIO_SYS_SEQUENCES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STATIO_SYS_SEQUENCES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_SYS\_SEQUENCES
-GLOBAL\_STATIO\_SYS\_SEQUENCES视图显示各节点的命名空间中所有系统表为序列的IO状态信息。查询视图必须具有monadmin权限。
+GLOBAL\_STATIO\_SYS\_SEQUENCES视图显示各节点的命名空间中所有系统表为序列的IO状态信息。
**表 1** GLOBAL\_STATIO\_SYS\_SEQUENCES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STATIO_SYS_TABLES.md b/content/zh/docs/Developerguide/GLOBAL_STATIO_SYS_TABLES.md
index 3659e7d54faff8c84890d5cbcfa2acbbc750f02a..82c5568ccb8f0b19e43103143ee66826da08fa5d 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STATIO_SYS_TABLES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STATIO_SYS_TABLES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_SYS\_TABLES
-GLOBAL\_STATIO\_SYS\_TABLES视图显示各节点的命名空间中所有系统表的IO状态信息。查询视图必须具有monadmin权限。
+GLOBAL\_STATIO\_SYS\_TABLES视图显示各节点的命名空间中所有系统表的IO状态信息。
**表 1** GLOBAL\_STATIO\_SYS\_TABLES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STATIO_USER_INDEXES.md b/content/zh/docs/Developerguide/GLOBAL_STATIO_USER_INDEXES.md
index dfc29616d7abc7e154c7225aa8d25f49e772a631..194769019a592f9e5e7cb22ebdc7f0af4359694a 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STATIO_USER_INDEXES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STATIO_USER_INDEXES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_USER\_INDEXES
-GLOBAL\_STATIO\_USER\_INDEXES视图显示各节点的命名空间中所有用户关系表索引的IO状态信息。查询视图必须具有monadmin权限。
+GLOBAL\_STATIO\_USER\_INDEXES视图显示各节点的命名空间中所有用户关系表索引的IO状态信息。
**表 1** GLOBAL\_STATIO\_USER\_INDEXES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STATIO_USER_SEQUENCES.md b/content/zh/docs/Developerguide/GLOBAL_STATIO_USER_SEQUENCES.md
index 43e8aae481ca8945d5503ce3c312460e2c1cd955..e0a76706248a9dcd2ec5ae91ee06823aebe1fa28 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STATIO_USER_SEQUENCES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STATIO_USER_SEQUENCES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_USER\_SEQUENCES
-GLOBAL\_STATIO\_USER\_SEQUENCES视图显示各节点的命名空间中所有用户关系表类型为序列的IO状态信息。查询视图必须具有monadmin权限。
+GLOBAL\_STATIO\_USER\_SEQUENCES视图显示各节点的命名空间中所有用户关系表类型为序列的IO状态信息。
**表 1** GLOBAL\_STATIO\_USER\_SEQUENCES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STATIO_USER_TABLES.md b/content/zh/docs/Developerguide/GLOBAL_STATIO_USER_TABLES.md
index c06d2848c9de0896b9931f270a4ce4b512429388..277fe9043bb5c932343de9833db6c47204bf839b 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STATIO_USER_TABLES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STATIO_USER_TABLES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STATIO\_USER\_TABLES
-GLOBAL\_STATIO\_USER\_TABLES视图显示各节点的命名空间中所有用户关系表的IO状态信息。查询视图必须具有monadmin权限。
+GLOBAL\_STATIO\_USER\_TABLES视图显示各节点的命名空间中所有用户关系表的IO状态信息。
**表 1** GLOBAL\_STATIO\_USER\_TABLES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_ALL_INDEXES.md b/content/zh/docs/Developerguide/GLOBAL_STAT_ALL_INDEXES.md
index b97b834e7a276311f39d92ce08cf2b6eab064847..4ebb17f102f6bba0ec84a102ea0448481e6250bd 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_ALL_INDEXES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_ALL_INDEXES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_ALL\_INDEXES
-将包含各节点数据库中的每个索引行,显示访问特定索引的统计。查询视图必须具有monadmin权限。
+将包含各节点数据库中的每个索引行,显示访问特定索引的统计。
**表 1** GLOBAL\_STAT\_ALL\_INDEXES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_ALL_TABLES.md b/content/zh/docs/Developerguide/GLOBAL_STAT_ALL_TABLES.md
index cab0f6f8d00f62b68c5d8ffa255ba778fdfe75c3..7995ce742d18a3efbe44f5e164d20b731d4cae2d 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_ALL_TABLES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_ALL_TABLES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_ALL\_TABLES
-得到各节点数据中每个表的一行(包括TOAST表)的统计信息。查询视图必须具有monadmin权限。
+得到各节点数据中每个表的一行(包括TOAST表)的统计信息。
**表 1** GLOBAL\_STAT\_ALL\_TABLES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_BAD_BLOCK.md b/content/zh/docs/Developerguide/GLOBAL_STAT_BAD_BLOCK.md
index 99bcb5f2b58c140d279613561d4c2247b39feb59..44e29f6fab20598571048b68d1ed456e18b1eeca 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_BAD_BLOCK.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_BAD_BLOCK.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_BAD\_BLOCK
-获得各节点的表、索引等文件的读取失败信息。查询视图必须具有monadmin权限。
+获得各节点的表、索引等文件的读取失败信息。
**表 1** GLOBAL\_STAT\_BAD\_BLOCK字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_DATABASE.md b/content/zh/docs/Developerguide/GLOBAL_STAT_DATABASE.md
index e1b7d10b50b6c86fd46a5a440ac2b54cc5423125..dc718dc1da53efd14113200ec2dc9070efdcf5c2 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_DATABASE.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_DATABASE.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_DATABASE
-视图将包含openGauss中各节点的每个数据库的每一行,显示数据库统计。查询视图必须具有monadmin权限。
+视图将包含openGauss中各节点的每个数据库的每一行,显示数据库统计。
**表 1** GLOBAL\_STAT\_DATABASE字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_DATABASE_CONFLICTS.md b/content/zh/docs/Developerguide/GLOBAL_STAT_DATABASE_CONFLICTS.md
index 8fc226068788a841862d6c9cb8ead0048a6ba0d2..956f58d58195e54910b67a5d8239612efde33162 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_DATABASE_CONFLICTS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_DATABASE_CONFLICTS.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_DATABASE\_CONFLICTS
-显示每个节点的数据库冲突状态的统计信息。查询视图必须具有monadmin权限。
+显示每个节点的数据库冲突状态的统计信息。
**表 1** GLOBAL\_STAT\_DATABASE\_CONFLICTS字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_DB_CU.md b/content/zh/docs/Developerguide/GLOBAL_STAT_DB_CU.md
index 9511fb7348900ecb495a6509dec83f0dcd79c373..732b879137584502df5ba7a6938bbef8593e164b 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_DB_CU.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_DB_CU.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_DB\_CU
-GLOBAL\_STAT\_DB\_CU视图用于查询openGauss,每个数据库的CU命中情况。可以通过gs\_stat\_reset\(\)进行清零。查询视图必须具有monadmin权限。
+GLOBAL\_STAT\_DB\_CU视图用于查询openGauss,每个数据库的CU命中情况。可以通过gs\_stat\_reset\(\)进行清零。
**表 1** GLOBAL\_STAT\_DB\_CU字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_SESSION_CU.md b/content/zh/docs/Developerguide/GLOBAL_STAT_SESSION_CU.md
index 9dd6a5b7acd00635c2fe8a022cf40ec90f27c51e..5966fe7ee5c5a75d35b5f6ffc7626af475a944cb 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_SESSION_CU.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_SESSION_CU.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_SESSION\_CU
-GLOBAL\_STAT\_SESSION\_CU用于查询openGauss各个节点,当前运行session的CU命中情况。session退出相应的统计数据会清零。openGauss重启后,统计数据也会清零。查询视图必须具有monadmin权限。
+GLOBAL\_STAT\_SESSION\_CU用于查询openGauss各个节点,当前运行session的CU命中情况。session退出相应的统计数据会清零。openGauss重启后,统计数据也会清零。
**表 1** GLOBAL\_STAT\_SESSION\_CU字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_SYS_INDEXES.md b/content/zh/docs/Developerguide/GLOBAL_STAT_SYS_INDEXES.md
index 70ee6a35bee2c56d77276dbd0c33ca44fa70a184..76f53012ab078fdfe938ff8bbd811b026e9540f3 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_SYS_INDEXES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_SYS_INDEXES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_SYS\_INDEXES
-得到各节点pg\_catalog、information\_schema以及pg\_toast模式中所有系统表的索引状态信息。查询视图必须具有monadmin权限。
+得到各节点pg\_catalog、information\_schema以及pg\_toast模式中所有系统表的索引状态信息。
**表 1** GLOBAL\_STAT\_SYS\_INDEXES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_SYS_TABLES.md b/content/zh/docs/Developerguide/GLOBAL_STAT_SYS_TABLES.md
index 76f2e3668c3c0ba9fe0ef38a77a7e63ed7f3c4be..d8adee1b2fcf91755ebca38d764e90999cd119b7 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_SYS_TABLES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_SYS_TABLES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_SYS\_TABLES
-得到各节点pg\_catalog、information\_schema模式的所有命名空间中系统表的统计信息。查询视图必须具有monadmin权限。
+得到各节点pg\_catalog、information\_schema模式的所有命名空间中系统表的统计信息。
**表 1** GLOBAL\_STAT\_SYS\_TABLES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_USER_FUNCTIONS.md b/content/zh/docs/Developerguide/GLOBAL_STAT_USER_FUNCTIONS.md
index 2367c0a254e21c59a6bdb2f08430a06480caac34..f64be4c682c7d719eef461127035ce736675b53b 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_USER_FUNCTIONS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_USER_FUNCTIONS.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_USER\_FUNCTIONS
-提供openGauss中各个节点的用户所创建的函数的状态的统计信息,查询视图必须具有monadmin权限。
+提供openGauss中各个节点的用户所创建的函数的状态的统计信息。
**表 1** GLOBAL\_STAT\_USER\_FUNCTIONS字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_USER_INDEXES.md b/content/zh/docs/Developerguide/GLOBAL_STAT_USER_INDEXES.md
index d45da524141606503ec35462d4be528f82c84179..7173b2753cc626513dd772bd795986eb33cf719c 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_USER_INDEXES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_USER_INDEXES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_USER\_INDEXES
-得到各节点数据库中用户自定义普通表的索引状态信息。查询视图必须具有monadmin权限。
+得到各节点数据库中用户自定义普通表的索引状态信息。
**表 1** GLOBAL\_STAT\_USER\_INDEXES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_USER_TABLES.md b/content/zh/docs/Developerguide/GLOBAL_STAT_USER_TABLES.md
index a57b6ae115760da4df65b15ff2527429edbe8a71..81e57fc640ed0af17a12fa36b54e2c0c11184fa2 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_USER_TABLES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_USER_TABLES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_USER\_TABLES
-得到各节点所有命名空间中用户自定义普通表的状态信息。查询视图必须具有monadmin权限。
+得到各节点所有命名空间中用户自定义普通表的状态信息。
**表 1** GLOBAL\_STAT\_USER\_TABLES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_ALL_TABLES.md b/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_ALL_TABLES.md
index e8f9b9128718c948e6e093996cadefbebb86e30b..d89ecd8653b663c7b3c1f8f19c88cedf3e1dcf04 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_ALL_TABLES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_ALL_TABLES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_XACT\_ALL\_TABLES
-显示各节点的命名空间中所有普通表和toast表的事务状态信息。查询视图必须具有monadmin权限。
+显示各节点的命名空间中所有普通表和toast表的事务状态信息。
**表 1** GLOBAL\_STAT\_XACT\_ALL\_TABLES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_SYS_TABLES.md b/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_SYS_TABLES.md
index 721a3fea2cebf72f34d9c9eb58fd737b043fd927..f5f4f0135b1b0bc8ae5a9935057ba4f92d04e3b8 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_SYS_TABLES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_SYS_TABLES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_XACT\_SYS\_TABLES
-显示各节点命名空间中系统表的事务状态信息。查询视图必须具有monadmin权限。
+显示各节点命名空间中系统表的事务状态信息。
**表 1** GLOBAL\_STAT\_XACT\_SYS\_TABLES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_USER_FUNCTIONS.md b/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_USER_FUNCTIONS.md
index 1869c8863113d04174cfe01d47ac3c2300270959..b242f3b1ed17365c5b48ef902c080606812f88c1 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_USER_FUNCTIONS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_USER_FUNCTIONS.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_XACT\_USER\_FUNCTIONS
-视图包含各节点本事务内函数执行的统计信息。查询视图必须具有monadmin权限。
+视图包含各节点本事务内函数执行的统计信息。
**表 1** GLOBAL\_STAT\_XACT\_USER\_FUNCTIONS字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_USER_TABLES.md b/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_USER_TABLES.md
index b20de708dee7183cd7a0899bc8464ae4105d67f3..cb149a1015d57faf82911fd7cbe82661e04e8956 100644
--- a/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_USER_TABLES.md
+++ b/content/zh/docs/Developerguide/GLOBAL_STAT_XACT_USER_TABLES.md
@@ -1,6 +1,6 @@
# GLOBAL\_STAT\_XACT\_USER\_TABLES
-显示各节点命名空间中用户表的事务状态信息。查询视图必须具有monadmin权限。
+显示各节点命名空间中用户表的事务状态信息。
**表 1** GLOBAL\_STAT\_XACT\_USER\_TABLES字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_THREAD_WAIT_STATUS.md b/content/zh/docs/Developerguide/GLOBAL_THREAD_WAIT_STATUS.md
index 45413b8673f6055b6938cfd99362eae59ca4b6cc..83c57b0be58d7f308aea646d4b0e9ee28daada65 100644
--- a/content/zh/docs/Developerguide/GLOBAL_THREAD_WAIT_STATUS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_THREAD_WAIT_STATUS.md
@@ -1,6 +1,6 @@
# GLOBAL\_THREAD\_WAIT\_STATUS
-通过该视图可以检测所有节点上工作线程(backend thread)以及辅助线程(auxiliary thread)的阻塞等待情况,查询视图必须具有monadmin权限。具体事件信息请参见[15.3.67-表2 等待状态列表](PG_THREAD_WAIT_STATUS.md#zh-cn_topic_0237122466_zh-cn_topic_0059777957_t794f802302c24514a5db22d51eabacc4)、[15.3.67-表3 轻量级锁等待事件列表](PG_THREAD_WAIT_STATUS.md#zh-cn_topic_0237122466_table38811324183420)、[15.3.67-表4 IO等待事件列表](PG_THREAD_WAIT_STATUS.md#zh-cn_topic_0237122466_table124603113369)和[15.3.67-表5 事务锁等待事件列表](PG_THREAD_WAIT_STATUS.md#zh-cn_topic_0237122466_table11826123533718)。
+通过该视图可以检测所有节点上工作线程(backend thread)以及辅助线程(auxiliary thread)的阻塞等待情况。具体事件信息请参见[15.3.67-表2 等待状态列表](PG_THREAD_WAIT_STATUS.md#zh-cn_topic_0237122466_zh-cn_topic_0059777957_t794f802302c24514a5db22d51eabacc4)、[15.3.67-表3 轻量级锁等待事件列表](PG_THREAD_WAIT_STATUS.md#zh-cn_topic_0237122466_table38811324183420)、[15.3.67-表4 IO等待事件列表](PG_THREAD_WAIT_STATUS.md#zh-cn_topic_0237122466_table124603113369)和[15.3.67-表5 事务锁等待事件列表](PG_THREAD_WAIT_STATUS.md#zh-cn_topic_0237122466_table11826123533718)。
通过GLOBAL\_THREAD\_WAIT\_STATUS视图,可以查看openGauss全局各个节点上所有SQL语句产生的线程之间的调用层次关系,以及各个线程的阻塞等待状态,从而更容易定位hang以及类似现象的原因。
diff --git a/content/zh/docs/Developerguide/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md b/content/zh/docs/Developerguide/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md
index 6123753a1d840d51255598b789b1dbb544fbdb78..b02ddae79e6d4e2706fe37304232b5c360562932 100644
--- a/content/zh/docs/Developerguide/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md
@@ -1,6 +1,6 @@
# GLOBAL\_TRANSACTIONS\_PREPARED\_XACTS
-显示各节点当前准备好进行两阶段提交的事务的信息。查询视图必须具有monadmin权限。
+显示各节点当前准备好进行两阶段提交的事务的信息。
**表 1** GLOBAL\_TRANSACTIONS\_PREPARED\_XACTS字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_WAIT_EVENTS.md b/content/zh/docs/Developerguide/GLOBAL_WAIT_EVENTS.md
index 0bacb49887f8ea2a70d07c394e9f59c7b03e0a80..7de8c01ae8c80521267feb3850cb4578f689e78e 100644
--- a/content/zh/docs/Developerguide/GLOBAL_WAIT_EVENTS.md
+++ b/content/zh/docs/Developerguide/GLOBAL_WAIT_EVENTS.md
@@ -1,6 +1,6 @@
# GLOBAL\_WAIT\_EVENTS
-GLOBAL\_WAIT\_EVENTS视图显示各节点的event的等待相关的统计信息。查询视图必须具有monadmin权限。
+GLOBAL\_WAIT\_EVENTS视图显示各节点的event的等待相关的统计信息。
**表 1** GLOBAL\_WAIT\_EVENTS字段
diff --git a/content/zh/docs/Developerguide/GLOBAL_WORKLOAD_TRANSACTION.md b/content/zh/docs/Developerguide/GLOBAL_WORKLOAD_TRANSACTION.md
index 779a12b08f97113e35225d535417a8f03cbfadb8..93d05ae5a8e4cd62046c76bfd2744e5a7a200738 100644
--- a/content/zh/docs/Developerguide/GLOBAL_WORKLOAD_TRANSACTION.md
+++ b/content/zh/docs/Developerguide/GLOBAL_WORKLOAD_TRANSACTION.md
@@ -1,6 +1,6 @@
# GLOBAL\_WORKLOAD\_TRANSACTION
-显示各节点上的workload的负载信息。查询视图必须具有monadmin权限。
+显示各节点上的workload的负载信息。
**表 1** GLOBAL\_WORKLOAD\_TRANSACTION字段
diff --git a/content/zh/docs/Developerguide/PG_SHADOW.md b/content/zh/docs/Developerguide/PG_SHADOW.md
index 8ea8f679a273d8bd77319bd88e3be42ee14aee71..96abae5b76e92cc546b5ecd0a12e083407880fca 100644
--- a/content/zh/docs/Developerguide/PG_SHADOW.md
+++ b/content/zh/docs/Developerguide/PG_SHADOW.md
@@ -7,6 +7,7 @@ PG\_SHADOW视图显示了所有在PG\_AUTHID中标记了rolcanlogin的角色的
**表 1** PG\_SHADOW字段
+
名称
|
类型
@@ -152,33 +153,7 @@ PG\_SHADOW视图显示了所有在PG\_AUTHID中标记了rolcanlogin的角色的
| 运行时配置变量的会话缺省。
|
-usemonitoradmin
- |
-Boolean
- |
--
- |
-用户是监控管理员
- |
-
-useoperatoradmin
- |
-Boolean
- |
--
- |
-用户是运维管理员
- |
-
-usepolicyadmin
- |
-Boolean
- |
--
- |
-用户是安全策略管理员
- |
-
+
diff --git a/content/zh/docs/Developerguide/PG_USER.md b/content/zh/docs/Developerguide/PG_USER.md
index 161514e976f635ad8fd36a2310893f9a7dc1f2a6..043f6b6bb67cdac0a5b6c29431185b4faea35ce1 100644
--- a/content/zh/docs/Developerguide/PG_USER.md
+++ b/content/zh/docs/Developerguide/PG_USER.md
@@ -5,6 +5,7 @@ PG\_USER视图提供了访问数据库用户的信息,默认只有初始化用
**表 1** PG\_USER字段
+
名称
|
类型
@@ -124,28 +125,7 @@ PG\_USER视图提供了访问数据库用户的信息,默认只有初始化用
| 用户关联的逻辑openGauss名称,如果该用户没有管理openGauss,则该字段为空。
|
-
-usemonitoradmin
- |
-Boolean
- |
-用户是否是监控管理员
- |
-
-useoperatoradmin
- |
-Boolean
- |
-用户是否是运维管理员
- |
-
-usepolicyadmin
- |
-Boolean
- |
-用户是否是安全策略管理员
- |
-
-
+
+
diff --git a/content/zh/docs/Developerguide/SUMMARY_FILE_IOSTAT.md b/content/zh/docs/Developerguide/SUMMARY_FILE_IOSTAT.md
index 8758aad85599d62b8eec1f10679034ad6d74c1e6..d67a0408034bad7c1020dd9d2cf5d1b990edfb89 100644
--- a/content/zh/docs/Developerguide/SUMMARY_FILE_IOSTAT.md
+++ b/content/zh/docs/Developerguide/SUMMARY_FILE_IOSTAT.md
@@ -1,6 +1,6 @@
# SUMMARY\_FILE\_IOSTAT
-通过openGauss内对数据文件汇聚IO的统计,反映数据的IO性能,用以发现IO操作异常等性能问题。查询视图必须具有monadmin权限。
+通过openGauss内对数据文件汇聚IO的统计,反映数据的IO性能,用以发现IO操作异常等性能问题。
**表 1** SUMMARY\_FILE\_IOSTAT字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_FILE_REDO_IOSTAT.md b/content/zh/docs/Developerguide/SUMMARY_FILE_REDO_IOSTAT.md
index 58c32f3966a2e0275875b817e02011a71260b204..f8fb154ca6488dfdde6c9a82fdadddd0e4075d8b 100644
--- a/content/zh/docs/Developerguide/SUMMARY_FILE_REDO_IOSTAT.md
+++ b/content/zh/docs/Developerguide/SUMMARY_FILE_REDO_IOSTAT.md
@@ -1,6 +1,6 @@
# SUMMARY\_FILE\_REDO\_IOSTAT
-openGauss内汇聚所有的Redo\(WAL\)相关的统计信息。查询视图必须具有monadmin权限。
+openGauss内汇聚所有的Redo\(WAL\)相关的统计信息。
**表 1** SUMMARY\_FILE\_REDO\_IOSTAT字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_REL_IOSTAT.md b/content/zh/docs/Developerguide/SUMMARY_REL_IOSTAT.md
index 4634a541b426681b27c36b4bd2a20f56457b1cfd..840951884d001952cf50445addfdf0a00634c0e0 100644
--- a/content/zh/docs/Developerguide/SUMMARY_REL_IOSTAT.md
+++ b/content/zh/docs/Developerguide/SUMMARY_REL_IOSTAT.md
@@ -1,6 +1,6 @@
# SUMMARY\_REL\_IOSTAT
-获取所有节点上的数据文件IO 统计信息,查询视图必须具有monadmin权限。
+获取所有节点上的数据文件IO 统计信息。
**表 1** SUMMARY\_REL\_IOSTAT字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STATEMENT.md b/content/zh/docs/Developerguide/SUMMARY_STATEMENT.md
index 44dfc0150bd13ac71d1941ff4c8116a7100b3cd5..25fa07d71027a22dd5986f4dd9eb596fcfa2e96a 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STATEMENT.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STATEMENT.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATEMENT
-获得各数据库主节点的执行语句\(归一化SQL\)的全量信息\(包含数据库节点\)。查询视图必须具有monadmin权限。
+获得各数据库主节点的执行语句\(归一化SQL\)的全量信息\(包含数据库节点\)。
**表 1** SUMMARY\_STATEMENT字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STATEMENT_COUNT.md b/content/zh/docs/Developerguide/SUMMARY_STATEMENT_COUNT.md
index f44cfa4f1eea9ff18bdc20186548547be00395c9..c36c907b93344a82d5ff1bb4ab672ba778a492dd 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STATEMENT_COUNT.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STATEMENT_COUNT.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATEMENT\_COUNT
-显示数据库汇聚各节点\(数据库节点\)当前时刻执行的五类语句(SELECT、INSERT、UPDATE、DELETE、MERGE INTO)和\(DDL、DML、DCL\)统计信息。查询视图必须具有monadmin权限。
+显示数据库汇聚各节点\(数据库节点\)当前时刻执行的五类语句(SELECT、INSERT、UPDATE、DELETE、MERGE INTO)和\(DDL、DML、DCL\)统计信息。
**表 1** SUMMARY\_STATEMENT\_COUNT字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STATIO_ALL_INDEXES.md b/content/zh/docs/Developerguide/SUMMARY_STATIO_ALL_INDEXES.md
index f5d4af02b9c857af18699b7c41471810df043576..c6f63e9578c85906359dd61dc5ef64e586fea2cb 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STATIO_ALL_INDEXES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STATIO_ALL_INDEXES.md
@@ -1,8 +1,6 @@
# SUMMARY\_STATIO\_ALL\_INDEXES
-SUMMARY\_STATIO\_ALL\_INDEXES视图包含含openGauss内汇聚的数据库中的每个索引行, 显示特定索引的I/O的统计。查询视图必须具有monadmin权限。
-
-**表 1** SUMMARY\_STATIO\_ALL\_INDEXES字段
+SUMMARY\_STATIO\_ALL\_INDEXES视图包含含openGauss内汇聚的数据库中的每个索引行, 显示特定索引的I/O的统计。
名称
diff --git a/content/zh/docs/Developerguide/SUMMARY_STATIO_ALL_SEQUENCES.md b/content/zh/docs/Developerguide/SUMMARY_STATIO_ALL_SEQUENCES.md
index 7fb677a6b8368081b123c4d15488d23d59fbd0c6..177dfb08449bb55ae5e9fd309f05b40c90097430 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STATIO_ALL_SEQUENCES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STATIO_ALL_SEQUENCES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_ALL\_SEQUENCES
-SUMMARY\_STATIO\_ALL\_SEQUENCES视图包含openGauss内汇聚的数据库中每个序列的每一行,显示特定序列关于I/O的统计。查询视图必须具有monadmin权限。
+SUMMARY\_STATIO\_ALL\_SEQUENCES视图包含openGauss内汇聚的数据库中每个序列的每一行,显示特定序列关于I/O的统计。
**表 1** SUMMARY\_STATIO\_ALL\_SEQUENCES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STATIO_ALL_TABLES.md b/content/zh/docs/Developerguide/SUMMARY_STATIO_ALL_TABLES.md
index 4309a3ad2dc19b2eb3e749f63c45e87295da388b..cc85f97288c929dc22d8f7935069b6be27390dfa 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STATIO_ALL_TABLES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STATIO_ALL_TABLES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_ALL\_TABLES
-SUMMARY\_STATIO\_ALL\_TABLES视图将包含openGauss内汇聚的数据库中每个表\(包括TOAST表)的I/O的统计。查询视图必须具有monadmin权限。
+SUMMARY\_STATIO\_ALL\_TABLES视图将包含openGauss内汇聚的数据库中每个表\(包括TOAST表)的I/O的统计。
**表 1** SUMMARY\_STATIO\_ALL\_TABLES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STATIO_SYS_INDEXES.md b/content/zh/docs/Developerguide/SUMMARY_STATIO_SYS_INDEXES.md
index 47927f1fad6a47858b1b065c7f5c936d9e6d703c..dc60b377de4106aa67e5d8427f11d8fe100ee3cc 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STATIO_SYS_INDEXES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STATIO_SYS_INDEXES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_SYS\_INDEXES
-SUMMARY\_STATIO\_SYS\_INDEXES视图显示openGauss内汇聚的命名空间中所有系统表索引的IO状态信息。查询视图必须具有monadmin权限。
+SUMMARY\_STATIO\_SYS\_INDEXES视图显示openGauss内汇聚的命名空间中所有系统表索引的IO状态信息。
**表 1** SUMMARY\_STATIO\_SYS\_INDEXES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STATIO_SYS_SEQUENCES.md b/content/zh/docs/Developerguide/SUMMARY_STATIO_SYS_SEQUENCES.md
index 8e297a291120e3bc3e39012d4effbbe58758b14b..53103b742ce76a35fc69e1db0ea74d803185551c 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STATIO_SYS_SEQUENCES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STATIO_SYS_SEQUENCES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_SYS\_SEQUENCES
-SUMMARY\_STATIO\_SYS\_SEQUENCES视图显示openGauss内汇聚的命名空间中所有系统表为序列的IO状态信息。查询视图必须具有monadmin权限。
+SUMMARY\_STATIO\_SYS\_SEQUENCES视图显示openGauss内汇聚的命名空间中所有系统表为序列的IO状态信息。
**表 1** SUMMARY\_STATIO\_SYS\_SEQUENCES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STATIO_SYS_TABLES.md b/content/zh/docs/Developerguide/SUMMARY_STATIO_SYS_TABLES.md
index 9abbc1eeef5fb40fd1b35d420562379439adf614..f7b5e2d5bbb66c6506344ae71a1a0504b073eca3 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STATIO_SYS_TABLES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STATIO_SYS_TABLES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_SYS\_TABLES
-SUMMARY\_STATIO\_SYS\_TABLES视图显示openGauss内汇聚的命名空间中所有系统表的IO状态信息。查询视图必须具有monadmin权限。
+SUMMARY\_STATIO\_SYS\_TABLES视图显示openGauss内汇聚的命名空间中所有系统表的IO状态信息。
**表 1** SUMMARY\_STATIO\_SYS\_TABLES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STATIO_USER_INDEXES.md b/content/zh/docs/Developerguide/SUMMARY_STATIO_USER_INDEXES.md
index 8f526b097fbdebe2abe70d11d76cb06107b698a5..a1057c1d66776113a0406eb115f1e680c0fa52fc 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STATIO_USER_INDEXES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STATIO_USER_INDEXES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_USER\_INDEXES
-SUMMARY\_STATIO\_USER\_INDEXES视图显示openGauss内汇聚的命名空间中所有用户关系表索引的IO状态信息。查询视图必须具有monadmin权限。
+SUMMARY\_STATIO\_USER\_INDEXES视图显示openGauss内汇聚的命名空间中所有用户关系表索引的IO状态信息。
**表 1** SUMMARY\_STATIO\_USER\_INDEXES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STATIO_USER_SEQUENCES.md b/content/zh/docs/Developerguide/SUMMARY_STATIO_USER_SEQUENCES.md
index bb635b58dcd9631e3623de971195d574fd005975..4390e51b1d36c1a8bd51782e9d89710852ba68a7 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STATIO_USER_SEQUENCES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STATIO_USER_SEQUENCES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_USER\_SEQUENCES
-SUMMARY\_STATIO\_USER\_SEQUENCES视图显示openGauss内汇聚的命名空间中所有用户关系表类型为序列的IO状态信息。查询视图必须具有monadmin权限。
+SUMMARY\_STATIO\_USER\_SEQUENCES视图显示openGauss内汇聚的命名空间中所有用户关系表类型为序列的IO状态信息。
**表 1** SUMMARY\_STATIO\_USER\_SEQUENCES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STATIO_USER_TABLES.md b/content/zh/docs/Developerguide/SUMMARY_STATIO_USER_TABLES.md
index 76d39d02927dd69fb32701e931b7420434bb6f79..6d8eb59f9fc5cd66a9affba11545e34513603da1 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STATIO_USER_TABLES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STATIO_USER_TABLES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STATIO\_USER\_TABLES
-SUMMARY\_STATIO\_USER\_TABLES视图显示openGauss内汇聚的命名空间中所有用户关系表的IO状态信息。查询视图必须具有monadmin权限。
+SUMMARY\_STATIO\_USER\_TABLES视图显示openGauss内汇聚的命名空间中所有用户关系表的IO状态信息。
**表 1** SUMMARY\_STATIO\_USER\_TABLES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_ALL_INDEXES.md b/content/zh/docs/Developerguide/SUMMARY_STAT_ALL_INDEXES.md
index 8da331f52c898e03438b4d97398ed90fafa1ae8f..a4158133c3f123f41f44883de263116888281a2a 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_ALL_INDEXES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_ALL_INDEXES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_ALL\_INDEXES
-将包含openGauss内汇聚数据库中的每个索引行,显示访问特定索引的统计。查询视图必须具有monadmin权限。
+将包含openGauss内汇聚数据库中的每个索引行,显示访问特定索引的统计。
**表 1** SUMMARY\_STAT\_ALL\_INDEXES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_ALL_TABLES.md b/content/zh/docs/Developerguide/SUMMARY_STAT_ALL_TABLES.md
index 889e90fae45f60fa5fb00bf03820f40a189fab7f..8ebfb1a558274da87129540897131d9a720de198 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_ALL_TABLES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_ALL_TABLES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_ALL\_TABLES
-openGauss内汇聚数据库中每个表的一行(包括TOAST表)的统计信息。查询视图必须具有monadmin权限。
+openGauss内汇聚数据库中每个表的一行(包括TOAST表)的统计信息。
**表 1** SUMMARY\_STAT\_ALL\_TABLES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_BAD_BLOCK.md b/content/zh/docs/Developerguide/SUMMARY_STAT_BAD_BLOCK.md
index 58ceb920c7bbfc9962de1dac443cd50a7b380373..5f6d7d41ada0d83ad56544a9a7ecd6984ca91151 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_BAD_BLOCK.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_BAD_BLOCK.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_BAD\_BLOCK
-获得openGauss内汇聚的表、索引等文件的读取失败信息。查询视图必须具有monadmin权限。
+获得openGauss内汇聚的表、索引等文件的读取失败信息。
**表 1** SUMMARY\_STAT\_BAD\_BLOCK字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_DATABASE.md b/content/zh/docs/Developerguide/SUMMARY_STAT_DATABASE.md
index d999215d0236216c2caa4e9da72f775c7da472a2..407a726e8bf370e1e7a96b8fc5633844b6019194 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_DATABASE.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_DATABASE.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_DATABASE
-视图将包含集群内汇聚的每个数据库的每一行,显示数据库统计。查询视图必须具有monadmin权限。
+视图将包含集群内汇聚的每个数据库的每一行,显示数据库统计。
**表 1** SUMMARY\_STAT\_DATABASE
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_DATABASE_CONFLICTS.md b/content/zh/docs/Developerguide/SUMMARY_STAT_DATABASE_CONFLICTS.md
index 086bdbb278fa8d4c78bc74dbfdc586425a521120..ab50800f69f5ac18b0dc52aa18744ca113cc31ab 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_DATABASE_CONFLICTS.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_DATABASE_CONFLICTS.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_DATABASE\_CONFLICTS
-显示openGauss内汇聚的数据库冲突状态的统计信息。查询视图必须具有monadmin权限。
+显示openGauss内汇聚的数据库冲突状态的统计信息。
**表 1** SUMMARY\_STAT\_DATABASE\_CONFLICTS字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_SYS_INDEXES.md b/content/zh/docs/Developerguide/SUMMARY_STAT_SYS_INDEXES.md
index 7b68d0b35d7207146d05ad3438308726f1e0745e..22cf62bd61c52cc5efab8f46e0815f5ab4d0c777 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_SYS_INDEXES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_SYS_INDEXES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_SYS\_INDEXES
-openGauss内汇聚pg\_catalog、information\_schema以及pg\_toast模式中所有系统表的索引状态信息。查询视图必须具有monadmin权限。
+openGauss内汇聚pg\_catalog、information\_schema以及pg\_toast模式中所有系统表的索引状态信息。
**表 1** SUMMARY\_STAT\_SYS\_INDEXES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_SYS_TABLES.md b/content/zh/docs/Developerguide/SUMMARY_STAT_SYS_TABLES.md
index 74f21c1e2d6b8571fd4c130b51f9e9f72e473ad4..2ef4ed40ba74ba06649ac4612a8d7d9d9db8e638 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_SYS_TABLES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_SYS_TABLES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_SYS\_TABLES
-openGauss内汇聚 pg\_catalog、information\_schema模式的所有命名空间中系统表的统计信息。查询视图必须具有monadmin权限。
+openGauss内汇聚 pg\_catalog、information\_schema模式的所有命名空间中系统表的统计信息。
**表 1** SUMMARY\_STAT\_SYS\_TABLES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_USER_FUNCTIONS.md b/content/zh/docs/Developerguide/SUMMARY_STAT_USER_FUNCTIONS.md
index b401c3746f0bcc8db5ae855c7a8f66877c492419..aa4c7839332c64218611f8c607d209d6c1ac2fc3 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_USER_FUNCTIONS.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_USER_FUNCTIONS.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_USER\_FUNCTIONS
-SUMMARY\_STAT\_USER\_FUNCTIONS用来统计所数据库节点用户自定义视图的相关统计信息,查询视图必须具有monadmin权限。
+SUMMARY\_STAT\_USER\_FUNCTIONS用来统计所数据库节点用户自定义视图的相关统计信息。
**表 1** SUMMARY\_STAT\_USER\_FUNCTIONS字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_USER_INDEXES.md b/content/zh/docs/Developerguide/SUMMARY_STAT_USER_INDEXES.md
index 8e853d10d53212b9cc48cea14207726f00e1f35f..c853228dfb1c1d0890624de902453d72b039ef22 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_USER_INDEXES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_USER_INDEXES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_USER\_INDEXES
-openGauss内汇聚所有数据库中用户自定义普通表的索引状态信息。查询视图必须具有monadmin权限。
+openGauss内汇聚所有数据库中用户自定义普通表的索引状态信息。
**表 1** SUMMARY\_STAT\_USER\_INDEXES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_USER_TABLES.md b/content/zh/docs/Developerguide/SUMMARY_STAT_USER_TABLES.md
index 7c135234f899e997da7ff51237bba93d3d306504..72aa015bf22c6efdf2f5468dada4f91f95f4e839 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_USER_TABLES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_USER_TABLES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_USER\_TABLES
-openGauss内汇聚所有命名空间中用户自定义普通表的状态信息。查询视图必须具有monadmin权限。
+openGauss内汇聚所有命名空间中用户自定义普通表的状态信息。
**表 1** SUMMARY\_STAT\_USER\_TABLES
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_ALL_TABLES.md b/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_ALL_TABLES.md
index e0c1e40390c8c7cbbda4fb73db8ba307be9b056f..06e45395affbc247be2f02caadd29ad8319636b9 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_ALL_TABLES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_ALL_TABLES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_XACT\_ALL\_TABLES
-显示openGauss内汇聚的命名空间中所有普通表和toast表的事务状态信息。查询视图必须具有monadmin权限。
+显示openGauss内汇聚的命名空间中所有普通表和toast表的事务状态信息。
**表 1** SUMMARY\_STAT\_XACT\_ALL\_TABLES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_SYS_TABLES.md b/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_SYS_TABLES.md
index 8d71963082297bf8b9791ebe69067c87d48bcd85..641ba6d819a7990a46d0d2e6dc8d88047c21c7f1 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_SYS_TABLES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_SYS_TABLES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_XACT\_SYS\_TABLES
-显示openGauss内汇聚的命名空间中系统表的事务状态信息。查询视图必须具有monadmin权限。
+显示openGauss内汇聚的命名空间中系统表的事务状态信息。
**表 1** SUMMARY\_STAT\_XACT\_SYS\_TABLES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_USER_FUNCTIONS.md b/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_USER_FUNCTIONS.md
index 90094e44bed749358357000cfbc31a8b81dcffa9..c47911400fcf39c00269042d3d79ef90f20fdfcf 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_USER_FUNCTIONS.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_USER_FUNCTIONS.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_XACT\_USER\_FUNCTIONS
-视图包含openGauss内汇聚的本事务内函数执行的统计信息。查询视图必须具有monadmin权限。
+视图包含openGauss内汇聚的本事务内函数执行的统计信息。
**表 1** SUMMARY\_STAT\_XACT\_USER\_FUNCTIONS字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_USER_TABLES.md b/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_USER_TABLES.md
index b049302c93833ca323c46d59803dc1c086800588..5885e4c4f9cb38dfb780fb615838d9d8934a229d 100644
--- a/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_USER_TABLES.md
+++ b/content/zh/docs/Developerguide/SUMMARY_STAT_XACT_USER_TABLES.md
@@ -1,6 +1,6 @@
# SUMMARY\_STAT\_XACT\_USER\_TABLES
-显示集群内汇聚的命名空间中用户表的事务状态信息。查询视图必须具有monadmin权限。
+显示集群内汇聚的命名空间中用户表的事务状态信息。
**表 1** SUMMARY\_STAT\_XACT\_USER\_TABLES字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md b/content/zh/docs/Developerguide/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md
index 6ff75576eff01405602790550cc25491e70dacb0..5d463fa05fc3995b1c42f04bc8f2038b0a1ea8c7 100644
--- a/content/zh/docs/Developerguide/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md
+++ b/content/zh/docs/Developerguide/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md
@@ -1,6 +1,6 @@
# SUMMARY\_TRANSACTIONS\_PREPARED\_XACTS
-显示openGauss中数据库主节点当前准备好进行两阶段提交的事务的信息。查询视图必须具有monadmin权限。
+显示openGauss中数据库主节点当前准备好进行两阶段提交的事务的信息。
**表 1** SUMMARY\_TRANSACTIONS\_PREPARED\_XACTS字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_USER_LOGIN.md b/content/zh/docs/Developerguide/SUMMARY_USER_LOGIN.md
index 9dc1db58abc39f227126f6b00f8747e18a252993..3c263181fb01f4e0712767a3e24535749b8f0117 100644
--- a/content/zh/docs/Developerguide/SUMMARY_USER_LOGIN.md
+++ b/content/zh/docs/Developerguide/SUMMARY_USER_LOGIN.md
@@ -1,6 +1,6 @@
# SUMMARY\_USER\_LOGIN
-SUMMARY\_USER\_LOGIN用来记录数据库主节点上用户登录和退出次数的相关信息,查询视图必须具有monadmin权限。
+SUMMARY\_USER\_LOGIN用来记录数据库主节点上用户登录和退出次数的相关信息。
**表 1** SUMMARY\_USER\_LOGIN字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_WORKLOAD_SQL_COUNT.md b/content/zh/docs/Developerguide/SUMMARY_WORKLOAD_SQL_COUNT.md
index 49f2a1d00802d3cef59051debfb85f4ad399ae65..b278f92b95f3023d0f7e64515c453eb4bc1582c0 100644
--- a/content/zh/docs/Developerguide/SUMMARY_WORKLOAD_SQL_COUNT.md
+++ b/content/zh/docs/Developerguide/SUMMARY_WORKLOAD_SQL_COUNT.md
@@ -1,6 +1,6 @@
# SUMMARY\_WORKLOAD\_SQL\_COUNT
-显示openGauss内各数据库主节点的workload上的SQL数量分布。查询视图必须具有monadmin权限。
+显示openGauss内各数据库主节点的workload上的SQL数量分布。
**表 1** SUMMARY\_WORKLOAD\_SQL\_COUNT字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md b/content/zh/docs/Developerguide/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md
index a7f8d00f59b22af7db91d71e6ee483061c2e0fc3..5dcb8d23b3711ae6f8036043d635fcd9ee85f41a 100644
--- a/content/zh/docs/Developerguide/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md
+++ b/content/zh/docs/Developerguide/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md
@@ -1,6 +1,6 @@
# SUMMARY\_WORKLOAD\_SQL\_ELAPSE\_TIME
-SUMMARY\_WORKLOAD\_SQL\_ELAPSE\_TIME用来统计数据库主节点上workload(业务)负载的SUID信息,查询视图必须具有monadmin权限。
+SUMMARY\_WORKLOAD\_SQL\_ELAPSE\_TIME用来统计数据库主节点上workload(业务)负载的SUID信息。
**表 1** SUMMARY\_WORKLOAD\_SQL\_ELAPSE\_TIM字段
diff --git a/content/zh/docs/Developerguide/SUMMARY_WORKLOAD_TRANSACTION.md b/content/zh/docs/Developerguide/SUMMARY_WORKLOAD_TRANSACTION.md
index e024e89b2fddd9258002e46fad97c4981b0016b5..2bab40e23ec1b5dbb0f49180e0ca2e28077586de 100644
--- a/content/zh/docs/Developerguide/SUMMARY_WORKLOAD_TRANSACTION.md
+++ b/content/zh/docs/Developerguide/SUMMARY_WORKLOAD_TRANSACTION.md
@@ -1,6 +1,6 @@
# SUMMARY\_WORKLOAD\_TRANSACTION
-显示openGauss内汇聚的负载事务信息。查询视图必须具有monadmin权限。
+显示openGauss内汇聚的负载事务信息。
**表 1** SUMMARY\_WORKLOAD\_TRANSACTION字段
diff --git a/content/zh/docs/Developerguide/WORKLOAD_SQL_COUNT.md b/content/zh/docs/Developerguide/WORKLOAD_SQL_COUNT.md
index a4f2a167284d337f752cecfd44dbc0a696211d2c..da1967c9ebc75f6f81c0249ae11d391d52e13898 100644
--- a/content/zh/docs/Developerguide/WORKLOAD_SQL_COUNT.md
+++ b/content/zh/docs/Developerguide/WORKLOAD_SQL_COUNT.md
@@ -1,6 +1,6 @@
# WORKLOAD\_SQL\_COUNT
-显示当前节点workload上的SQL数量分布。普通用户只可以看到自己在workload上的SQL分布;monadmin可以看到总的workload的负载情况。
+显示当前节点workload上的SQL数量分布。普通用户只可以看到自己在workload上的SQL分布;初始用户可以看到总的workload的负载情况。
**表 1** WORKLOAD\_SQL\_COUNT字段
diff --git "a/content/zh/docs/Developerguide/\347\256\241\347\220\206\345\221\230.md" "b/content/zh/docs/Developerguide/\347\256\241\347\220\206\345\221\230.md"
index 403583d50f584be8206c2af11b9630ee2dc7579d..226f0c0371c5c43f71d780ed41fe023ab1eff504 100644
--- "a/content/zh/docs/Developerguide/\347\256\241\347\220\206\345\221\230.md"
+++ "b/content/zh/docs/Developerguide/\347\256\241\347\220\206\345\221\230.md"
@@ -24,21 +24,3 @@ ALTER USER joe SYSADMIN;
ALTER USER时,要求用户已存在。
-## 监控管理员
-
-监控管理员是指具有MONADMIN属性的帐户,具有查看dbe\_perf模式下视图和函数的权限,亦可以对dbe\_perf模式的对象权限进行授予或收回。
-
-要创建新的监控管理员,请以初始用户身份连接数据库,并使用带MONADMIN选项的[CREATE USER](CREATE-USER.md)语句或 [ALTER USER](ALTER-USER.md)语句进行设置。
-
-```
-CREATE USER monadmin WITH MONADMIN password "Bigdata@123";
-```
-
-或者
-
-```
-ALTER USER joe MONADMIN;
-```
-
-ALTER USER时,要求用户已存在。
-
|
---|
|
---|