Definition of job in dbms_jobs
-- First get the job_id and owner; select job,log_user,schema_user from dba_jobs;
oracle configurationintermediate
by OracleDba
13 views
-- First get the job_id and owner; select job,log_user,schema_user from dba_jobs;
123456789
alter session set current_schema=DBATEST;
set serveroutput on
SQL> DECLARE
callstr VARCHAR2(500);
BEGIN
dbms_job.user_export(743, callstr);
dbms_output.put_line(callstr);
END;
/Please to add comments
No comments yet. Be the first to comment!