ORA-00990 trying to execute 'grant create job'

SUN Solaris 2.9, ORACLE 9.2.0.4, HTML DB Version 1.4.2.00.21
ins.sql gets an error "ORA-00990: missing or invalid privilege" while performing "grant create job to FLOWS_010402 with admin option;"
It appears this command was recently added to coreins.sql (Rem jstraub 09/29/2003 - Added with admin option to create database link priv, added create job, library to privs granted (Bug 3159606)).
Has anyone had any experience with this?

we should probably have included a better comment/message in that file, but CREATE JOB is only a valid system priv in 10g...
SQL> select banner from v$version;
BANNER
Oracle10i Enterprise Edition Release 10.1.0.1.0 - Beta
PL/SQL Release 10.1.0.1.0 - Beta
CORE 10.1.0.1.0 Beta
TNS for Linux: Version 10.1.0.1.0 - Beta
NLSRTL Version 10.1.0.1.0 - Beta
SQL> grant create job to rmattama;
Grant succeeded.
SQL> connect system@captain
Enter password:
Connected.
SQL> select banner from v$version;
BANNER
Oracle9i Enterprise Edition Release 9.2.0.2.0 - Production
PL/SQL Release 9.2.0.2.0 - Production
CORE 9.2.0.2.0 Production
TNS for Linux: Version 9.2.0.2.0 - Production
NLSRTL Version 9.2.0.2.0 - Production
SQL> grant create job to rmattama;
grant create job to rmattama
ERROR at line 1:
ORA-00990: missing or invalid privilege
SQL>
...i'll log the comment issue is a bit.
regards,
raj

Similar Messages

  • Getting error while trying to execute a external job using dbms_scheduler

    Hello,
    I create a job using alpha account.
    begin
    dbms_scheduler.create_job(
    job_name => 'jps_test_executable',
    job_type => 'EXECUTABLE',
    job_action => '/usr/bin/ksh',
    number_of_arguments => 2
    dbms_scheduler.set_job_argument_value (
    job_name => 'jps_test_executable',
    argument_position => 1,
    argument_value => '/tmp/abc.sh'
    and when I execute the job in the schema using alpha account it works fine.
    BEGIN
    DBMS_SCHEDULER.run_job (job_name => 'jps_test_executable',
    use_current_session => FALSE);
    END;
    Works fine.
    But if I try to execute the same job using some other account say beta in the same schema , I am getting error
    ORA-27476 :”SMS.RUN_SMS_JOBS Does not exist ORA-06512 at “SYS.DBMS_ISCHED” line 2793 ORA-06512 :at “SYS.DBMS_SCHEDULER”,line 1794
    even I give the fill qualifier, still I am getting the error.
    BEGIN
    DBMS_SCHEDULER.run_job (job_name => 'alpha.jps_test_executable',
    use_current_session => FALSE);
    END;
    Any help will be appreciated.
    Thank you,
    Raj

    It's the expected behavior:
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_sched.htm#CIHHBGGI
    RUN_JOB requires that you be the owner of the job or have ALTER privileges on that job. You can also run a job if you have the CREATE ANY JOB privilege.So, you need to grant the required privilege:
    aplha@orcl> grant alter on alpha.jps_test_executable to beta;HTH
    Enrique
    PS If your problem was solved consider marking the question as answered.

  • Athentication error: when trying to execute a OEM Job registered by OWB !!

    Hi !
    I4m using the OWB and I did a map to extract data from two tables
    on my source database and populate a destination dimension table, in my destination database.
    I deploy this map, it4s sucesfull,
    I run it from OWB and it populates the destination dimension table perfectly,
    I saved the TCL file and it4s OK,
    I choose "Register in OEM" option and it register sucesfull too,
    but when I open the OEM and run the job from OEM, it fails !
    It gives me this error:
    VNI-2015 : Authentication error
    Even when I try do it with "sysman" user
    Could you help me ?
    Thanks,
    Renato

    It's the expected behavior:
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_sched.htm#CIHHBGGI
    RUN_JOB requires that you be the owner of the job or have ALTER privileges on that job. You can also run a job if you have the CREATE ANY JOB privilege.So, you need to grant the required privilege:
    aplha@orcl> grant alter on alpha.jps_test_executable to beta;HTH
    Enrique
    PS If your problem was solved consider marking the question as answered.

  • Create Job scheduler

    Hi,
    Apps - 12.1.3
    DB - 11.1.0.7.0
    i want to run a job ( say sql quesry) at every hour ..
    how i can schedule it using scheduler ?
    I planned:
    --create schedule
    begin
    dbms_scheduler.create_schedule
    ( schedule_name => 'weekday_execution',
    start_date=> trunc(sysdate)+8/24,
    repeat_interval=> 'FREQ=DAILY; BYHOUR=01,02,03,04,05,06,07,08,09,10,11,12,13,14,15,16,17',
    comments => 'Weekday schedule based on MON-FRI 8 to 5');
    end;
    --create program
    BEGIN
    DBMS_SCHEDULER.CREATE_PROGRAM (
    program_name => 'oe.my_saved_program1',
    program_action => '/usr/local/bin/date',
    program_type => 'EXECUTABLE',
    comments => 'My comments here');
    END;
    Create Job:
    BEGIN
    DBMS_SCHEDULER.CREATE_JOB (
    job_name => 'my_job',
    job_type => 'SQL',
    job_action => 'select * from dual',
    start_date => '01-SEP-11 1.00.00AM US/Pacific',
    repeat_interval => 'FREQ=DAILY',
    enabled => TRUE,
    comments => 'Select query');
    END;
    Am i correct?
    Thanks
    Vishwa
    Edited by: Vishwa on Sep 1, 2011 5:42 AM

    Hello Vishwa;
    What I is create them in this order
    Schedule -
    Program Name-
    Create Job-
    You need to create the Job last if its using a Schedule or a Program. If you query can be run in a stored procedure the Program example below will work.
    Schedule Example
    begin
      dbms_scheduler.create_schedule 
      (schedule_name => 'DAILY_AT_8AM', 
       start_date=> trunc(sysdate)+18/24, 
       repeat_interval=> 'freq=daily;byhour=8;byminute=0;bysecond=0',
       comments=>' Run at 8am every day'); 
    end;
    Program Example
    begin
    -- Call a procedure of a database package
    dbms_scheduler.create_program
    (program_name=> 'PROG_REPROCESS_EMP_COMM',
    program_type=> 'STORED_PROCEDURE',
    program_action=> 'REPROCESS_EMP_COMM',
    enabled=>true,
    comments=>'Procedure to set comm to NULL'
    end;
    Job Example
    begin
    dbms_scheduler.create_job
    (job_name => 'JOB_REPROCESS_EMP_COMM',
    program_name=> 'PROG_REPROCESS_EMP_COMM',
    schedule_name=>'DAILY_AT_405PM',
    enabled=>true,
    auto_drop=>false,
    comments=>'Job to update comm to null');
    end;You can check for failed jobs by running this query
    SELECT
      LOG_DATE,
      JOB_NAME,
      STATUS,
      REQ_START_DATE,
      ACTUAL_START_DATE,
      RUN_DURATION
    FROM  
      DBA_SCHEDULER_JOB_RUN_DETAILS
    WHERE
      STATUS <> 'SUCCEEDED'Things that will help :
    Grant 'create job' or 'create any job' privilege directly to the user (not through a role!).
    Avoid naming the job as an already existing procedure/package name.
    Consider starting your jobs with JOB_ and your programs with PROGRAM_.
    Your Schedule need to be this :
    BEGIN
      DBMS_SCHEDULER.create_schedule (
        schedule_name   => 'HOURLY_SCHEDULE',
        start_date      => SYSTIMESTAMP,
        repeat_interval => 'freq=hourly; byminute=0',
        end_date        => NULL,
        comments        => 'Repeats hourly, on the hour, for ever.');
    END;
    /If you need a code block change you program type to this :
    program_type   => 'PLSQL_BLOCK'Best Regards
    mseberg

  • Please help me to create JOB

    Please help me to create JOB that executes only on saturday , sunday. How can i do this. Please help me with specimen.
    Thanks

    Hi,
    Here is PL/SQL code to run a PL/SQL block using dbms_scheduler every Saturday and Sunday at 8pm.
    dbms_scheduler is present in Oracle 10g and up. In earlier versions you will have to use dbms_job as given above.
    -- ========================================
    grant create job to user_that_runs_script ;
    Then as the user do
    BEGIN
    dbms_scheduler.create_job(
    job_name => 'my_weekend_job',
    job_type => 'PLSQL_BLOCK',
    job_action => 'schema.my_stored_proc();'
    repeat_interval => 'FREQ=DAILY;BYDAY=SAT,SUN;BYHOUR=20;BYMINUTE=0;BYSECOND=0',
    comments => 'this job runs every Saturday and Sunday at 8pm',
    enabled=>true);
    END;
    Hope this helps,
    Ravi.

  • Getting ora-00990 while giving Grant create directory privilege

    Hi,
    I need to create a directory (ext_dir_src) in the user 'new_user'.So i have given,
    create or replace directory ext_dir_src as '/mark_data/erp/src;
    but i was getting an error as:
    ORA-01031 insufficient privileges
    so i logged in as 'SYSTEM' user and given:
    grant create directory to new_user;
    but i am getting the following error:
    ORA-00990 missing or invalid privileges
    Can this privilege be given to 'new_user' from SYSTEM user?
    Or my Grant command is wrong?

    It would appear that the operating system "oracle" doe not have appropriate privileges on the directory.
    It is oracle:dba that must own '/mark_data' not Mark.

  • Problem with APEX 4.0 -  "ORA-20001: Error with: GRANT CREATE CLUSTER "

    I have a workspace which I've succesfully created with schema A.
    However when i try to assign an additional schema to it, schema B, I get the following error message :-
    "ORA-20001: Error with: GRANT CREATE CLUSTER TO "BI_SOURCES" ORA-01031: insufficient privileges"
    i've tried granting "create cluster with admin option' to users A,B,anonymous AND APEX_040000. FLOWS_030000 already has these privileges.
    Anybody any ideas ?
    regs
    johnnie
    Edited by: johnnie d on 31-Aug-2011 10:58

    I have experience the similiar problem. The error message: Invalid exist/not exist condition: ORA 2001 Query must begin with Select or With.
    I have home page and concept review report page below home page. And Concept review form under the report page. The error is display in all of the three pages. I checked carefully and still not able to find where the error come from. Can you please help? All the report region and form region have the select statement, is it from the LOVs? Home
    Concept review report
    Concept reveiw Form(for detail info)
    Thank you!

  • ORA-20000 error when executing background jobs in BI System

    Hello Experts,
    We newly installed NW2004s System. Few BI related background jobs are showing Error no: 4 or Error no: 3 in SM50. Also few BI related background jobs are giving error "ORA-20000 occurred when executing SQL statement (parse error offset=0)". Please let me know what does Error 4 or 3 mean in SM50 and how to resolve Ora-20000 error?
    Thanks

    This may be to do with insufficient authorization for the user (for creating statistics for example). Check OSS note 963760.

  • Does GRANT CREATE ANY PROCEDURE auto grants EXECUTE on created obj to user?

    I have a User ABC which has GRANT CREATE ANY PROCEDURE on schema XYZ. Now, I create a new Function in schema XYZ using my ID ABC named "func123". My question is, would my User ID ABC being creator of func123 be able to EXECUTE it by default ???
    Note: ID ABC has not been explicitly given GRANT EXECUTE on this func123 function, neither it has GRANT EXECUTE ANY PROCEDURE on schema XYZ.
    Thanks in advance.

    There is no such thing as 'create any procedure on schema xyz'. When an user has create any procedure, he can create a procedure in any schema, including SYS.
    You have an unprotected and unsecured database by granting this powerful privilege to multiple users.
    Also when you create a procedure in a different schema, that schema becomes the owner, not the user creating it.
    Kindly brush up your basics and (re)read documentation.
    Sybrand Bakker
    Senior Oracle DBA

  • ORA-31637: cannot create job SYS_IMPORT_SCHEMA_01 for user SYSTEM in impdp

    Hi All,
    During impdp i am getting this below error:
    ORA-31626: job does not exist
    ORA-31637: cannot create job SYS_IMPORT_SCHEMA_01 for user SYSTEM
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPV$FT_INT", line 600
    ORA-39080: failed to create queues "KUPC$C_1_20090507123340" and "KUPC$S_1_20090507123340" for Data Pump job
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPC$QUE_INT", line 1606
    ORA-04031: unable to allocate 56 bytes of shared memory ("streams pool","unknown object","streams pool","fixed allocation callback")
    Also increase shared memory hence creating the same problem.
    Can anyone sujjest me what would be the cause?
    Thanks in advance...

    Increase parameter streams_pool.
    Set it for example to 100MB
    Then try again.

  • Error creating job into trigger using DBMS_SCHEDULER.

    Hi,
    I am trying to create job using dbms_scheduler package. I have one trigger on insert event on one table. I am creating job using following syntax.
    CREATE OR REPLACE TRIGGER TRG_BI_JOB_CONFIG BEFORE INSERT ON JOB_CONFIG FOR EACH ROW
    DECLARE
    BEGIN
         DBMS_SCHEDULER.Create_Job(job_name => 'my_job1'
                             ,job_type => 'PLSQL_BLOCK'
                             ,job_action => 'delete_temp'
                             ,start_date => TO_DATE('15-JUL-2003 1:00:00 AM', 'dd-mon-yyyy hh:mi:ss PM')
                                  ,repeat_interval => 'FREQ=DAILY'
                             ,enabled => TRUE
                             ,comments => 'DELETE FOR job schedule.');
    EXCEPTION
    WHEN OTHERS THEN RAISE;
    END;
    but I am getting following error while inserting into JOB_CONFIG table.
    ORA-04092: cannot in a trigger
    ORA-06512: at "PRAKASH1.TRG_BI_JOB_CONFIG", line 41
    ORA-04088: error during execution of trigger
    same above statement If I am running from sqlplus then It is creating job without error. If I am creating job using DBMS_JOB into trigger then It is also working fine but this package is depricated from oracle10g so I cannt use it any more.
    My Oracle version is 'Oracle DATABASE 10g RELEASE 10.2.0.1.0 - Production'.
    can anyone help me in this context.

    I have a few comments on this thread as an Oracle dbms_scheduler developer.
    - Oracle takes backward compatibility very seriously. Although dbms_job is deprecated, the interface will continue to work indefinitely. The deprecation of dbms_job is so that customers will be encouraged to take advantage of the more powerful dbms_scheduler. It is extremely unlikely that entire blocks of functionality will ever be removed. There is currently no plan to remove dbms_job functionality (and even if there were, doing so would be strenuously opposed by many users).
    - lots of internal Oracle database components are standardizing on using dbms_scheduler (resource manager, materialized views, auto sql tuning etc). This is good evidence that it will continue to be the recommended scheduling method for the foreseeable future - not even the concept of a replacement exists. It is also under active development.
    - The reason for the automatic commit is that a dbms_scheduler job is a full database object like a stored procedure or a table. So a call to dbms_scheduler.create_job is like executing a DDL which takes effect immediately. A dbms_job job is mostly just a row in a table so a call to dbms_job.submit behaves like regular DML. There are many advantages to a job being a full database object but DDL behaviour is an unfortunate requirement of this.
    Hope this clears a few things up, reply with any questions.
    -Ravi

  • Oracle Streams ORA-23616: Failure in executing block 167 for script

    oracle : Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    os : linux i686 i686 i386 GNU/Linux
    application : testing streams for schema ROOT
    1. Both the databases INDCTRAK, INDDTRAK are in archive.
    2. DB link created
    CREATE DATABASE LINK dbl_INDDTRAK CONNECT TO strmadmin IDENTIFIED BY strmadmin USING 'INDDTRAK';
    3. tbs created
    CREATE TABLESPACE streams_tbs datafile '/u02/oradata/INDDTRAK/streams01.dbf' size 100m;
    4 user created
    CREATE USER strmadmin IDENTIFIED BY strmadmin DEFAULT TABLESPACE streams_tbs TEMPORARY TABLESPACE temp
    QUOTA UNLIMITED ON streams_tbs;
    5. All req. grants
    GRANT CONNECT, RESOURCE, DBA ,Select_CATALOG_ROLE,
    SELECT ANY DICTIONARY TO strmadmin;
    6. grants
    BEGIN
    DBMS_STREAMS_AUTH.GRANT_ADMIN_PRIVILEGE (Grantee => 'strmadmin',Grant_privileges => true);
    END;
    PL/SQL procedure successfully completed.
    7. Created directory
    CREATE OR REPLACE DIRECTORY ADMIN AS '/u02/oradata/INDDTRAK/streams';
    step 2-7 executed without errors
    8.run with perform_actions as false
    SQL> BEGIN
    2 DBMS_STREAMS_ADM.MAINTAIN_SCHEMAS(
    3 schema_names =>'ROOT',
    4 source_directory_object =>'ADMIN',
    5 destination_directory_object =>'ADMIN',
    6 source_database => 'INDCTRAK',
    7 destination_database => 'INDDTRAK',
    8 perform_actions => false,
    9 script_name => 'schema_replication.sql',
    10 script_directory_object => 'admin',
    11 dump_file_name => 'ROOT.DMP',
    12 capture_name => 'capture_ROOT',
    13 capture_queue_table => 'rep_capture_queue_table',
    14 capture_queue_name => 'rep_capture_queue',
    15 capture_queue_user => null,
    16 propagation_name => 'prop_ROOT',
    17 apply_name => 'apply_ROOT',
    18 apply_queue_table => 'rep_dest_queue_table',
    19 apply_queue_name => 'rep_dest_queue',
    20 apply_queue_user => null,
    21 log_file => 'exp.log',
    22 bi_directional => false,
    23 include_ddl => true,
    24 instantiation => dbms_streams_adm.instantiation_schema_network);
    25 END;
    26 /
    9. when running perform_actions true getting error
    SQL> BEGIN
    2 DBMS_STREAMS_ADM.MAINTAIN_SCHEMAS(
    3 schema_names =>'ROOT',
    4 source_directory_object =>'ADMIN',
    5 destination_directory_object =>'ADMIN',
    6 source_database => 'INDCTRAK',
    7 destination_database => 'INDDTRAK',
    8 perform_actions => TRUE,
    9 script_name => 'schema_replication.sql',
    10 script_directory_object => 'admin',
    11 dump_file_name => 'ROOT.DMP',
    12 capture_name => 'capture_ROOT',
    13 capture_queue_table => 'rep_capture_queue_table',
    14 capture_queue_name => 'rep_capture_queue',
    15 capture_queue_user => null,
    16 propagation_name => 'prop_ROOT',
    17 apply_name => 'apply_ROOT',
    18 apply_queue_table => 'rep_dest_queue_table',
    19 apply_queue_name => 'rep_dest_queue',
    20 apply_queue_user => null,
    21 log_file => 'exp.log',
    22 bi_directional => false,
    23 include_ddl => true,
    24 instantiation => dbms_streams_adm.instantiation_schema_network);
    25 END;
    26 /
    BEGIN
    ERROR at line 1:
    ORA-23616: Failure in executing block 167 for script
    4D2E52386C84C1CAE040A8C0FC015222
    ORA-06512: at "SYS.DBMS_RECOVERABLE_SCRIPT", line 560
    ORA-06512: at "SYS.DBMS_RECOVERABLE_SCRIPT", line 583
    ORA-06512: at "SYS.DBMS_STREAMS_MT", line 7673
    ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 2606
    ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 2667
    ORA-06512: at line 2
    10 errors
    SQL> select * from dba_recoverable_script_errors;
    SCRIPT_ID BLOCK_NUM ERROR_NUMBER
    ERROR_MESSAGE
    ERROR_CRE
    4D2E52386C84C1CAE040A8C0FC015222 167 -39001
    ORA-39001: invalid argument value
    ORA-06512: at "SYS.DBMS_RECO_SCRIPT_INVOK", line 130
    ORA-06512: at "SYS.DBMS_STREAMS_RPC", line 447
    14-MAY-08
    I could not find much explanation on net.
    pl. help in case it is already solved.

    Hi,
    we are implementing datavault on an existing 11g DB.The database is up and running fine , but DBCA shows this error when I am trying to configure datavault using DBCA.
    I have created a spfile from the same pfile, and Db does not show any error while coming up or shutting down. The issue comes only while using DBCA. I shall try minimizing the parameters and try again.
    Thanks
    Pankaj

  • A simple problem? - cannot grant create rule set

    Hi,
    Can anyone spot the stupid mistake i'm obviously making when trying to grant create rule set to my streams admin user? The script was working last week?!
    BEGIN
    DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => DBMS_RULE_ADM.CREATE_RULE_SET_OBJ,
    grantee => 'strmadmin',
    grant_option => FALSE);
    END;
    ERROR at line 1:
    ORA-00931: missing identifier
    ORA-24000: invalid value , USER/ROLE should be of the form [SCHEMA.]NAME
    ORA-06512: at "SYS.DBMS_RULE_ADM", line 167
    ORA-06512: at line 2
    Many thanks,
    Warren

    Yes, catpatch.sql is necessary only for existing 9.2.0.1 databases upgraded to 9.2.0.2.
    I am assuming that when you created the database under 9.2.0.2 that catalog.sql and
    catproc.sql were run. The next step, I guess, is to turn on sql tracing to see
    which sql statement actually fails when you run the command. Turn on sql tracing
    with the following command, and then execute the procedure again.
    alter session set sql_trace=true;

  • Dynamic SQL and GRANT CREATE ANY TABLE

    hi gurus,
    i have a dynamic SQL in a procedure where a table will be created from an existing table without data.
    strSQL:='create table ' || strTemp || ' as select * from ' || strArc || ' where 1=2';
    execute immediate strSQL;
    without GRANT CREATE ANY TABLE for the user, *"ORA-01031: insufficient privileges"* error during execution.
    Is there a way to tackle this issue without providing GRANT CREATE ANY TABLE privilige?
    many thanks,
    Charles

    ravikumar.sv wrote:
    The problem is not because of dynamic sql...It probably has something to do with dynamic SQL or, more accurately, dynamic SQL within a stored procedure.
    From a SQL*Plus command prompt, you can create a table if your account has the CREATE TABLE privilege either granted directly to it or granted to a role that has been granted to your account. Most people probably have the CREATE TABLE privilege through a role (hopefully a custom "developer role" that has whatever privileges you grant to users that will own objects but potentially through the default RESOURCE role). That is not sufficient to create tables dynamically via a definer's rights stored procedure. Only privileges that are granted directly to the user, not those granted via a role, are visible in that case.
    I expect that the DBAs are granting the CREATE ANY TABLE privilege directly to the account in question rather than through whatever role(s) are being used which is why that appears to solve the problem.
    Justin

  • Creating job, ran successfuly, but not seen on dba_scheduler_jobs

    Hello working on 10g standard Edition on windows, I'm created an inline job but to execute an OS commend, but this doesn't show up why?
    conn dev@souceb
    Example:
    begin
    dbms_scheduler.create_job(job_name =>'EXEMPLE',job_type =>'executable',enabled => true,start_date => SYSTIMESTAMP,job_action =>'c:\temp\cp.cmd');
    end;
    PL/SQL procedure successfully completed.
    SQL> select job_name from dba_scheduler_jobs;
    JOB_NAME
    AUTO_SPACE_ADVISOR_JOB
    GATHER_STATS_JOB
    FGR$AUTOPURGE_JOB
    PURGE_LOG
    RLM$SCHDNEGACTION
    RLM$EVTCLEANUP
    RS_RESTRICT_ACCESS_90DAYS_JOB
    the job EXEMPLE doesn't show up, and when Itry to launch the job, I have the following error
    EXEC DBMS_SCHEDULER.RUN_JOB('EXEMPLE',TRUE);
    ERROR at line 1:
    ORA-27475: "DEV.EXEMPLE" must be a job
    ORA-06512: at "SYS.DBMS_ISCHED", line 150
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 441
    ORA-06512: at line 1
    Could someone helps me for this?
    Thanks

    I don't what really is going on with my system but the creation of the job works fine, but I'm getting this error:
    SQL> EXEC DBMS_SCHEDULER.RUN_JOB ('MYJOB');
    BEGIN DBMS_SCHEDULER.RUN_JOB ('MYJOB'); END;
    ERROR at line 1:
    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.
    ORA-06512: at "SYS.DBMS_ISCHED", line 150
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 441
    ORA-06512: at line 1
    other reason gotten from the dba_scheduler_job_run_details:
    select status,run_duration,session_id,additional_info from dba_SCHEDULER_JOB_RUN_DETAILS where job_name='MYJOB';
    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 cann
    ot find the file specified.
    Any tips?
    Thanks

Maybe you are looking for

  • There are no active responsibilities available for this user

    Hi Guys... I am not technical person... but wanted to if anybody has experienced the following problem:- When logging into any account i get the following message:- There are no active responsibilities available for this user No i have looked the thr

  • Could not create an new account for use

    Last night I logged in with my AppleID to make a post. As it was the first time, I had to create an account/profile in order to do so. But that was not possible using 10.6.6 and the latest Safafi. What happened was this : Name: AppleID: Log out of th

  • ABAP Code Endmethod missing error??

    Hi Friends,Please help me. I am not having logsys/source system id field in source datasource , hence i trying to populate that in BI . I have wriiten the code in start routine which give me <b>ENDMETHOD MISSING error</b>, as below. please tell what

  • Why can't I show timestamp on a shared variable?

    I have two shared variables in a block diagram. They are in two different lvlibs, but both hosted on the same RT target. One of them allows me to show the Timestamp. The other does not. Why? Is this just a bug in LV 8.2?

  • PS in CS5.5 suddenly stopped opening image files

    I deactivated and uninstalled CS5.5 on an old box and installed and activated it on a new machine several days ago. PS was working as of yesterday, but today it won't open an image file. I select and click to open a file but absolutely nothing happen