DBAsupport.com Forums - Powered by vBulletin
Results 1 to 7 of 7

Thread: Problem with ORACLE JOB

  1. #1
    Join Date
    Dec 2002
    Location
    In your worst nightmares :P
    Posts
    5

    Problem with ORACLE JOB

    We are trying to execute a JOB by "DBMS_JOB.RUN(Procedure_ID)" command... and we obtained this error:

    ERROR en l*nea 1:
    ORA-12011: la ejecución de 1 trabajos ha fallado
    ORA-06512: en "SYS.DBMS_IJOB", l*nea 405
    ORA-06512: en "SYS.DBMS_JOB", l*nea 267
    ORA-06512: en l*nea 1

    Thx in advance.

    Regards

  2. #2
    Join Date
    May 2000
    Location
    ATLANTA, GA, USA
    Posts
    3,135
    Was this dbms_job ran in Spain?

  3. #3
    Join Date
    Dec 2002
    Location
    In your worst nightmares :P
    Posts
    5
    Yap in Spain

  4. #4
    Join Date
    May 2000
    Location
    ATLANTA, GA, USA
    Posts
    3,135
    Does your procedure handle exception?
    Did you check up alert log?

    Tamil

  5. #5
    Join Date
    Dec 2002
    Location
    In your worst nightmares :P
    Posts
    5
    We don't have many Administration concepts... can any1 pls tell me how the **** we can check the "famous" Alert Log?

  6. #6
    Join Date
    Feb 2003
    Posts
    3

    Talking

    Hellow novacd,
    how have you created your job?
    I think your problem is like this:
    you have created your job

    VARIABLE Job_number NUMBER;
    BEGIN
    DBMS_JOB.SUBMIT(:Job_number,'Procedure_name', ...)
    END;

    try do it so:

    VARIABLE Job_number NUMBER;
    EXEC DBMS_JOB.SUBMIT(:Job_number,'Procedure_name', ...);

    Is incredible, but it's true.
    I had the same problem, and I resolve it so.

  7. #7
    Join Date
    Dec 2000
    Location
    Ljubljana, Slovenia
    Posts
    4,439
    Originally posted by Coco
    Hellow novacd,
    how have you created your job?
    I think your problem is like this:
    you have created your job

    VARIABLE Job_number NUMBER;
    BEGIN
    DBMS_JOB.SUBMIT(:Job_number,'Procedure_name', ...)
    END;

    try do it so:

    VARIABLE Job_number NUMBER;
    EXEC DBMS_JOB.SUBMIT(:Job_number,'Procedure_name', ...);

    Is incredible, but it's true.
    I had the same problem, and I resolve it so.
    Has anybody said he is using SQL*Plus to start the job???
    Jurij Modic
    ASCII a stupid question, get a stupid ANSI
    24 hours in a day .... 24 beer in a case .... coincidence?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width