About 469,000 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. Procedures in PL/SQL - GeeksforGeeks

    Aug 5, 2025 · Procedures have two parts the specification (spec) and the body. The spec begins with the PROCEDURE keyword and ends with the procedure name and optional parameter list.

  3. PL/SQL - Procedures - Online Tutorials Library

    Procedures − These subprograms do not return a value directly; mainly used to perform an action. This chapter is going to cover important aspects of a PL/SQL procedure.

  4. PL/SQL Procedure

    A PL/SQL procedure is a named block that performs one or more actions. PL/SQL procedure allows you to wrap complex business logic and reuse it in both database layer and application …

  5. 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.

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

    Jun 28, 2024 · A Procedure in PL/SQL is a subprogram unit that consists of a group of PL/SQL statements that can be called by name. Each procedure in PL/SQL has its own unique name …

  7. PL/SQL Procedures: Syntax, Examples & Comparison Guide

    Learn PL/SQL Procedures with syntax, examples, and use cases. Compare with anonymous blocks. Ideal for interviews and Oracle learners.

  8. PL/SQL Procedure - Oracle PL/SQL Tutorial

    A procedure is a named PL/SQL block which is stored in the database and can be invoked by name. An Oracle PL/SQL procedure has a header and a body. The header consists of the …

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

    Jul 23, 2025 · In PL/SQL, stored procedures are powerful tools for encapsulating logic and executing complex queries. This article will guide you through the process of creating a simple …

  10. Procedure in PL/SQL | Best Explanation - DEV Community

    Oct 24, 2024 · Procedural in PL/SQL (Procedural Language/Structured Query Language) is a named block of code that performs a specific task. Procedures are stored in the database and …