OceanBase logo

OceanBase

A unified distributed database ready for your transactional, analytical, and AI workloads.

DEPLOY YOUR WAY

OceanBase Cloud

The best way to deploy and scale OceanBase

OceanBase Enterprise

Run and manage OceanBase on your infra

TRY OPEN SOURCE

OceanBase Community Edition

The free, open-source distributed database

OceanBase seekdb

Open source AI native search database

Customer Stories

Real-world success stories from enterprises across diverse industries.

View All
BY USE CASES

Mission-Critical Transactions

Global & Multicloud Application

Elastic Scaling for Peak Traffic

Real-time Analytics

Active Geo-redundancy

Database Consolidation

Resources

Comprehensive knowledge hub for OceanBase.

Blog

Live Demos

Training & Certification

Documentation

Official technical guides, tutorials, API references, and manuals for all OceanBase products.

View All
PRODUCTS

OceanBase Cloud

OceanBase Database

Tools

Connectors and Middleware

QUICK START

OceanBase Cloud

OceanBase Database

BEST PRACTICES

Practical guides for utilizing OceanBase more effectively and conveniently

Company

Learn more about OceanBase – our company, partnerships, and trust and security initiatives.

About OceanBase

Partner

Trust Center

Contact Us

International - English
中国站 - 简体中文
日本 - 日本語
Sign In
Start on Cloud

A unified distributed database ready for your transactional, analytical, and AI workloads.

DEPLOY YOUR WAY

OceanBase Cloud

The best way to deploy and scale OceanBase

OceanBase Enterprise

Run and manage OceanBase on your infra

TRY OPEN SOURCE

OceanBase Community Edition

The free, open-source distributed database

OceanBase seekdb

Open source AI native search database

Customer Stories

Real-world success stories from enterprises across diverse industries.

View All
BY USE CASES

Mission-Critical Transactions

Global & Multicloud Application

Elastic Scaling for Peak Traffic

Real-time Analytics

Active Geo-redundancy

Database Consolidation

Comprehensive knowledge hub for OceanBase.

Blog

Live Demos

Training & Certification

Documentation

Official technical guides, tutorials, API references, and manuals for all OceanBase products.

View All
PRODUCTS
OceanBase CloudOceanBase Database
ToolsConnectors and Middleware
QUICK START
OceanBase CloudOceanBase Database
BEST PRACTICES

Practical guides for utilizing OceanBase more effectively and conveniently

Learn more about OceanBase – our company, partnerships, and trust and security initiatives.

About OceanBase

Partner

Trust Center

Contact Us

Start on Cloud
编组
All Products
    • Databases
    • iconOceanBase Database
    • iconOceanBase Cloud
    • iconOceanBase Tugraph
    • iconInteractive Tutorials
    • iconOceanBase Best Practices
    • Tools
    • iconOceanBase Cloud Platform
    • iconOceanBase Migration Service
    • iconOceanBase Developer Center
    • iconOceanBase Migration Assessment
    • iconOceanBase Admin Tool
    • iconOceanBase Loader and Dumper
    • iconOceanBase Deployer
    • iconKubernetes operator for OceanBase
    • iconOceanBase Diagnostic Tool
    • iconOceanBase Binlog Service
    • Connectors and Middleware
    • iconOceanBase Database Proxy
    • iconEmbedded SQL in C for OceanBase
    • iconOceanBase Call Interface
    • iconOceanBase Connector/C
    • iconOceanBase Connector/J
    • iconOceanBase Connector/ODBC
    • iconOceanBase Connector/NET
icon

OceanBase Database

SQL - V4.3.5

    Download PDF

    OceanBase logo

    The Unified Distributed Database for the AI Era.

    Follow Us
    Products
    OceanBase CloudOceanBase EnterpriseOceanBase Community EditionOceanBase seekdb
    Resources
    DocsBlogLive DemosTraining & Certification
    Company
    About OceanBaseTrust CenterLegalPartnerContact Us
    Follow Us

    © OceanBase 2026. All rights reserved

    Cloud Service AgreementPrivacy PolicySecurity
    Contact Us
    Document Feedback
    1. Documentation Center
    2. OceanBase Database
    3. SQL
    4. V4.3.5
    iconOceanBase Database
    SQL - V 4.3.5
    SQL
    KV
    • V 4.4.2
    • V 4.3.5
    • V 4.3.3
    • V 4.3.1
    • V 4.3.0
    • V 4.2.5
    • V 4.2.2
    • V 4.2.1
    • V 4.2.0
    • V 4.1.0
    • V 4.0.0
    • V 3.1.4 and earlier

    oceanbase.DBA_OB_SERVERS

    Last Updated:2026-04-15 06:09:08  Updated
    share
    What is on this page
    Purpose
    Columns
    Sample query

    folded

    share

    Note

    This view is introduced since OceanBase Database V4.0.0.

    Purpose

    This view displays the information about 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.
    ID bigint(20) NO The unique ID allocated by the cluster to the OBServer node.
    ZONE varchar(128) NO The zone to which the OBServer node belongs.
    SQL_PORT bigint(20) NO The SQL port of the OBServer node.
    WITH_ROOTSERVER varchar(3) NO
  • YES: RootService is available on the OBServer node.
  • NO: RootService is unavailable on the OBServer node.
  • STATUS varchar(64) NO
  • ACTIVE: The heartbeat connection between the OBServer node and the RootService server is normal.
  • INACTIVE: The OBServer node lost the heartbeat connection with the RootService server.
  • DELETING: The OBServer node is being deleted.
  • START_SERVICE_TIME timestamp(6) NO The point in time at which the OBServer node started to provide external services after the observer process was started on the node.
  • NULL: The process is not started on the node or the node is unavailable.
  • Valid values: the point in time at which the OBServer node started to provide external services after the observer process was started on the node.
  • STOP_TIME timestamp(6) NO The time when the user actively stopped the node service.
  • NULL: The node has not been stopped.
  • Valid value: The OBServer node has been stopped, indicating the stop time.
  • BLOCK_MIGRATE_IN_TIME timestamp(6) NO The time when the OBServer node prohibited data migration.
  • NULL: The OBServer does not prohibit data migration.
  • Valid value: the time when the OBServer node prohibited data migration.
  • CREATE_TIME timestamp(6) YES The time when the table was created.
    MODIFY_TIME timestamp(6) YES The time when the OBServer node was last modified.
    BUILD_VERSION varchar(256) NO The build version of the OBServer node.
    LAST_OFFLINE_TIME timestamp(6) NO The last time the OBServer node went offline.
  • NULL: The OBServer node has never gone offline.
  • Valid value: The last offline time of the OBServer node.

    Note

    This field was introduced starting from V4.2.0.

  • Sample query

    The system tenant views information about all OBServer nodes in the cluster.

    obclient [oceanbase]> SELECT * FROM oceanbase.DBA_OB_SERVERS\G
    

    The query result is as follows:

    *************************** 1. row ***************************
                   SVR_IP: 172.xx.xxx.xxx
                 SVR_PORT: 2882
                       ID: 1
                     ZONE: zone1
                 SQL_PORT: 2881
          WITH_ROOTSERVER: YES
                   STATUS: ACTIVE
       START_SERVICE_TIME: 2025-06-23 15:04:32.216057
                STOP_TIME: NULL
    BLOCK_MIGRATE_IN_TIME: NULL
              CREATE_TIME: 2025-06-23 15:04:28.283860
              MODIFY_TIME: 2025-06-23 15:04:33.065350
            BUILD_VERSION: 4.3.5.3_200000162025061317-ee7cf795b6b9ef2b39c02cb21b3d112180937158(Jun 13 2025 17:57:16)
        LAST_OFFLINE_TIME: NULL
    1 row in set
    

    Previous topic

    oceanbase.DBA_OB_SERVER_JOBS
    Last

    Next topic

    oceanbase.DBA_OB_STORAGE_IO_USAGE
    Next
    What is on this page
    Purpose
    Columns
    Sample query