Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How To Pass Parameters to Procedures?

parameters pass procedures
0
10 Posted

How To Pass Parameters to Procedures?

0

Store procedures or functions can take parameters. You need to define parameters while defining the procedure, and providing values to parameters while calling the procedure. The script below shows you how to do this:SQL> CREATE OR REPLACE PROCEDURE DBA_TASK (day VARCHAR2) AS2 BEGIN3 IF day = ‘MONDAY’ THEN4 DBMS_OUTPUT.PUT_LINE(’Checking log files.’);5 ELSIF day = ‘FRIDAY’ THEN6 DBMS_OUTPUT.PUT_LINE(’Rebuild indexes.’);7 ELSE8 DBMS_OUTPUT.PUT_LINE(’Reading some papers.’);9 END IF;10 END;11 /SQL> EXECUTE DBA_TASK(’MONDAY’);Checking log files.SQL> EXECUTE DBA_TASK(’SUNDAY’);Reading some papers.As you can see, procedures with parameters can make procedures more flexible.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.