![]() |
Help with Orcal Stored Procedure
I wrote this Procedure and I couldn't figers what is the problem
can any one help me please:wacky: CREATE OR REPLACE PROCEDURE SelectProc IS DECLARE ID PRODUCT.Emp_NO%TYPE; Name PRODUCT.Full_Name%TYPE; BEGIN select Emp_NO,Full_Name into ID,Name from empTest; END SelectProc; |
Re: Help with Orcal Stored Procedure
Nor we can figure out unless you try to explain what you are trying to do.
|
Re: Help with Orcal Stored Procedure
hi, you cannot have DECLARE in your create procedure statement. Also it's not a good idea to use ID, NAME for variables because they are oracle reserved keywords. Here's the corrected code, it will work
Code:
CREATE OR REPLACE PROCEDURE selectproc |
| All times are GMT +5.5. The time now is 12:39. |