OceanBase logo

OceanBase

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

Product Overview
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

OceanBase

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

Product Overview
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.3

    Download PDF

    OceanBase logo

    The Unified Distributed Database for the AI Era.

    Follow Us
    Products
    OceanBase CloudOceanBase EnterpriseOceanBase Community EditionOceanBase seekdb
    Resources
    DocsBlogLive DemosTraining & CertificationTicket
    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.3
    iconOceanBase Database
    SQL - V 4.3.3
    SQL
    KV
    • V 4.6.0
    • 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

    V$OB_PARAMETERS

    Last Updated:2024-12-02 03:48:27  Updated
    share
    What is on this page
    Purpose
    Columns
    Sample query
    References

    folded

    share

    Note

    This view was introduced in OceanBase Database V4.0.0.

    Purpose

    The V$OB_PARAMETERS view displays the parameters 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.
    ZONE VARCHAR2(128) NO The name of the zone.
    SCOPE VARCHAR2(64) NO The scope of the parameter. Valid values:
  • CLUSTER: indicates a cluster-level parameter.
  • TENANT: indicates a tenant-level parameter.
  • TENANT_ID NUMBER(38) YES The ID of the tenant. Valid values:
  • NULL: indicates that the parameter does not belong to any tenant.
  • Other valid values: indicates the ID of the tenant.
  • NAME VARCHAR2(128) NO The name of the parameter.
    DATA_TYPE VARCHAR2(128) YES The type of the parameter value.

    Note

    The value of this column has been changed from NULL to a specific data type since OceanBase Database V4.3.0.

    VALUE VARCHAR2(65536) NO The value of the parameter.
    INFO VARCHAR2(4096) NO The description of the parameter.
    SECTION VARCHAR2(128) NO The module to which the parameter belongs.
    EDIT_LEVEL VARCHAR2(128) NO The way for the parameter modification to take effect. Valid values:
  • READONLY: The parameter is read-only and cannot be modified.
  • STATIC_EFFECTIVE: The parameter modification takes effect upon a restart.
  • DYNAMIC_EFFECTIVE: The parameter modification takes effect dynamically.
  • DEFAULT_VALUE VARCHAR2(65536) NO The default value of the parameter.

    Note

    • For OceanBase Database V4.3.x, this column was introduced in OceanBase Database V4.3.1.
    • For OceanBase Database V4.2.x, this column was introduced in OceanBase Database V4.2.2.
    ISDEFAULT VARCHAR2(3) NO Indicates whether the current value is the default value. Valid values:
    • NO: The current value is not the default value.
    • YES: The current value is the default value.

    Note

    • For OceanBase Database V4.3.x, this column was introduced in OceanBase Database V4.3.1.
    • For OceanBase Database V4.2.x, this column was introduced in OceanBase Database V4.2.2.

    The following table describes the valid values of the DATA_TYPE column.

    Column value
    Description
    Example (in the NAME=VALUE format)
    BOOL A Boolean value. enable_ddl=True
    INT An integer. log_disk_percentage=1
    DOUBLE A floating-point number. server_cpu_quota_min=1.0
    STRING A string. leak_mod_to_check='NONE'
    STR_LIST A list of strings separated with semicolons (;). config_additional_dir='etc2;etc3'
    TIME A period of time. merger_check_interval='10m'
    MOMENT A point in time. major_freeze_duty_time='02:00'
    CAPACITY A capacity, for example, 3M or 5G. log_disk_size='0M'
    VERSION A version. compatible='4.3.0.0'
    MODE Indicates whether certain features of OBKV are enabled or disabled. _obkv_feature_mode = 'ttl=off, rerouting=on'

    Sample query

    Query the large_query_threshold parameter on all OBServer nodes of the current tenant.

    obclient [SYS]> SELECT * FROM SYS.V$OB_PARAMETERS WHERE NAME LIKE '%large_query_threshold%'\G
    

    The query result is as follows:

    *************************** 1. row ***************************
           SVR_IP: 11.xx.xx.xx
         SVR_PORT: 12615
             ZONE: z1
            SCOPE: CLUSTER
        TENANT_ID: NULL
             NAME: large_query_threshold
        DATA_TYPE: TIME
            VALUE: 5s
             INFO: threshold for execution time beyond which a request may be paused and rescheduled as a \'large request\', 0ms means disable \'large request\'. Range: [0ms, +∞)
          SECTION: TENANT
       EDIT_LEVEL: DYNAMIC_EFFECTIVE
    DEFAULT_VALUE: 5s
        ISDEFAULT: NO
    1 row in set
    

    References

    • GV$OB_PARAMETERS
    • Overview

    Previous topic

    V$OB_OPT_STAT_GATHER_MONITOR
    Last

    Next topic

    V$OB_PL_CACHE_OBJECT
    Next
    What is on this page
    Purpose
    Columns
    Sample query
    References