Give an example of any procedure.
Answer Posted / roopesh kumar
We can write a procedure with or w/o using parameters.
For procedure the simplest ex. could be like as
SQL> create or replace procedure tr ---calling procedure
2 as
3 begin
4 in_emp; -- Called procedure
5 end;
6 /
in this procedure i am calling another procedure inside
that.
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
What are the ddl commands?
What is package in pl sql with an examples?
Why is stored procedure faster than query?
What does fetching a cursor do?
What is cursor in pl sql with examples?
How can you load microsoft excel data into oracle? : aql loader
How do you modify a table in sql?
What is cursor in pl sql?
what are dynamic queries in t-sql? : Transact sql
What is sqlca in db2?
What is pl sql script?
Write a unique difference between a function and a stored procedure.
What is the difference between join and natural join?
How do you update a value in sql?
Is it possible to remove child records without removing master table records...the two having pk,fk relationship?