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.4.2

    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.4.2
    iconOceanBase Database
    SQL - V 4.4.2
    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

    GV$SQL_JOIN_FILTER

    Last Updated:2026-04-14 12:43:57  Updated
    share
    What is on this page
    Purpose
    Columns
    Sample query

    folded

    share

    Note

    This view is introduced since OceanBase Database V4.2.0.

    Purpose

    This view displays the real-time execution information about join filters on all OBServer nodes in the current tenant.

    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.
    QC_SESSION_ID NUMBER NO The query coordinator (QC) session ID of the given cursor for a parallel query.
    For V4.3.x:
    • Before V4.3.5 BP2:
      In all connection modes (direct mode/ODP mode), this field indicates the server session ID.
    • V4.3.5 BP2 and later versions:
      • In direct mode:
        This field indicates the server session ID.
      • In ODP mode:
        • When the ODP parameter client_session_id_version = 2 is set, this field indicates the client session ID.
        • When client_session_id_version = 1, this field indicates the server session ID.
    QC_INSTANCE_ID NUMBER NO The QC instance ID of the given cursor for the parallel query.
    SQL_PLAN_HASH_VALUE NUMBER NO The hash value of the SQL plan of the cursor for the given parallel query.
    FILTER_ID NUMBER NO The ID of the connection filter in the given cursor. This ID corresponds to the filter ID in the execution plan.
    BITS_SET NUMBER NO The size of the bitmap for the Bloom filter. In the current version of OceanBase Database, this column is used only for compatibility.
    FILTERED NUMBER NO The number of rows processed by the connection filter.
    PROBED NUMBER NO The number of rows in the right-side table that have been tested by using the bitmap filter. Here, the value is the sum of filtered and unfiltered rows.
    ACTIVE NUMBER NO Indicates whether the filter is active.
    CON_ID NUMBER NO The ID of the data container.
    TRACE_ID CHAR(64) NO The trace ID of the SQL statement.

    Sample query

    Query execution-related information about join filters in the current user tenant.

    obclient [SYS]> SELECT * FROM SYS.GV$SQL_JOIN_FILTER;
    

    The query result is as follows:

    +----------------+----------+---------------+----------------+---------------------+-----------+----------+----------+--------+--------+--------+------------------------------------------------------------------+
    | SVR_IP         | SVR_PORT | QC_SESSION_ID | QC_INSTANCE_ID | SQL_PLAN_HASH_VALUE | FILTER_ID | BITS_SET | FILTERED | PROBED | ACTIVE | CON_ID | TRACE_ID                                                         |
    +----------------+----------+---------------+----------------+---------------------+-----------+----------+----------+--------+--------+--------+------------------------------------------------------------------+
    | 11.xxx.xxx.xxx |    28825 |          NULL |           NULL |                NULL |         0 |     NULL |        0 |      0 |   NULL |   1004 | y70***************************-0-0                               |
    | 11.xxx.xxx.xxx |    28825 |          NULL |           NULL |                NULL |         0 |     NULL |        0 |   2509 |   NULL |   1004 | y70***************************-0-0                               |
    | 11.xxx.xxx.xxx |    28825 |          NULL |           NULL |                NULL |         0 |     NULL |        0 |      0 |   NULL |   1004 | y70***************************-0-0                               |
    | 11.xxx.xxx.xxx |    28825 |          NULL |           NULL |                NULL |         0 |     NULL |        0 |   2530 |   NULL |   1004 | y70***************************-0-0                               |
    | 11.xxx.xxx.xxx |    28825 |          NULL |           NULL |                NULL |         0 |     NULL |        0 |      0 |   NULL |   1004 | y70***************************-0-0                               |
    | 11.xxx.xxx.xxx |    28825 |          NULL |           NULL |                NULL |         0 |     NULL |        0 |   2504 |   NULL |   1004 | y70***************************-0-0                               |
    | 11.xxx.xxx.xxx |    28825 |          NULL |           NULL |                NULL |         0 |     NULL |        0 |      0 |   NULL |   1004 | y70***************************-0-0                               |
    | 11.xxx.xxx.xxx |    28825 |          NULL |           NULL |                NULL |         0 |     NULL |        0 |   2457 |   NULL |   1004 | y70***************************-0-0                               |
    +----------------+----------+---------------+----------------+---------------------+-----------+----------+----------+--------+--------+--------+------------------------------------------------------------------+
    8 rows in set
    

    Previous topic

    GV$OB_SQL_CCL_STATUS
    Last

    Next topic

    GV$OB_SQL_PLAN
    Next
    What is on this page
    Purpose
    Columns
    Sample query