About 1,290,000 results
Open links in new tab
  1. Procedure call inside a PL/SQL block - Stack Overflow

    Mar 8, 2013 · A procedure call is not plain SQL, it's PL/SQL. As such, you need to run it from PL/SQL context. Options include: Create a PL/SQL block and invoke the procedure directly: …

  2. calling stored procedure from anonymous block - Stack Overflow

    Jun 1, 2014 · And this is anonymous block call: in_id number; . my_cursor sys_refcursor; current_record my_test_table%ROWTYPE; in_id := 1; test_package.test_procedure(in_id, …

  3. sql - Call a stored procedure with another in Oracle - Stack Overflow

    Mar 6, 2014 · Your stored procedures work as coded. The problem is with the last line, it is unable to invoke either of your stored procedures. Three choices in SQL*Plus are: call, exec, and an …

  4. PL/SQL anonymous Block with procedure and function inside

    declare -- ret boolean; -- procedure show_me_prc (i_msg varchar2) is -- -- begin dbms_output.put_line('by_procedure:'||i_msg); exception when others then …

  5. Using Procedures and Packages - Oracle

    To run a procedure within a PL/SQL block in an application, simply call the procedure. The following line within a PL/SQL block calls the Fire_emp procedure: Fire_emp1(:Empnun); In …

  6. PL/SQL Procedures - Oracle Tutorial

    Technically speaking, a PL/SQL procedure is a named block stored as a schema object in the Oracle Database. The following illustrates the basic syntax of creating a procedure in PL/SQL: …

  7. Blocks in PL/SQL - GeeksforGeeks

    Apr 15, 2023 · PL/SQL blocks can include variables, SQL statements, loops, constants, conditional statements and exception handling. Blocks can also build a function or a procedure …

  8. 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 …

  9. Declare and use a PROCEDURE IN PL-SQL block - Stack Overflow

    Jul 21, 2015 · Can I declare and then call above procedure in a pl-sql block. When I try to run this I get several errors... Encountered the symbol "LS_CSA_TYPE" when expecting one of the …

  10. Procedures in PL/SQL - GeeksforGeeks

    Aug 8, 2024 · Procedures in PL/SQL. A PL/SQL procedure is a reusable block of code that contains a specific set of actions or logic. The procedure contains two parts: 1. Procedure …

  11. Some results have been removed
Refresh