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.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 & 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.2
    iconOceanBase Database
    SQL - V 4.2.2
    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

    DBA_TRIGGERS

    Last Updated:2026-04-15 08:27:15  Updated
    Share
    What is on this page
    Purpose
    Related views
    Columns

    folded

    Share

    Purpose

    The DBA_TRIGGERS view displays all triggers in the database.

    Applicability

    This topic applies only to OceanBase Database Enterprise Edition. OceanBase Database Community Edition provides only the MySQL mode.

    Related views

    • ALL_TRIGGERS

    • USER_TRIGGERS

    Columns

    Column
    Type
    Nullable?
    Description
    OWNER VARCHAR2(128) NO The owner of the trigger.
    TRIGGER_NAME VARCHAR2(128) NO The name of the trigger.
    TRIGGER_TYPE VARCHAR2(16) NO The type of the trigger. Valid values:
    • BEFORE/AFTER
    • ROW/STMT
    TRIGGERING_EVENT VARCHAR2(246) NO The event that fires the trigger. At present, OceanBase Database supports only INSERT, UPDATE, and DELETE events.
    TABLE_OWNER VARCHAR2(128) NO The owner of the table. This column takes effect when the object on which the trigger is defined is a table.
    BASE_OBJECT_TYPE VARCHAR2(18) NO The type of the object on which the trigger is defined. At present, OceanBase Database supports only the TABLE type.
    TABLE_NAME VARCHAR2(256) NO The name of the table. This column takes effect when the object on which the trigger is defined is a table.
    COLUMN_NAME VARCHAR2(4000) YES The name of the column. This column takes effect only when the object on which the trigger is defined is a nested table; otherwise, the value is NULL.
    REFERENCING_NAMES VARCHAR2(422) NO The name used for referencing OLD and NEW column values.
    WHEN_CLAUSE VARCHAR2(4000) YES The trigger condition.
    STATUS VARCHAR2(8) NO The status of the trigger. Valid values:
    • ENABLE
    • DISABLE
    DESCRIPTION VARCHAR2(65536) NO The trigger description, including the name, type, and event information. At present, OceanBase Database contains more information than Oracle.
    ACTION_TYPE VARCHAR2(11) NO The action type. At present, OceanBase Database supports only actions in PL/SQL.
    TRIGGER_BODY VARCHAR2(65536) NO The statement that is executed when the trigger fires. At present, OceanBase Database contains more information than Oracle.
    CROSSEDITION VARCHAR2(7) NO The cross-edition information, which is not supported in OceanBase Database at present.
    BEFORE_STATEMENT VARCHAR2(3) NO Indicates whether the composite trigger contains a BEFORE_STATEMENT section. Valid values: YES and NO.
    BEFORE_ROW VARCHAR2(3) NO Indicates whether the composite trigger contains a BEFORE_ROW section. Valid values: YES and NO.
    AFTER_ROW VARCHAR2(3) NO Indicates whether the composite trigger contains an AFTER_ROW section. Valid values: YES and NO.
    AFTER_STATEMENT VARCHAR2(3) NO Indicates whether the composite trigger contains a AFTER_STATEMENT section. Valid values: YES and NO.
    INSTEAD_OF_ROW VARCHAR2(3) NO Indicates whether the composite trigger contains an INSTEAD_OF_ROW section. Valid values: YES and NO.
    FIRE_ONCE VARCHAR2(3) NO This column is not supported at present.
    APPLY_SERVER_ONLY VARCHAR2(3) NO This column is not supported at present.

    Previous topic

    DBA_TAB_SUBPARTITIONS
    Last

    Next topic

    DBA_TYPES
    Next
    What is on this page
    Purpose
    Related views
    Columns