Note
This view is introduced since OceanBase Database V4.0.0.
Purpose
The V$OB_SERVER_SCHEMA_INFO view displays information about schemas on the current OBServer node.
Columns
| Column | Type | Nullable? | Description |
|---|---|---|---|
| SVR_IP | VARCHAR2(46) | NO | The IP address of the OBServer node. |
| SVR_PORT | NUMBER(38) | NO | The port number of the OBServer node. |
| TENANT_ID | NUMBER(38) | NO | The ID of the tenant. |
| REFRESHED_SCHEMA_VERSION | NUMBER(38) | NO | The latest version that the schemas under the tenant have been refreshed to. |
| RECEIVED_SCHEMA_VERSION | NUMBER(38) | NO | The version that the schemas under the tenant need to be refreshed to. |
| SCHEMA_COUNT | NUMBER(38) | NO | The total number of schema objects under the corresponding schema version. |
| SCHEMA_SIZE | NUMBER(38) | NO | The total memory size occupied by schema objects under the corresponding schema version, in bytes. |
| MIN_SSTABLE_SCHEMA_VERSION | NUMBER(38) | NO | The earliest schema version stored in the SSTable of the tenant. |
Sample query
A user tenant queries the schema information of the tenant on the current OBServer node.
obclient [SYS]> SELECT * FROM SYS.V$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 | 1004 | 1735872883840472 | 1735872883840472 | 2360 | 2321104 | -1 |
+----------------+----------+-----------+--------------------------+-------------------------+--------------+-------------+----------------------------+
1 row in set