search
HomeDatabaseOracleExamples of how to create and execute stored procedures in Oracle

Oracle is a very powerful database management system that has many advanced functions and features, of which stored procedures are one of them. A stored procedure is a set of predefined SQL statements for database operations that can be stored in the database for later call use.

In Oracle, stored procedures are written in PL/SQL, a language that combines SQL and programming. PL/SQL has strong data manipulation capabilities and process control capabilities, and can easily write efficient stored procedures.

Benefits of stored procedures

The main benefit of stored procedures is that it can increase the execution efficiency of the database and reduce network communication overhead. Because the stored procedure has been pre-compiled and optimized, there is no need to repeatedly parse and optimize it during execution, and can be directly called for execution. In addition, stored procedures can also implement dynamic operations through parameters, which not only simplifies the code but also avoids risks such as SQL injection.

Creation and execution of stored procedures

The following describes how to create and execute stored procedures in Oracle.

Create a stored procedure

In Oracle, you need to use the CREATE PROCEDURE statement to create a stored procedure. The syntax is as follows:

CREATE [OR REPLACE] PROCEDURE procedure_name
[(parameter_name [IN | OUT | IN OUT] parameter_type [, ...])]
[IS | AS]
BEGIN
      pl/sql_code_block;
END [procedure_name];

Among them:

  • CREATE PROCEDURE: statement that creates a stored procedure.
  • OR REPLACE: Optional parameter. If this parameter is specified, it means that the created stored procedure will be replaced if it already exists.
  • procedure_name: The name of the stored procedure.
  • parameter_name: Optional input and/or output parameters used to specify the input and output of the stored procedure.
  • parameter_type: The type of parameter, which can be a data type such as VARCHAR2, NUMBER, or a cursor type, such as SYS_REFCURSOR.
  • IS | AS: Optional parameter, used to specify the language type of the stored procedure, IS represents the start (PL/SQL block), AS represents the end (PL/SQL block).
  • pl/sql_code_block: PL/SQL code block, which contains the specific logic implementation of the stored procedure.

The following example code demonstrates how to create a simple stored procedure that accepts two parameters and outputs their sum:

CREATE OR REPLACE PROCEDURE add_nums(
    num1 IN NUMBER,
    num2 IN NUMBER,
    sum OUT NUMBER
)
IS
BEGIN
    sum := num1 + num2;
END add_nums;

Execute the stored procedure

In In Oracle, the EXECUTE or EXECUTE IMMEDIATE statement is required to execute a stored procedure. For example, to execute the above sample program, you can use the following statement:

DECLARE
    result NUMBER;
BEGIN
    add_nums(10, 20, result);
    DBMS_OUTPUT.PUT_LINE('The sum is: ' || result);
END;

Here we use the DECLARE statement to declare the variable result that needs to be used, and call the add_nums stored procedure and output the result to the screen.

Parameter type

In a stored procedure, parameters can be input parameters, output parameters or bidirectional parameters.

  • Input parameters: Specify the input of the stored procedure.
  • Output parameters: Specify the output of the stored procedure.
  • Bidirectional parameters: can be input or output.

The method of declaring the parameter type is as follows:

(param_name [IN | OUT | IN OUT] param_type [, ...])

In this declaration, [IN | OUT | IN OUT] is an optional parameter, used to specify the type of the parameter. If the parameter type is not specified, it defaults to the IN type, that is, the input parameter.

Sample code:

CREATE OR REPLACE PROCEDURE my_proc (
    num IN NUMBER,
    str IN OUT VARCHAR2,
    cur OUT SYS_REFCURSOR
)
IS
BEGIN
    -- 逻辑实现
END my_proc;

In the above code, we declare a stored procedure my_proc containing three parameters. The first parameter num is the input parameter, and the second parameter str is bidirectional. Parameters, the third parameter cur is the output parameter.

Record set processing

When using stored procedures to operate data, it is often necessary to return a query result list. Oracle provides two types of recordsets: cursors and PL/SQL tables.

Cursor

A cursor is a data structure that returns a result set, which can traverse query results. Cursors can be explicit or implicit. Explicit cursors require declaring a cursor variable and opening and closing it in code. Implicit cursors are automatically created and managed by Oracle.

Here is a stored procedure that demonstrates how to use a cursor:

CREATE OR REPLACE PROCEDURE get_employee(
    id_list IN VARCHAR2,
    emp_cur OUT SYS_REFCURSOR
)
IS
BEGIN
    OPEN emp_cur FOR 'SELECT * FROM employees WHERE id IN (' || id_list || ')';
END get_employee;

In this example, we declare a stored procedure get_employee with two parameters, which accepts a comma-separated list of employees The ID list is used as an input parameter and a cursor emp_cur containing the selected employee information is returned.

PL/SQL table

PL/SQL table is an array-like data structure that can store a set of values. PL/SQL tables have many practical applications in stored procedures, such as passing a set of data to a stored procedure, etc.

In Oracle, PL/SQL tables can be declared and used in stored procedures, such as the following code:

CREATE OR REPLACE PACKAGE my_package
IS
    TYPE num_list IS TABLE OF NUMBER INDEX BY PLS_INTEGER;

    PROCEDURE sum_nums(nums IN num_list, sum OUT NUMBER);
END my_package;

CREATE OR REPLACE PACKAGE BODY my_package
IS
    PROCEDURE sum_nums(nums IN num_list, sum OUT NUMBER)
    IS
        total NUMBER := 0;
    BEGIN
        FOR indx IN 1 .. nums.COUNT LOOP
            total := total + nums(indx);
        END LOOP;
        sum := total;
    END sum_nums;
END my_package;

Here, we create a package named my_package, which declares A PL/SQL table type named num_list and a stored procedure sum_nums that uses that type. sum_nums accepts an argument of type num_list and calculates their sum.

Conclusion

In Oracle, stored procedures are one of the important tools for maintaining databases. They have efficient execution capabilities and dynamics. We can also use stored procedures to let it execute some business logic instead of just executing a single SQL statement, which can improve reusability and maintainability. Because they can be stored in a database and shared and accessed by multiple applications or processes. There are many benefits to using stored procedures, and it is difficult to cover them all in just a short article, but we believe that as long as you have an in-depth understanding and application, you will benefit a lot in actual work.

The above is the detailed content of Examples of how to create and execute stored procedures in Oracle. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do I use cursors in PL/SQL to process multiple rows of data?How do I use cursors in PL/SQL to process multiple rows of data?Mar 13, 2025 pm 01:16 PM

This article explains PL/SQL cursors for row-by-row data processing. It details cursor declaration, opening, fetching, and closing, comparing implicit, explicit, and ref cursors. Techniques for efficient large dataset handling and using FOR loops

What are the commonly used segments in oracle databasesWhat are the commonly used segments in oracle databasesMar 04, 2025 pm 06:08 PM

This article examines Oracle database segment types (data, index, rollback, temporary), their performance implications, and management. It emphasizes choosing appropriate segment types based on workload and data characteristics for optimal efficienc

What are the performance testing tools for oracle databasesWhat are the performance testing tools for oracle databasesMar 04, 2025 pm 06:11 PM

This article explores Oracle database performance testing tools. It discusses selecting the right tool based on budget, complexity, and features like monitoring, diagnostics, workload simulation, and reporting. The article also details effective bo

What are the oracle database installation client tools?What are the oracle database installation client tools?Mar 04, 2025 pm 06:09 PM

This article explores Oracle Database client tools, essential for interacting with Oracle databases without a full server installation. It details commonly used tools like SQL*Plus, SQL Developer, Enterprise Manager, and RMAN, highlighting their fun

What default tablespaces does the oracle database provide?What default tablespaces does the oracle database provide?Mar 04, 2025 pm 06:10 PM

This article examines Oracle's default tablespaces (SYSTEM, SYSAUX, USERS), their characteristics, identification methods, and performance implications. It argues against relying on defaults, emphasizing the importance of creating separate tablespac

How do I create users and roles in Oracle?How do I create users and roles in Oracle?Mar 17, 2025 pm 06:41 PM

The article explains how to create users and roles in Oracle using SQL commands, and discusses best practices for managing user permissions, including using roles, following the principle of least privilege, and regular audits.

How to download oracle databaseHow to download oracle databaseMar 04, 2025 pm 06:07 PM

This article guides users through downloading Oracle Database. It details the process, emphasizing edition selection (Express, Standard, Enterprise), platform compatibility, and license agreement acceptance. System requirements and edition suitabil

How do I use Oracle Data Masking and Subsetting to protect sensitive data?How do I use Oracle Data Masking and Subsetting to protect sensitive data?Mar 13, 2025 pm 01:19 PM

This article details Oracle Data Masking and Subsetting (DMS), a solution for protecting sensitive data. It covers identifying sensitive data, defining masking rules (shuffling, substitution, randomization), setting up jobs, monitoring, and deployme

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version