Click here to Skip to main content
15,889,462 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have created procedure

SQL
create procedure p1 as
begin
dbms_output.put_line('heloo');
end;


procedure is successfully created

but when i execute it using following command;

execute p1;

then i got this erro:
ORA-00900: invalid SQL statement

can anyone tell me how to execute procedure in oracle10g expreess edition
Posted
Comments
Uday P.Singh 17-Jun-11 2:30am    
its running good on my pc, check if you miss any semicolon..
adilmemon 17-Jun-11 13:12pm    
thanx but you have tried in oragle10g or in the other version

 
Share this answer
 
Hi Dear..

Use this coding

SQL
begin
p1;
end;
 
Share this answer
 
Comments
Member 3518320 1-May-23 4:32am    
Good . It is worked in my pc

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900