Dbms job wksys.wk_job.invoke(1,1) for replication?

I am monitoring a database I did not create and I noticed this job
wksys.wk_job.invoke(1,1) running with another wksys.wk_job.invoke(1,2)
running.
These servers are running replication, can I assume this job is for replication?

User WKSYS seems related to Ultra Search, of which you can learn a bit more at Ultra Search
Daniel

Similar Messages

  • Enable DBMS JOB EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS for DB Control

    Hi all,
    I'm getting the below warning message in enterprise manager home at one of the nodes of RAC.
    The Availability calculations for the cluster database target are disabled. Please enable the DBMS JOB EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS for Database Control.*
    What does this mean ? Any idea ?
    Thanks in advance.
    Dhaval.

    Hi there,
    The reason I found for this warning was that EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS() was broken.
    I fixed it by executing DBMS exec DBMS_JOB.RUN(<<job number>>);
    where job number can be obtained from select job,broken,what,log_user,schema_user from dba_jobs;
    Thanks for all your efforts.
    Regards,
    Dhaval.

  • For dbms job

    Hi
    All,
    I have oracle 10.2.0.3 on solaris OS.
    I am doing import of MED schema in database
    1) does it import all dbms job too?
    2) where this DBMS job stored?
    3) How can I stop all jobs that belongs to MED schema?
    Thanks,
    Vishal

    To stop a job, without removing it from the job queue, you can mark it as BROKEN.
    Thus, to mark job 20 as broken, execute
    DBMS_JOB.BROKEN(20,TRUE);You can even change the NEXT_DATE for the job with the third parameter to DBMS_JOB.BROKEN.
    To re-enable the job later, execute
    DBMS_JOB.BROKEN(20,FALSE);If the NEXT_DATE has already passed, Oracle will start running the job immediately.
    Note : DBMS_JOB.BROKEN must be executed by the Job Owner account (ie "med").
    To prevent Oracle from running any jobs while still importing data, you can set JOB_QUEUE_PROCESSES to 0 (with an ALTER SYSTEM command executed by the DBA) and then set it back to 1 or higher when you want the job facility to resume.

  • How to monitor the activitis dbms job for oracle 9i

    Hi Expert,
    How can i monitor or received notification from the dbms job is whether run sucess or fail for oracle 9i db. Apreciate u guy can assist me.
    Regard
    william

    Hi,
    if any job broken you can configure email option using dbms package or OEM....
    have a look in this link how to configure email alerts through dbms package..
    http://www.sixwhits.com/documentation/SuggsDocs/Oracle/Oracle/Tom%27s%20Book%20CD/5254AppAEfinal.pdf
    you can configure alerts from OEM
    http://download.oracle.com/docs/cd/B16240_01/doc/em.102/e10954/notification.htm
    Thanks

  • Dbms job change in schedule time

    Hi
    Just not sure about the dbms jobs reschedule on oracle 11g on linux ..
    I have a dbms job running every day by hour 20 now i want to change it to 23 hours for today and again back to normal hour 20.
    can some one help me in the working steps for this to happen .
    Thanks in advance
    Edited by: 790072 on 12/06/2012 19:02

    >
    I have a dbms job running every day by hour 20 now i want to change it to 23 hours for today and again back to normal hour 20.
    >
    Use the DBMS_JOB.CHANGE procedure to change the next job time.
    See the example in the DBMS_JOB chapter of the packages and types doc
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28419/d_job.htm
    Search for CHANGE Procedure and follow the example
    >
    Usage Notes
    •You must issue a COMMIT statement immediately after the statement.
    •The parameters instance and force are added for job queue affinity. Job queue affinity gives users the ability to indicate whether a particular instance or any instance can run a submitted job.
    •If the parameters what, next_date, or interval are NULL, then leave that value as it is.
    Example
    BEGIN
    DBMS_JOB.CHANGE(14144, null, null, 'sysdate+3');
    COMMIT;
    END;

  • PLSQL DBMS JOB - how to schedule ?

    Hi, I came across the process type "PLSQL DBMS JOB" - how can I schedule it within APEX?
    I understood using PLSQL DBMS JOB it just executes once and thats it.
    I like to use the process PLSQL DBMS JOB to execute once a day and call a procedure I have defined already. A code example wud be v.m. appreciated.
    TIA
    Bernhard

    First you need to make sure your init.ora has the following things defined<br><br>
    job_queue_processes=2<br>
    job_queue_interval=10<br>
    <br>the value above are recommended by Oracle<br><br>when I did this and restarted the database with the new init.ora (or pfile) it said something was no longer used so what I am suggesting above may not be entirely required but it seems to have worked for me...
    <br><br>
    then its just a case of executing the following<br><br>
    declare<br>
    jobno number;<br>
    BEGIN<br>
    dbms_job.submit(JobNo, 'begin my_thing_to_execute; end;', SYSDATE,
    'SYSDATE + 1/24');<br>
    COMMIT;<br>
    dbms_output.put_line(jobno);<br>
    END;<br>
    <br>
    the first sysdate is when to run next, the second sysdate+1/24 is how often to run so this is saying run hourly. if you want daily then it would be just +1.<br><br>that should get ya going to start with anyway. it can pay to put a little insert into a dummy table in your code that you want the dbmsjob to execute so then you know for sure that its working.<br><br>if you are talking about a dbms job thing in APEX then this is probably irrelevant as this is a dbmsjob in the database, not through APEX

  • RAC and DBMS jobs

    We have 4 node 9iRAC and running majority of our jobs using DBMS jobs scheduler.
    I was wondering, how does oracle do load balancing for DBMS jobs.
    Some time I see node one taking the most of the load ?
    Thanks
    -Ashok

    In 10g it's the dbms_scheduler which is service name aware. Just define the job_class and associate it with a specified service.
    DBMS_JOB.INSTANCE or DBMS_JOB.CHANGE is about the only built in tools that you have to work with in the 9I version.

  • DBMS Job failing with "active autonomous transaction detected"

    Hi,
    I am posting this for a customer issue. I posted this in the PL/SQL forum and was suggested to post it in this forum as this is a portal provided code.
    DBMS Job WWV_context is failing after install of 10.1.2.0.2 MR Repo install
    ORA-12012: error on auto execute of job 357~ORA-06510: PL/SQL: unhandled user-defined exception~ORA-06512: at "PORTAL.WWERR_API_EXCEPTION", line 71~ORA-06512: at "PORTAL.WWV_CONTEXT", line 1757~ORA-06510: PL/SQL: unhandled user-defined exception~ORA-06512: at "PORTAL.WWERR_API_EXCEPTION", line 71~ORA-06512: at "PORTAL.WWV_CONTEXT", line 1837~ORA-06519: active autonomous transaction detected and rolled back~ORA-06512: at line 1
    Thanks
    Sathya

    Hi,
    I am posting this for a customer issue. I posted this in the PL/SQL forum and was suggested to post it in this forum as this is a portal provided code.
    DBMS Job WWV_context is failing after install of 10.1.2.0.2 MR Repo install
    ORA-12012: error on auto execute of job 357~ORA-06510: PL/SQL: unhandled user-defined exception~ORA-06512: at "PORTAL.WWERR_API_EXCEPTION", line 71~ORA-06512: at "PORTAL.WWV_CONTEXT", line 1757~ORA-06510: PL/SQL: unhandled user-defined exception~ORA-06512: at "PORTAL.WWERR_API_EXCEPTION", line 71~ORA-06512: at "PORTAL.WWV_CONTEXT", line 1837~ORA-06519: active autonomous transaction detected and rolled back~ORA-06512: at line 1
    Thanks
    Sathya

  • Problem with PLSQL dbms job in apex

    Hi,
    I am completely new to apex, and am facing a issue which i feel is strange.
    There is a button on the apex page and a process is associated with that button. Some tables are being updated in the code written in that process and a db procedure is called which creates some files on the unix box(utl_file). The type of that process is PLSQL DBMS job.
    Now its been observed that the code written on that button is executed at odd times i.e no one made any action on the button.
    So my questions are,
    Is this PLSQL DBMS job same as that of the database dbms_job?? but the logs have no entry.
    Is there a case when the button might be pressed earlier but the job executed late because of resources not being available?
    Any logs created by apex so that i can track the job??
    Any idea if i can replace this plsql dbms job with any other process type??
    Secondly, there are 4 files being generated out of which 3 are generated with 644 permission and 1 file is generated with 600. Why does this happen?
    Apex version :3.1
    db version: 10.2.0.4
    Regards,
    Ankit

    Looks like it's still a database bug. In 10.1.0.4, I get the correct results in sqlplus from the query but I get incorrect results in sqlplus if I do it like this:set serveroutput on
    declare
        l_cursor    integer := DBMS_SQL.OPEN_CURSOR;
        l_desc_tbl  DBMS_SQL.DESC_TAB2;
        l_ignore    number;
        l_col_cnt   integer;
        l_col_val   varchar2(32767);
    BEGIN
        DBMS_SQL.PARSE(l_cursor,
    'select connect_by_isleaf LEAF,DESCRIPTION,PLACE from test_tab start with id = 1 connect by prior id = id_master',
            DBMS_SQL.NATIVE);
        l_ignore := DBMS_SQL.EXECUTE(l_cursor);   
        DBMS_SQL.DESCRIBE_COLUMNS2(l_cursor, l_col_cnt, l_desc_tbl );
        for i in 1 .. l_col_cnt loop              
            DBMS_SQL.DEFINE_COLUMN(l_cursor, i, l_col_val, 32767 );
        end loop;
        while (DBMS_SQL.FETCH_ROWS(l_cursor) > 0)
        loop
            for i in 1 .. l_col_cnt loop
                DBMS_SQL.COLUMN_VALUE(l_cursor, i, l_col_val);           
                -- print the column value
                dbms_output.put_line(l_col_val);
            end loop;
            dbms_output.put_line(chr(10));      
        END LOOP;
        if DBMS_SQL.IS_OPEN(l_cursor) then
            DBMS_SQL.CLOSE_CURSOR(l_cursor);
        end if;
    END;
    /Scott

  • Return Completion Message from DBMS Job

    I have an application that includes a button that creates a dbms job. Is it possible to display a message in the HTML DB application when the job completes on the back-end?
    Currently, if you add a success message to the button, it will come back right away with "Success" since the application successfully submitted the job. I would like for a message to be returned when the job actually completes (whether it be 1 minute or 1 hour from the time it was submitted.)
    Any ideas?

    Is this a one shot job or a recurring job?
    If it is a recurring job, you would probably have to create another job to poll the user_jobs view every so often to determine whether it has run or not. If it is a one shot deal, you would have to store the job number in either an application item or a database table. If you store it in an application item, the user will have to keep the app "open" (assuming it takes an hour) or else it will be cleared from session state.
    Storing the job number in a database table, along with the userid, and then checking to see whether the job exists in user_jobs would probably be the best way. You could create a "success" message on Page 0 and set it only to display when the job doesn't exist. That would allow the user to close the app and come back to it later. Of course you would have to delete the row in the table when it is displayed otherwise it will always be there.
    Anyway, just thinking out loud...
    chet

  • Dbms job vs unix job

    Hi all
    I have a big discussion going on in our team with dbas and developers.....
    we have some tasks such as dropping partitions on a monthly basis and clean up of log tables in the database that have to be scheduled on a monthly basis.
    we have written stored procedures to do such tasks
    Now a simple dbms scheduler would do the scheduling part ... but dba's are proposing that they do not accept such dbms jobs on the db servers and suggestin us to
    create a unix shell script on other application server and connect to the databse through the script. and schedule the script through controlm or autosys tool.
    why cant we leverage dbms jobs to do these tasks.... and going for a complex soltuion
    what is best solution?

    I don't know about RAC, but I would think that Oracle has made DBMS_Scheduler RAC-aware. Worth looking into.
    As for monitoring, of course they can monitor it! ("They" are DBA's, yes?) Grid Control or OEM will show DBMS_JOB/SCHEDULER information as it will your SQL Plus query.
    I don't understand how the tasks you describe in your first post are not "core" DBA functions, so even if they have the policy you say they have, why do your tasks not fit nicely into the things the DBAs say they want to do in the database? Specifically, +"we have some tasks such as dropping partitions on a monthly basis and clean up of log tables in the database that have to be scheduled on a monthly basis."+
    I found an interesting thread on the topic as well. Re: DBMS scheduler v/s Cron
    Given that people are asking how to make things run on the same node in the following thread, it looks like by default it will not be stuck running on the same RAC node every time (but for performance reasons it appears to have a slight bias to do so).
    dbms_scheduler on RAC database
    Edited by: Gaff on Apr 7, 2010 10:39 AM

  • Set a dbms job which will flush the shared pool on box everyday 12.00am on

    Hello ,
    i want to set dbms job to flush shared pool everyday at 12.00 am on windows box.
    so can you please provide me script for that or idea on that.
    also i want to know where i have to set that job on sys or system or in user account.
    Thanks

    Receiving the 404 on box. Since the Oracle 404 error is
    ORA-00404: Convert file not found: "string"
    Cause: The file used for converting the database from V7 to V8 could not be found.
    Action: Verify that the migration process has been started on this database and that the convert filename is accessable.
    I'm going to go out on a limb and assume that you're talking about the HTTP 404 (Not Found) error. If that's the case, that would seem to be an issue with your web server/ web application and not with the database. Why do you believe that the database has any involvement with the error you're getting or that flushing the shared pool will resolve the error?
    Justin

  • Does DBMS.JOB affect Performance

    Dear experts
    Please tell me Does DBMS.JOB affect Performance.

    Can you detail what performance you are talking about.
    DBMS_JOB is simply a scheduler, whcih you can use for your repeated uattended job initiation.which is nt going to impact the performance.
    Probably the actual Job if intensive can hit your performance.

  • ABAP process job ( BI_PROCESS_ABAP ) in process chain running for long time

    Dear Experts,
    We have an ABAP process job  BI_PROCESS_ABAP  in a process chain. This job is running for a very long time than previous run time.
    Recently we had an ORACLE database upgrade from 9.2 to 10g.
    From the very next day , we are having this problem.
    And also previously this process-chain was under control of BASIS guys . they were using a tool called CRONACLE to schedule it. At the time of upgrade this tool was crashed and they asked us to schedule it in BW system instead.
    Underlying program is using two custom tables.
    one is having both primary & secondary indexes but the other table is having only primary index.
    I am not sure whether we have secondary indexes on other table prior to upgrade or not.
    Where must be the problem?...
    At the time of upgrade BASIS has re-organized the table space along with database upgrade.
    please help me...
    Regards,
    SRIKANTH

    Please ask yr basis consultant to check the system parms.
    Below i have listed down SAP recommneded system parms .
    abap/heap_area_total 4000000000
    abap/heap_area_dia 2000000000
    abap/heap_area_nondia 2000000000
    Also check in SM37 if any other jobs are running for long time, peventing the your job running.
    Check the SM12 for locks or SM58

  • How to invoke alt-text for images in a PDF file by Automation

    Hi,
    Can any one help me?
    How to invoke Alt-text for Images in a PDF file using script?
    Thanks for looking into this.
    Regards,
    Sudhakar

    What do you mean "invoke" alt-text?  If Alt-text is there, then it will be presented to a screen reader.

Maybe you are looking for

  • Mass Deletion of Schedule Lines

    Dear Friends, Our client's requirement is to mass delete the schedule lines generated through MRP by wrong production schedule. They want to delete it once in a month. regards, Ask

  • ABAP Performance standards good piece

    ABAP Performance Standards Following are the performance standards need to be following in writing ABAP programs: <b>1. Unused/Dead code</b> Avoid leaving unused code in the program. Either comment out or delete the unused situation. Use program -->

  • How do i tell if ports scanned?

    There are some programs that can tell if someone is scanning your ports- any idea how I can create such a program using Java? I really wonder how they do it because they can't have an object to listen to all 50,000+ ports simultaneously that would be

  • Wscompile - error: in message "SystemSupportException", part "fault" ...

    Hey, did anybody ever face this problem? I am working on it since hours, but cannot find any solution. my wsdl was generated from websphere studio application developer 5.1.2. and now I run wscompile and get these error messages. when I compile my ws

  • Urgent need lsmw with directinput

    hi folks, i am in urgent need i am using the program RSADRLSM02 for the uploading of the bisiness address services/regionla structure with lsmw using directinput method i finished all the steps but at the end i am getting struck it is asking for the