I have typed a procedure using the web interface of the Oracle 10g. Compile the code and no error at all. For executing this procedure I should use the command EXECUTE name, but when I put that into a SQL window it does not work at all and says that is an invalid SQL command. The question that I have is how I can execute that procedure? I can access it by the Object Browser, but nothing more.
Thanks
I have typed a procedure using the web interface of the Oracle 10g. Compile
Share
In order to execute your procedure enclose it with
beginendblock.Executecommand is sql*plus’s command. To that end to execute your procedure you might write:and in sql*plus you would use
execorexecute(which implicitly encloses your procedure withbeginendblock):