OCP CBT Question 614

Please solve the following question.

You have a stored procedure `archive_data(p_table_name IN VARCHAR2, p_retention_days IN NUMBER)` that you want to execute daily using Oracle Scheduler. You need to create a job that calls this procedure to archive data from `SALES_LOGS` table with a retention of 90 days. Which sequence of `DBMS_SCHEDULER` calls correctly defines this job with its arguments?

Stored Procedure SignaturesqlPROCEDURE archive_data(p_table_name IN VARCHAR2, p_retention_days IN NUMBER) ISBEGIN -- Archiving logic goes here NULL;END;