About 55,100 results
Open links in new tab
  1. PL/SQL Procedures - Oracle Tutorial

    This tutorial shows you step by step how to create, compile, and execute a PL/SQL procedure from Oracle SQL Developer tool.

  2. 14.11 CREATE PROCEDURE Statement - Oracle Help Center

    The CREATE PROCEDURE statement creates or replaces a standalone procedure or a call specification. A standalone procedure is a procedure (a subprogram that performs a specific action) that is stored in the database.

  3. CREATE PROCEDURE - Oracle Help Center

    Use the CREATE PROCEDURE statement to create a standalone stored procedure or a call specification. A procedure is a group of PL/SQL statements that you can call by name. A call specification (sometimes called call spec) declares a Java method or a third-generation language (3GL) routine so that it can be called from SQL and PL/SQL.

  4. Oracle PL/SQL Stored Procedure & Functions with Examples

    Jun 28, 2024 · In this tutorial, you are going to see the detailed description on how to create and execute the named blocks (procedures and functions). Procedures and Functions are the subprograms which can be created and saved in the database as database objects.

  5. PL/SQL Procedure - PL/SQL Tutorial

    We will show you how to create a PL/SQL procedure and how to call it. Introduction to PL/SQL Procedure. Like a PL/SQL function, a PL/SQL procedure is a named block that does a specific task. PL/SQL procedure allows you to encapsulate complex business logic and reuse it in both database layer and application layer. The following illustrates the ...

  6. Oracle / PLSQL: Procedures - TechOnTheNet

    The syntax to create a procedure in Oracle is: CREATE [OR REPLACE] PROCEDURE procedure_name [ (parameter [,parameter]) ] IS [declaration_section] BEGIN executable_section [EXCEPTION exception_section] END [procedure_name];

  7. How to Write a Simple SELECT Stored Procedure in PL/SQL?

    Oct 23, 2024 · In PL/SQL, we can create a stored procedure to handle this task efficiently. By using a stored procedure, we can encapsulate the query logic and reuse it whenever needed. Below are the methods which help us to CREATE PROCEDURE or CREATE FUNCTION statements are as follows:

  8. CREATE PROCEDURE - docs.oracle.com

    Use the CREATE PROCEDURE statement to create a standalone stored procedure or a call specification. A procedure is a group of PL/SQL statements that you can call by name. A call specification (sometimes called call spec) declares a Java method or a third-generation language (3GL) routine so that it can be called from SQL and PL/SQL.

  9. PROCEDURE in Oracle - W3schools

    Syntax: To create or replace a procedure. Syntax: To drop a procedure. Example: Creating a procedure. Procedure Code: Output: Procedure created. Call Procedure Code: Output: The ‘students’ is an already existing table. We first created a procedure for the insertion of new data in the ‘students’ table.

  10. Creating Procedures Functions and Packages in Oracle PL/SQL

    Sep 6, 2022 · In this tutorial, you will see a detailed description of how to create and execute the named blocks (procedures and functions and packages). What is a Procedure? A Procedure in PL/SQL is a named subprogram unit that consists of a group of PL/SQL statements. There are two types of PL/SQL blocks: anonymous and named.

  11. Some results have been removed