Created
December 17, 2019 16:01
-
-
Save TwitchBronBron/974e8c87bda72266677ac3dc63410e76 to your computer and use it in GitHub Desktop.
How to execute a stored procedure in sqldeveloper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exec dbms_output.enable(10000); | |
SET SERVEROUTPUT ON; | |
var myCursor REFCURSOR; | |
begin | |
--Schema.Package.Procedure(Parameters); | |
SCHEMA_NAME.PACKAGE_NAME.PROCEDURE_NAME(10,'',:myCursor ); | |
END; | |
/ | |
print myCursor; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment