Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Issues while executing a job (ORA-27639 job of type EXECUTABLE failed with exit code: 27466)

M.EmmanuelJun 19 2016 — edited Jun 20 2016

Using Oracle 11g r2 XE.

If I create the following job using oracle linux user, sqlplus (SYS as SYSDBA):

begin

_dbms\_scheduler.create\_job(_

    _job\_name=>'TEST\_JOB',_

    _job\_type=>'executable',_

    _job\_action=>'/tmp/test\_job.sh',_

    _enabled=>FALSE_

_);_

end;

/

I can launch the job without issues:

begin

_DBMS\_SCHEDULER.RUN\_JOB(job\_name=>'TEST\_JOB');_

end;

/

And it works fine.

However, when I try to create exactly the same job under an APEX 5.0.3 schema, when I try to run it I get:

ORA-27369: job of type EXECUTABLE failed with exit code: 274666

pastedImage_16.png

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 18 2016
Added on Jun 19 2016
7 comments
1,603 views