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

    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.2.0
    iconOceanBase Database
    SQL - V 4.2.0
    Databases
    • OceanBase Database
    • OceanBase Cloud
    • OceanBase Tugraph
    • Interactive Tutorials
    • OceanBase Best Practices
    Tools
    • OceanBase Cloud Platform
    • OceanBase Migration Service
    • OceanBase Developer Center
    • OceanBase Migration Assessment
    • OceanBase Admin Tool
    • OceanBase Loader and Dumper
    • OceanBase Deployer
    • Kubernetes operator for OceanBase
    • OceanBase Diagnostic Tool
    • OceanBase Binlog Service
    Connectors and Middleware
    • OceanBase Database Proxy
    • Embedded SQL in C for OceanBase
    • OceanBase Call Interface
    • OceanBase Connector/C
    • OceanBase Connector/J
    • OceanBase Connector/ODBC
    • OceanBase Connector/NET
    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_PLAN_CACHE_PLAN_STAT

    Last Updated:2023-12-08 07:13:36  Updated
    Share
    What is on this page
    Purpose
    Related tables/views
    Columns

    folded

    Share

    Purpose

    The V$OB_PLAN_CACHE_PLAN_STAT view displays the status of each object cached by the current tenant in the plan cache on the current OBServer node.

    Note

    This view is introduced since OceanBase Database V4.0.0.

    Related tables/views

    GV$OB_PLAN_CACHE_PLAN_STAT

    Columns

    Column
    Type
    Nullable?
    Description
    TENANT_ID bigint(20) NO The ID of the tenant.
    SVR_IP varchar(46) NO The IP address of the server.
    SVR_PORT bigint(20) NO The port number of the server.
    PLAN_ID bigint(20) NO The ID of the cached object.
    SQL_ID varchar(32) NO The SQL ID corresponding to the cached object. If it is a PL object, this column is NULL.
    TYPE bigint(20) NO For SQL plan caching, this column indicates the type of the plan. Valid values:
  • 1: local plan
  • 2: remote plan
  • 3: distributed plan
    For PL object caching, this column indicates the type of the PL object. Valid values:
  • 1: procedure
  • 2: function
  • 3: package
  • 4: anonymous block
  • IS_BIND_SENSITIVE bigint(20) NO Indicates whether Adaptive Cursor Sharing (ACS) needs to be enabled for the plan.
    IS_BIND_AWARE bigint(20) NO Indicates that ACS is enabled for the plan.
    DB_ID bigint(20) unsigned NO The ID of the database.
    STATEMENT longtext NO If the cached object is an SQL plan, the column value is a parameterized SQL statement. If the cached object is an anonymous block, the column value is a parameterized anonymous block statement. This column is invalid for other types of objects.
    QUERY_SQL longtext NO If the cached object is an SQL plan, the column value is the original SQL statement queried when the plan was loaded for the first time. If the cached object is an anonymous block, the column value is a parameterized anonymous block statement.
    SPECIAL_PARAMS varchar(4096) NO The values of parameters that cannot be parameterized.
    PARAM_INFOS longtext NO The parameter information.
    SYS_VARS varchar(4096) NO The value of the system variable that affects the plan.
    CONFIGS varchar(4096) NO The parameters that affect the execution plan.
    PLAN_HASH bigint(20) unsigned NO The hash value of the SQL plan.
    FIRST_LOAD_TIME timestamp(6) NO The time when the plan was loaded for the first time.
    SCHEMA_VERSION bigint(20) NO The version of the schema.
    MERGED_VERSION bigint(20) NO The compaction version corresponding to the current cached plan.
    LAST_ACTIVE_TIME timestamp(6) NO The time of the last execution.
    AVG_EXE_USEC bigint(20) NO The average execution duration.
    SLOWEST_EXE_TIME timestamp(6) NO The timestamp of the slowest execution.
    SLOWEST_EXE_USEC bigint(20) NO The time consumed by the slowest execution.
    SLOW_COUNT bigint(20) NO The number of times that the current SQL plan was identified as a slow query.
    HIT_COUNT bigint(20) NO The number of hits.
    PLAN_SIZE bigint(20) NO The size of memory occupied by cached objects.
    EXECUTIONS bigint(20) NO The number of executions.
    DISK_READS bigint(20) NO The total number of physical reads of all executions.
    DIRECT_WRITES bigint(20) NO The total number of physical writes of all executions.
    BUFFER_GETS bigint(20) NO The total number of logical reads of all executions.
    APPLICATION_WAIT_TIME bigint(20) unsigned NO The total amount of time spent on waiting for events of the application class.
    CONCURRENCY_WAIT_TIME bigint(20) unsigned NO The total amount of time spent on waiting for events of the concurrency class.
    USER_IO_WAIT_TIME bigint(20) unsigned NO The total amount of time spent on waiting for events of the user_io class.
    ROWS_PROCESSED bigint(20) NO The total amount of time spent on events of the schedule class.
    ELAPSED_TIME bigint(20) unsigned NO The amount of time elapsed from when the request was received to when the execution of the request ended.
    CPU_TIME bigint(20) unsigned NO The total amount of CPU time used by all executions.
    LARGE_QUERYS bigint(20) NO The number of times the cached object was considered a large query.
    DELAYED_LARGE_QUERYS bigint(20) NO The number of times the cached object was considered a large query and dropped to the large query queue.
    DELAYED_PX_QUERYS bigint(20) NO The number of times a subquery in a parallel query was dropped back into the queue for retry.
    OUTLINE_VERSION bigint(20) NO The version of the outline.
    OUTLINE_ID bigint(20) NO The ID of the outline. The value "-1" indicates that the plan is not generated based on a bound outline.
    OUTLINE_DATA longtext NO The information about the outline corresponding to the plan.
    ACS_SEL_INFO longtext NO The range of selectivity for the current ACS plan.
    TABLE_SCAN tinyint(4) NO Indicates whether the query is a primary key scan.
    EVOLUTION tinyint(4) NO Indicates whether the execution plan is evolving.
    EVO_EXECUTIONS bigint(20) NO The number of evolutions.
    EVO_CPU_TIME bigint(20) unsigned NO The total amount of CPU time for executions during the evolution.
    TIMEOUT_COUNT bigint(20) NO The number of timeouts.
    PS_STMT_ID bigint(20) NO The ID of the prepared statement corresponding to the request.
  • -1: indicates that the prepared statement (PS) protocol is not used in the SQL statement.
  • Value other than -1: indicates that the PS protocol is used in the SQL statement. It also indicates the unique identifier returned by the PS protocol for the statement.
  • SESSID bigint(20) unsigned NO The ID of the session containing the cached object.
    TEMP_TABLES longtext NO The name of the temporary table in the SQL plan. This column is left empty if no temporary table exists.
    IS_USE_JIT tinyint(4) NO Indicates whether just-in-time (JIT) compilation is enabled for the SQL plan.
    OBJECT_TYPE longtext NO The type of the cached object. Valid values:
  • SQL_PLAN
  • PROCEDURE
  • FUNCTION
  • PACKAGE
  • ANONYMOUS
  • HINTS_INFO longtext NO The hints of the SQL plan.
    HINTS_ALL_WORKED tinyint(4) NO Indicates whether all the hints in the SQL plan have taken effect.
    PL_SCHEMA_ID bigint(20) unsigned NO This column is the schema ID of the cached object for PL objects other than anonymous blocks. It is identical to PS_STMT_ID for anonymous blocks and meaningless for SQL plans.
    IS_BATCHED_MULTI_STMT tinyint(4) NO Indicates whether the plan has been optimized for batch execution of multiple statements.
    RULE_NAME VARCHAR2(256) NO The name of the rule.

    Notice

    This table caches not only SQL plan objects, but also PL objects, such as anonymous blocks, PL packages, and PL functions. Some columns are valid only for specific objects.

    Previous topic

    V$OB_PLAN_CACHE_STAT
    Last

    Next topic

    V$OB_PLAN_CACHE_PLAN_EXPLAIN
    Next
    What is on this page
    Purpose
    Related tables/views
    Columns