Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> dbms_scheduler - external job problems

dbms_scheduler - external job problems

From: <brian.x.wisniewski_at_jpmchase.com>
Date: Tue, 4 Apr 2006 15:11:41 -0400
Message-ID: <OFE478B928.70B5F860-ON85257146.005BBF8A-85257146.0069706A@jpmchase.com>


I'm still researching this but if anyone has any insight it would be much appreciated.

Windows 2003 Server, Oracle 10.2

I'm trying to create an external job, very simple test for POC and it keeps failing. I've followed 285313.1 and the associated bug 3824718 with no luck.

I'm just trying to execute the cmd.exe in windows - nothing too complicated here - I was trying to call another job from cmd.exe but it wasn't working so I went back to the very basics.

I was thinking maybe it was a permission problem on the OS for some reason - so I copied the cmd.exe from system32 up to the root c:\ and renamed it junkcmd.exe - I then removed all the inherited permission's and added 'everyone' with full privs. I can run this from the command line or from explorer and it runs fine. From dbms_scheduler - not working - can't find file.

Below are the details for the job I'm trying to run along with the associated error messages. I have also granted the 'CREATE EXTERNAL JOB' priv to my id - bwisniewski.

Has anyone gotten an 'external' job to run on Windows via dbms_scheduler? I just keep hitting brick walls with this.

Thanks!

begin

        dbms_scheduler.drop_job('t1');
        dbms_scheduler.purge_log;
        dbms_scheduler.create_job('t1',
        job_action=>'C:\junkcmd.exe',
        number_of_arguments=>2,
        job_type=>'executable', enabled=>false, auto_drop=>false);
        dbms_scheduler.set_job_argument_value('t1',1,'/q');
        dbms_scheduler.set_job_argument_value('t1',2,'/c');
        -- 
dbms_scheduler.set_job_argument_value('t1',3,'e:\oracle\test.bat');
        dbms_scheduler.enable('t1');

end;
/

select * from dba_scheduler_job_run_details;


ORA-27370: job slave failed to launch a job of type EXECUTABLE ORA-27300: OS system dependent operation:accessing execution agent failed with status: 2

ORA-27301: OS failure message: The system cannot find the file specified.
ORA-27302: failure occurred at: sjsec 6a
ORA-27303: additional information: The system cannot find the file 
specified.

1 row selected.

ibisapp SQL> @job_sched

JOB                            PROGRAM_NAME                   JOB_TYPE  
JOB_ACTION
------------------------------ ------------------------------ 
---------------- ---------------
BWISNIEWSKI.T1                                                EXECUTABLE   
 C:\junkcmd.exe      

Brian S. Wisniewski
Sr. Oracle Database Administrator
Central Technology Infrastructure & Operations brian.x.wisniewski_at_jpmchase.com
Cell: 614.975.2905


--
http://www.freelists.org/webpage/oracle-l


picture
Received on Tue Apr 04 2006 - 14:11:41 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US