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.2.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.2.5
    iconOceanBase Database
    SQL - V 4.2.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_SCHEDULER_JOBS

    Last Updated:2026-04-27 03:14:13  Updated
    share
    What is on this page
    Purpose
    Columns

    folded

    share

    Purpose

    The oceanbase.DBA_SCHEDULER_JOBS view displays all scheduler jobs in the database.

    Note

    This view is introduced since OceanBase Database V4.0.0.

    Columns

    Column Type Nullable? Description
    OWNER varchar(128) NO The owner of the scheduler job.
    JOB_NAME varchar(128) NO The name of the scheduler job.
    JOB_SUBNAME varchar(128) NO The subname of the scheduler job.
    JOB_STYLE varchar(17) YES The style of the scheduler job. Valid values:
    • REGULAR: The job is executed at the specified point in time.
    • LIGHTWEIGHT: The job is executed within the specified interval.
    JOB_CREATOR varchar(128) NO The creator of the scheduler job.
    CLIENT_ID varchar(65) NO The client ID of the user that created the job.
    GLOBAL_UID varchar(33) NO The global user identifier (UID) of the user that created the job.
    PROGRAM_OWNER text NO The owner of the program associated with the job.
    PROGRAM_NAME text YES The name of the program associated with the job.
    JOB_TYPE varchar(16) YES The type of the job. Valid values:
    • PLSQL_BLOCK
    • STORED_PROCEDURE
    • EXECUTABLE
    • CHAIN
    JOB_ACTION text YES The inline job action.
    NUMBER_OF_ARGUMENTS bigint(20) YES The inline number of job arguments.
    SCHEDULE_OWNER text NO The owner of the schedule used by the job.
    SCHEDULE_NAME text NO The name of the schedule used by the job.
    SCHEDULE_TYPE varchar(12) NO The type of the schedule used by the job. Valid values:
    • IMMEDIATE: The start date and repeat interval are both NULL.
    • ONCE: The repeat interval is NULL.
    • PLSQL: The schedule is a PL/SQL expression.
    • CALENDAR: The schedule is a calendar expression.
    • EVENT: an event schedule.
    • NAMED: a named schedule.
    • WINDOW: The schedule is a time window.
    • WINDOW_GROUP: The schedule is a window group.
    START_DATE datetime(6) YES The original scheduled start date of the job.
    REPEAT_INTERVAL text YES An inline schedule PL/SQL expression or calendar string.
    EVENT_QUEUE_OWNER varchar(128) NO The owner of the source queue into which the event is to be raised.
    EVENT_QUEUE_NAME varchar(128) NO The name of the source queue into which the event is to be raised.
    EVENT_QUEUE_AGENT text NO The name of the AQ agent used by the user on the event source queue.
    EVENT_CONDITION text NO The rule for subscribing to the event on the source queue.
    EVENT_RULE varchar(261) NO The name of the rule used by the coordinator to trigger the event-based job.
    FILE_WATCHER_OWNER varchar(261) NO The owner of the file watcher on which this job is based.
    FILE_WATCHER_NAME varchar(261) NO The name of the file watcher on which this job is based.
    END_DATE datetime(6) YES The end date of the job.
    JOB_CLASS varchar(128) YES The name of the job class associated with the job.
    ENABLED varchar(5) YES Indicates whether the job is enabled. Valid values:
    • TRUE
    • FALSE
    AUTO_DROP varchar(5) YES Indicates whether the job is deleted after it is completed. Valid values:
    • TRUE
    • FALSE
    RESTART_ON_RECOVERY varchar(5) NO Indicates whether the job is restarted upon a cluster restart. Valid values:
    • TRUE
    • FALSE
    RESTART_ON_FAILURE varchar(5) NO Indicates whether the job is restarted upon an execution failure. Valid values
    • TRUE
    • FALSE
    STATE varchar(15) YES The current state of the job. Valid values:
  • DISABLED
  • RETRY SCHEDULED
  • SCHEDULED
  • BLOCKED
  • RUNNING
  • COMPLETED
  • BROKEN
  • FAILED
  • REMOTE
  • RESOURCE_UNAVAILABLE
  • SUCCEEDED
  • CHAIN_STALLED
  • JOB_PRIORITY bigint(0) NO The priority of the job relative to other jobs in the same class.
    RUN_COUNT bigint(20) YES The number of times that the job has run.
    MAX_RUNS bigint(0) NO The maximum number of times that the job is scheduled to run.
    FAILURE_COUNT bigint(20) YES The number of times that the job has failed to run.
    MAX_FAILURES bigint(0) NO The number of times that the job is allowed to fail before being marked broken.
    RETRY_COUNT bigint(20) YES The number of retries of the job.
    LAST_START_DATE datetime(6) YES The last date when the job started running.
    LAST_RUN_DURATION bigint(20) YES The amount of time that the job took to complete during the last run.
    NEXT_RUN_DATE datetime(6) NO The next date on which the job is scheduled to run.
    SCHEDULE_LIMIT bigint(0) NO The time after which a job that has not run yet will be rescheduled.
    MAX_RUN_DURATION bigint(20) YES The maximum duration that the job is allowed to run.
    LOGGING_LEVEL varchar(11) NO The level of logging for the job. Valid values:
    • OFF
    • RUNS
    • FAILED RUNS
    • FULL
    STORE_OUTPUT varchar(5) NO Indicates whether the output for the job is stored in the database. Valid values:
    • TRUE
    • FALSE
    STOP_ON_WINDOW_CLOSE varchar(5) NO Indicates whether the job stops if a window associated with the job is closed. Valid values:
    • TRUE
    • FALSE
    INSTANCE_STICKINESS varchar(5) NO Indicates whether the job is sticky. Valid values:
    • TRUE
    • FALSE
    RAISE_EVENTS text NO The list of job events to raise for the job. Valid values:
    • JOB_STARTED
    • JOB_SUCCEEDED
    • JOB_FAILED
    • JOB_BROKEN
    • JOB_COMPLETED
    • JOB_STOPPED
    • JOB_SCH_LIM_REACHED
    • JOB_DISABLED
    • JOB_CHAIN_STALLED
    • JOB_OVER_MAX_DUR
    SYSTEM varchar(5) NO Indicates whether the job is a system job. Valid values:
    • TRUE
    • FALSE
    JOB_WEIGHT bigint(0) NO The weight of the job, which indicates the scheduling priority of the job.
    NLS_ENV text YES The National Language Support (NLS) environment of the job.
    SOURCE varchar(128) NO The source code or script of the job.
    NUMBER_OF_DESTINATIONS bigint(0) NO The number of destinations associated with this job.
    DESTINATION_OWNER varchar(261) NO The owner of the destination object.
    DESTINATION varchar(261) NO The destination that this job will run on.
    CREDENTIAL_OWNER varchar(128) NO The owner of the credential to be used for an external job.
    CREDENTIAL_NAME varchar(128) NO The name of the credential to be used for an external job.
    INSTANCE_ID BIGINT(21) YES The instance on which the user requests the job to run.
    DEFERRED_DROP varchar(5) NO Indicates whether the job is dropped when completed due to user request.
    ALLOW_RUNS_IN_RESTRICTED_MODE varchar(5) NO Indicates whether the job is allowed to run in restricted mode.
    COMMENTS text YES The comments on the job.
    FLAGS bigint(20) NO The flag bit of the job.
    RESTARTABLE varchar(5) NO Indicates whether the job can be restarted.
    CONNECT_CREDENTIAL_OWNER varchar(128) NO The owner of the connection credentials.
    CONNECT_CREDENTIAL_NAME varchar(128) NO The name of the connection credentials.

    Previous topic

    oceanbase.DBA_TAB_STATS_HISTORY
    Last

    Next topic

    oceanbase.DBA_IND_STATISTICS
    Next
    What is on this page
    Purpose
    Columns