Stored Procedures & Oracle

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • tuandelia
    New Member
    • May 2007
    • 1

    Stored Procedures & Oracle

    hello-

    Can I created stored procedures in Oracle and then call them?
  • MMcCarthy
    Recognized Expert MVP
    • Aug 2006
    • 14387

    #2
    You have posted this in the articles sections rather than the forum. I am moving it over to the Oracle forum.

    ADMIN

    Comment

    • debasisdas
      Recognized Expert Expert
      • Dec 2006
      • 8119

      #3
      This is the basic syntax to create a procedure in oracle.

      Code:
      CREATE [OR REPLACE] PROCEDURE PROCEDURENAME([PARAMETER PARAMETER MODE DATATYPE [,PARAMETER...,....]])
      {IS/AS}
      [LOCAL DECLARATION];
      BEGIN
      EXECUTABLE STATMENT;
      [EXCEPTION
      EXCEPTION HANDLER]
      END [PROCEDURENAME];
      Hope that helps u out.

      Comment

      Working...