Skip to content

Instantly share code, notes, and snippets.

@RashidJorvee
Last active June 12, 2019 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RashidJorvee/778f92d4d1b0dc4606bf30a2761837d5 to your computer and use it in GitHub Desktop.
Save RashidJorvee/778f92d4d1b0dc4606bf30a2761837d5 to your computer and use it in GitHub Desktop.
Create a simple procedure in Oracle
BEGIN
procedureName;
END;
CREATE OR REPLACE PROCEDURE procedureName
IS
BEGIN
DBMS_OUTPUT.PUT_LINE('You have successfully executed the procedure!');
END;
@RashidJorvee
Copy link
Author

create-and-execute-procedure-in-oracle-application-express-edition-rashidjorvee

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment