Hello Expers,
I have created an EXECUTABLE job e.g. :
begin
dbms_scheduler.create_job(
job_name => 'TEST',
job_type => 'EXECUTABLE',
job_action => 'D:\files\TestApp.exe -arg1 100 -logpath D:\files\log',
enabled => true
);
end;
When I create this job using the SYS user as sysdba it works but, when I log in using another user with no sysdba role it doesn't work, in spite of, this user has all privileges such as (CREATE ANY JOB & CREATE ANY EXTERNAL JOB).
Any help ?
Thank you.