Procedure
=====================================
CREATE OR REPLACE PROCEDURE greetings
AS
BEGIN
dbms_output.put_line('Hello World!');
END;
/
Program to call above procedure
========================================
set serveroutput on
BEGIN
greetings;
END;
/
No comments:
Post a Comment
Thanks for showing your interest
I will shortly get back to you