Note
This view is introduced since OceanBase Database V4.0.0.
Purpose
The GV$OB_SERVER_SCHEMA_INFO view displays information about the schemas on all OBServer nodes.
Columns
| Column | Type | Nullable? | Description |
|---|---|---|---|
| SVR_IP | varchar(46) | NO | The IP address of the OBServer node. |
| SVR_PORT | bigint(20) | NO | The port number of the OBServer node. |
| TENANT_ID | bigint(20) | NO | The ID of the tenant. |
| REFRESHED_SCHEMA_VERSION | bigint(20) | NO | The latest version that the schemas under the tenant have been refreshed to. |
| RECEIVED_SCHEMA_VERSION | bigint(20) | NO | The version that the schemas under the tenant need to be refreshed to. |
| SCHEMA_COUNT | bigint(20) | NO | The total number of schema objects under the corresponding schema version. |
| SCHEMA_SIZE | bigint(20) | NO | The total memory size occupied by schema objects under the corresponding schema version, in bytes. |
| MIN_SSTABLE_SCHEMA_VERSION | bigint(20) | NO | The earliest schema version stored in the SSTable of the tenant. |
Sample query
A user queries the schema information of all OBServer nodes in the user's tenant.
obclient [oceanbase]> SELECT * FROM oceanbase.GV$OB_SERVER_SCHEMA_INFO;
The query result is as follows:
+----------------+----------+-----------+--------------------------+-------------------------+--------------+-------------+----------------------------+
| SVR_IP | SVR_PORT | TENANT_ID | REFRESHED_SCHEMA_VERSION | RECEIVED_SCHEMA_VERSION | SCHEMA_COUNT | SCHEMA_SIZE | MIN_SSTABLE_SCHEMA_VERSION |
+----------------+----------+-----------+--------------------------+-------------------------+--------------+-------------+----------------------------+
| 172.xx.xxx.xxx | 2882 | 1002 | 1735785545009528 | 1735785545009528 | 1774 | 1725881 | -1 |
| 172.xx.xxx.xxx | 2882 | 1002 | 1735785545009528 | 1735785545009528 | 1774 | 1725881 | -1 |
| 172.xx.xxx.xxx | 2882 | 1002 | 1735785545009528 | 1735785545009528 | 1774 | 1725881 | -1 |
+----------------+----------+-----------+--------------------------+-------------------------+--------------+-------------+----------------------------+
3 rows in set