How To Create a Stored Procedure in Oracle?
Submitted by: AdministratorA stored procedure is a procedure with a specified name and stored into the current database. If you want to create a stored procedure, you can use the CREATE PROCEDURE statement. The example script below creates a stored procedure:
SQL> CREATE PROCEDURE Greeting AS
2 BEGIN
3 DBMS_OUTPUT.PUT_LINE('Welcome to globalguideline!');
4 END;
5 /
Procedure created.
Submitted by: Administrator
SQL> CREATE PROCEDURE Greeting AS
2 BEGIN
3 DBMS_OUTPUT.PUT_LINE('Welcome to globalguideline!');
4 END;
5 /
Procedure created.
Submitted by: Administrator
Read Online Oracle Database Job Interview Questions And Answers
Top Oracle Database Questions
☺ | How To Write Date and Time Interval Literals in Oracle? |
☺ | How To View the Dropped Tables in Your Recycle Bin? |
☺ | How Run SQL*Plus Commands That Are Stored in a Local File? |
☺ | How To Run SQL*Plus Commands in SQL Developer? |
☺ | How To Use Values from Other Tables in UPDATE Statements using Oracle? |
Top DB Oracle Categories
☺ | Oracle PL-SQL Interview Questions. |
☺ | Oracle DBA Interview Questions. |
☺ | Oracle D2K Interview Questions. |
☺ | OCI Interview Questions. |
☺ | Oracle RMAN Interview Questions. |