Problem in running job from OEM

I have registered JOB with OEM using TCL script from warehouse builder. I login to OEM and it shows me one job in JOB library. Now i submit this job. It keeps on showing status submitting on the Active jobs tab. It does not do anything
Thanks in advance.

Hi Garcia,
Thanks a lot for this help. Acutally "select count(1) from dual" was returning 3 initally so i have used delete statement twice and now its returning only one value. Though problem is solved but still i couldn't understand the cause of this.
Thanks a lot again.
Regards,
Ashish.

Similar Messages

  • Can not see running jobs from, package

    I have a problem with processing parallely runing jobs:
    I am creating another immediately runned jobs in a main job. Those two parallel jobs (2 loads from different databases) have to be finished before I run next operation (working out loaded data). Problem is that, after starting those 2 parallel jobs, I can not see them by select from ALL_SCHEDULER_RUNNING_JOBS that is executed immediately after I create those jobs in a package. If I take a look into ALL_SCHEDULER_RUNNING_JOBS from anonymous statement I can see all my running jobs. Let's sum it up:
    1/ Start of main job
    2/ Running 2 immediately created jobs (load data)
    3/ Checking in loop if jobs created in step 2 are still running
    3.1/ Jobs are running (ALL_SCHEDULER_RUNNING_JOBS check) - sleep for a
    while - It never happens - can't see any running jobs from select executed in
    package but can see them in
    anonymous statement
    3.2/ Jobs finished - start processing loaded data
    Can somebody help me with this task?
    Thanks alot!
    Jakub

    Hi,
    There is no reason a job should be visible from an anonymous block but not from inside a job. There are two things that may be happening here.
    - jobs scheduled to run immediately my not start running as soon as they are created/enabled, you may need to wait a bit before they start running (they will appear in all_scheduler_jobs immediately but maybe not all_scheduler_running_jobs immediately)
    - you may be running into privilege issues. Is the user that executes the anonymous block the same as the user that the job is running as (the job's schema) ? If not maybe the job user does not have privileges to see the job (you can grant alter on the job to the user to ensure this).
    Can you see the jobs in the all_scheduler_jobs view from within the job with status RUNNING ? If you can see jobs in all_scheduler_jobs as RUNNING but not in all_scheduler_running_jobs then this is a bug of some sort.
    Thanks,
    Ravi.

  • How to research a long running job from 3 days ago

    Re: How to research a long running job from 3 days ago
    Client called to say that a job that normally runs for 6 hours ran for 18 hours on 11/01. 11/01 was a Saturday, and end of month. The long running job writes to a log and I can from the log that that the problem started right around 10:43am. Every step
    before 10:43 was taking the normal amount of time. Then at 10:43 a step that takes seconds hung for 12 hours. After 12 hours the step finished and the job completed successfully.
    I looked at the SQL Log, Event Log, Job History (for all jobs). What else can I look at to try and resolve an issue that happened on 11/01/2014?

    It does execute an SSIS package.
    Personally I feel this as kind of bug in SSIS package but I am not expert in SSIS so I would move it to SSIS forum. Please update your question giving complete information what SSIS package does.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Problem while submitting job from Forms

    Hi,
    i'm submitting a job in when button pressed trigger. This job will call a Backend Package(one procedure). But the job id is created in the backend but the job is not running. but if i run the job with DBMS_job.Run(jobid) from form itself after submitting the job, its working fine. Do we need to maintain any parameter to run job automatically?
    Thanks in advance.

    if there are four parameters passed then one of them is contradicting ur conditional statements. First check and debug those parameters if they consist the required value. also post ur code for further scrutiny.
    zaibi.

  • Oracle Report Font problem when run report from oracle EBS R12

    Dear All
    I have developed one Report in ORACLE REPORT BUILDER in windows environment. I see the output of that report, its ok, I deployed it on the EBS R12 which is on Linux environment, when i see the output, its fonts totally change and due to change in fonts, output not same as like in previous stage. When i print from dot matrix Printer then sometime its shrink the character and sometime break the output..
    Kindly help me in this regard, because this problem i am facing from last few days.
    i am waiting for your quick response.
    Thanks in advance....
    Regards,
    Nawaz
    Edited by: Haq Nawaz on Nov 5, 2012 11:45 AM

    Thank you very much for your reply
    I have changed the fonts in the report, but when i run it from the EBS its has the same problem. from the EBS output font look like as (COURIER) rather than CALIBRI WESTERN.
    tell me what i have to change anything.

  • I am having problems to run Safari from my iPhone 5

    Dear all,
    I'm having problems to run Safari App from my Iphone 5. The application can't be opened and don't initiate.

    Yes, I have restarted the IPhone almost four times, and nothing. Then I've restored and then set up the Iphone from the begginnig and Safari seems to work, but 24 hours later, the same problem.
    I'll appreciate a solution! Thanks!!
    C.

  • Problem in running report from forms 6i..........!

    hi all,
    I am working in oracle forms 6i and i am trying to run report from
    form while press one of the push-button. works fine upto 2nd line from the
    begin key-word.After that its showing error like " FRM-40738:Argument 1 to builtin
    REPORT_OBJECT_STATUS cannot be null.". Can any-one help me of how to solve this and
    wat would be the problem.........?
    declare
         run_rep varchar2(200);
         rep_obj report_object;
         rep_stat varchar2(20);
    begin
         rep_obj := find_report_object('report46');     
         run_rep := run_report_object(rep_obj);     
         rep_stat := report_object_status(run_rep);
         if rep_stat = 'FINISHED' then
         copy_report_object_output(run_rep, 'C:\Documents and Settings\trainee\Desktop\Icons\test.pdf');
         else
              message('error when running report');
         end if;     
    end;
    Please help asup!
    regards,
    jame

    hi rosario,
    Thanks for ur reply. My requirement is, I want to generate pdf file from the report output. so i wrote the following code which is taken from d2k documentation. Problem area has been highlighted in bold.
    declare
    run_rep varchar2(200);
    rep_obj report_object;
    rep_stat varchar2(20);
    begin
    rep_obj := find_report_object('report46');
    run_rep := run_report_object(rep_obj);
    rep_stat := report_object_status(run_rep);
    if rep_stat = 'FINISHED' then
    copy_report_object_output(run_rep, 'C:\Documents and Settings\trainee\Desktop\Icons\test.pdf');
    else
    message('error when running report');
    end if;
    end;
    Report is running but while coming to report_object_status. complior shows error like "FRM-40738:Argument 1 to builtin REPORT_OBJECT_STATUS cannot be null". Parameter for report_object_status is null, i dont know y it is null because report is running. If report is running means,then there must be some values in run_rep.
    why complior doesnt find the values from run_rep.......???
    regards,
    jame

  • Moving Jobs from OEM 9.2 to 10.2

    We have a ton of jobs in OEM 9.2 (set up suing the old Java-based GUI).
    We would like to install OEM 10g R2 Grid Control, but I can't find any documentation about moving these jobs from 9.2 to 10.2.
    Does anybody know if this is even possible?

    Oracle should have some migration tool for jobs from 9.2 to 10g since they changed the tables completely. Let say we have migrated the jobs to 10g this time manually.They may comeup with different tables design again in next version 11i.So we need to keep on creating new jobs on new version since they desupport the old version ..we have no other option..

  • Problem in running code from web service

    All,
    We are experiencing a problem while running a code from a web service. The code based on ecliselink. The same code works from JUnit. When running from webservice, we observed the the following warning
    *0 WARN [[ACTIVE] ExecuteThread: '20' for queue: 'weblogic.kernel.Default (self-tuning)'] openjpa.Runtime - The configuration property named "openjpa.Id" was not recognized and will be ignored, although the name closely matches a valid property called "openjpa.Id".*
    *0 INFO [[ACTIVE] ExecuteThread: '20' for queue: 'weblogic.kernel.Default (self-tuning)'] openjpa.Runtime - Starting BEA Kodo 4.2.0*
    Does this mean it is picking kodo implementation? Our expectation is to use eclipselink implementation. What could this warning? Any pointers would be of great help.
    Thanks,

    Sounds like it is using Kodo, is anything from EclipseLink logged?
    Have you configured your JPA provider in your persistence.xml? If you have not, then you will just get the default.
    James : http://ww.eclipselink.org

  • Run job from another user

    Hi, first of all, sorry for my pour english.
    I'm system in a db, and i need to run a job from another user. I don't have the password. Theres a way to run this job?
    It's a oracle db 10g enterprise.
    Thanks in advice.

    I have the permissions, and I can't change the user password or application may stop. There's a way, but I just can't remember:
    PRIVILEGE
    ANALYZE ANY
    UNLIMITED TABLESPACE
    CREATE TABLE
    ALTER TABLESPACE
    ALTER DATABASE
    GLOBAL QUERY REWRITE
    CREATE MATERIALIZED VIEW
    SELECT ANY TABLE
    8 linhas selecionadas.
    Decorrido: 00:00:00.21
    PRIVILEGE
    FLASHBACK
    DEBUG
    QUERY REWRITE
    ON COMMIT REFRESH
    REFERENCES
    UPDATE
    SELECT
    INSERT
    INDEX
    DELETE
    ALTER
    FLASHBACK
    DEBUG
    QUERY REWRITE
    ON COMMIT REFRESH
    REFERENCES
    UPDATE
    SELECT
    INSERT
    INDEX
    DELETE
    ALTER
    FLASHBACK
    DEBUG
    QUERY REWRITE
    ON COMMIT REFRESH
    REFERENCES
    UPDATE
    SELECT
    INSERT
    INDEX
    DELETE
    ALTER
    SELECT
    SELECT
    SELECT
    SELECT
    SELECT
    SELECT
    SELECT
    SELECT
    SELECT
    SELECT
    SELECT
    SELECT
    EXECUTE
    EXECUTE
    EXECUTE
    EXECUTE
    EXECUTE
    EXECUTE
    EXECUTE
    EXECUTE
    EXECUTE
    EXECUTE
    EXECUTE
    EXECUTE
    EXECUTE
    SELECT
    SELECT
    EXECUTE
    EXECUTE
    EXECUTE
    WRITE
    READ
    WRITE
    READ
    WRITE
    READ
    69 linhas selecionadas.
    Decorrido: 00:00:00.48
    GRANTEE GRANTED_ROLE ADM DEF
    SYSTEM MGMT_USER NO YES
    SYSTEM TRIPOA_READ YES YES
    SYSTEM DBA YES YES
    SYSTEM TRIPOA_WRITE YES YES
    SYSTEM AQ_ADMINISTRATOR_ROLE YES YES
    SYSTEM TRIPOA_EXEC YES YES
    SYSTEM PRIV_DML_STUDENTSLOG YES YES
    SYSTEM PRIVILEGE_ALL_TRIPOA YES YES
    8 linhas selecionadas.

  • Problem to run forms from URL

    Hello all:
    I need help to solve this problem, I great URL to run forms from browser , then I teak the URL and go to another machine. When I run the URL the browser closed and gives message to send report to Microsoft or not. I tray this again and the browser closed again and give the same message.
    I teak the URL and make it as link to call forms java code ,then before the forms started the browser closed again and give the same message.
    So please can anyone help me in this.
    Thanks for anticipation.

    hello Gerd Volberg :
    thanks for replying, i use database and forms 10g Release 2 .the application server is oracle application server 10g Release 2 (10.1.2).
    the url is
    http://localhost:8889/forms/frmservlet?config=spewin&userid=hr/hr@orcl&form=E:\final_form\test.fmx&otherparams=USID=10070+COMID=5554442075
    thanks

  • Problem in running Job through Sqlplus

    Hi,
    I'm trying to run sequence of sql statments to run a job. At the end of this i'm getting error, anyone can help me out on the same.
    -- Creating a table with a column cob.
    create table gob(cob number(5))
    -- Procedure to insert a value 100 in table gob
    create or replace procedure autoins IS
    begin
    insert into gob values(100);
    end;
    -- PL-SQL block to create & submit a job.
    VARIABLE jobno number;
    BEGIN
    DBMS_JOB.SUBMIT(:jobno, 'autoins ;',
    SYSDATE, 'SYSDATE + 1');
    COMMIT;
    END;
    At the end of it i'm getting following error,
    BEGIN
    ERROR at line 1:
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "SYS.STANDARD", line 586
    ORA-06512: at line 2
    Anyone can help ???????
    Regards,
    Ashish.

    Hi Garcia,
    Thanks a lot for this help. Acutally "select count(1) from dual" was returning 3 initally so i have used delete statement twice and now its returning only one value. Though problem is solved but still i couldn't understand the cause of this.
    Thanks a lot again.
    Regards,
    Ashish.

  • Submitting jobs from OEM

    Hi !
    After hours of hard work, i got my agent up and running,
    (fixing ownership of files etc.)and was pleased to see the auto-
    discover function working properly. But... when trying to submit
    a job, it failed with the message "error processing the job que".
    I am using OEM 1.4.
    Will it help to upgrade to OEM 1.X ?
    John
    null

    Hi!
    I'm using OEM 1.6, but I get a similar message: "error accessing
    job queue"...
    Using Oracle 8.0.5 (shipping), with SuSe 5.3.
    Any help would be appreciate,
    Thomas
    John S. Henriksen (guest) wrote:
    : Hi !
    : After hours of hard work, i got my agent up and running,
    : (fixing ownership of files etc.)and was pleased to see the
    auto-
    : discover function working properly. But... when trying to
    submit
    : a job, it failed with the message "error processing the job
    que".
    : I am using OEM 1.4.
    : Will it help to upgrade to OEM 1.X ?
    : John
    null

  • Error while running job from artjesadmin of Tuxedo Batch Runtime

    Hi,  when I submit the job by entering artjesadmin>smj -i ../JCL/HELLO_WORLD_JCL.ksh , I am getting below error in Job LOG;
    JOB SK127YSM BEGIN AT 2013/05/31 09:50:56
    BEGIN PHASE START AT 2013/05/31 09:50:56
    END PHASE START AT 2013/05/31 09:50:56 (RC=C0000, JOBRC=C0000, ELAPSED=0)
    BEGIN PHASE STEP01 AT 2013/05/31 09:50:56
    RUNB BEGIN :
    RUNBATCH BEGIN :
    +>> Program BEGIN : SAMPL+
    ERROR    mi_ProgramExec: The program execution has an error (SAMPLE)
    END PHASE STEP01 AT 2013/05/31 09:50:58 (RC=U0900, JOBRC=U0900, ELAPSED=2)
    BEGIN PHASE END_JOB AT 2013/05/31 09:50:58
    END PHASE END_JOB AT 2013/05/31 09:50:58 (RC=C0000, JOBRC=U0900, ELAPSED=0)
    JOB ENDED ABNORMALLY WITH CODE (U0900) AT 2013/05/31 09:50:58
    ERROR    mi_FileEmpty: The type UNKNOWN of file is unknown
    mi_JobEnd: Internal Error (mi_FileEmpty -r mt_FileEmpty "/root/workspace/app/00000001/SYSOUT/HELLO_WORLD_JCL_00000001__SYSPRINT_1") RC=123
    Does any one know 's why we get this error and what does RC=U0900 represent.
    Also I checked m_ProgramExec API in /ejr directory and this file doesn't have any statement to execute the program name passed to it as parameter.

    I think I have got whats the problem .
    Syntax for calling m_ProgramExec is "m_ProgramExec [OPTIONS] Program [Args .....] ". And when this API is called it checks the number of arguments and I think its expecting miminum 2 args . When I ran the converted .ksh with m_ProgramExec SAMPLE  it gave error as specified above. But when I corrected the converted .ksh with m_ProgramExec SAMPLE "agrs"  . Then it ran successfully. (though the arguments were dummy)
    Thanks Bob for your help.
    Regards,
    Naresh Gupta.

  • Problem when running webdynpro from Internet explorer 8

    Hello Dear all,
    I created a webdynpro and everything i created is right. when i load the webdynpro (F8) to internet explorer 8 i can see the webdynpro . But the IE 8 screen shows no reaction. I thought that my webdynpro was wrong. But i ran the webdynpro from my officemates computer and in his IE 8 the mentioned Webdynpro works perfect! The problem is only the Internet explorer 8 .
    I would appreciate your soon answers.
    Alfito

    I read this website
    https://websmp230.sap-ag.de/sap(bD1kZSZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1530264
    and i set the zoom to 100% and my problem is solved. How absurd! i almost uninstalled the browser. Best regards
    alfito

Maybe you are looking for

  • STAR TREK moving stars effect?  Plug-in or tip how to do it

    I need to create the classic STAR TREK moving stars like seen in the original series and/or STAR TREK II: THE WRATH OF KHAN. Is there a plug-in ready-made for this or is there a secret? Much appreciated.

  • Category Updation in Blanket PO Lines

    Hi, I have an urgent requirement to update Category for the items in Blanket Purchase Orders Lines. We have updated the Categories of Items @ Item Master Level. But now we want to update Item Category on blanket po's lines as well... interface is not

  • Is there a way to add a Thunderbolt port to a early 2010 iMac?

    I don't care about the display but I'd like to get one of the new Thunderbolt disk arrays. TIA

  • Layout and ap div in Dreamweaver CC

    where is the layout panel and where is the draw ap div button in Dreamweaver cc? i hope it's hidden but not been taken away help please

  • Logical file datasource/Infopackage

    Hi experts, I have an infopackage loading file from AL11 server to a DSO. Sometimes the loading fails. All those steps are automated in a process chain. What i would like to do, if the loading fails is to send an email to the person that uploaded the