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 & 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.0
    iconOceanBase Database
    SQL - V 4.2.0
    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

    ALL_ARGUMENTS

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

    folded

    share

    Purpose

    The ALL_ARGUMENTS view displays the arguments of the functions and procedures accessible to the current user.

    Applicability

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

    Related views

    • DBA_ARGUMENTS

    • USER_ARGUMENTS

    Columns

    Column Type Nullable? Description
    OWNER VARCHAR2(128) NO The owner of the object.
    OBJECT_NAME VARCHAR2(128) YES The name of the procedure or function.
    PACKAGE_NAME VARCHAR2(128) YES The name of the package.
    OBJECT_ID NUMBER NO The object ID.
    OVERLOAD NUMBER YES The nth overloading in the package source file.
    SUBPROGRAM_ID NUMBER YES The sequence of appearance in the package. For an independent procedure or function, the value is 1.
    ARGUMENT_NAME VARCHAR2(128) YES The name of the argument. A null value indicates a function return.
    POSITION NUMBER(38) NO The position in the argument list.
    SEQUENCE NUMBER(38) NO The sequence order of the attribute for composite types.
    DATA_LEVEL NUMBER(38) NO The nesting depth of the argument for composite types.
    DATA_TYPE VARCHAR2(128) YES The data type of the argument. For composite types, the value of this column indicates the data type of the current layer.
    DEFAULTED CHAR(2) YES Indicates whether the argument has a default value.
    DATA_LENGTH NUMBER(38) YES The length of the data type.
    IN_OUT VARCHAR2(5) YES The direction of the argument. A null value indicates a return value. Valid values:
  • IN
  • OUT
  • IN OUT
  • DATA_PRECISION NUMBER(38) YES The maximum length of a numeric value.
    DATA_SCALE NUMBER(38) YES The number of digits on the right of the decimal point in a number.
    CHARACTER_SET_NAME VARCHAR2(7) YES The name of the character set for the argument.
    COLLATION VARCHAR2(18) YES The collation of the character set.
    TYPE_OWNER NUMBER(38) YES The owner of the composite type.
    TYPE_NAME VARCHAR2(128) YES The name of the composite type.
    TYPE_SUBNAME VARCHAR2(128) YES The name of the package if the type is a package local type.
    ORIGIN_CON_ID NUMBER(38) YES At present, this column indicates the tenant ID.

    Previous topic

    ALL_ALL_TABLES
    Last

    Next topic

    ALL_COL_COMMENTS
    Next
    What is on this page
    Purpose
    Related views
    Columns