Note
This view is available starting with V4.0.0.
Purpose
This view displays the schema information of the current server.
Columns
| Column | Type | Nullable | Description |
|---|---|---|---|
| SVR_IP | VARCHAR2(46) | NO | The IP address of the server. |
| SVR_PORT | NUMBER(38) | NO | The port number of the server. |
| TENANT_ID | NUMBER(38) | NO | The ID of the tenant. |
| REFRESHED_SCHEMA_VERSION | NUMBER(38) | NO | The schema version that has been refreshed for the tenant. |
| RECEIVED_SCHEMA_VERSION | NUMBER(38) | NO | The schema version that needs to be refreshed for the tenant. |
| SCHEMA_COUNT | NUMBER(38) | NO | The number of schemas for the tenant. |
| SCHEMA_SIZE | NUMBER(38) | NO | The size of schemas for the tenant. |
| MIN_SSTABLE_SCHEMA_VERSION | NUMBER(38) | NO | The minimum schema version recorded in the SSTable of the tenant. |
Sample query
Query the schema information of the current 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