Job Scheduling using server pool

Is there any way to use a pool of servers for job scheduling?
I know you can tell it the target server you want, but I want it to find an available server from a list.
The reason is, the job runs software on the app server.  Not all app servers have this software installed.  But it is installed on more than one.  I want it to find an available server, but only one that has the software installed.  It would be great to somehow define a pool of servers where the job can run.
I don't think I can get creative with job class.  This looks at all work processes on all servers. 
If I go this way, I'd have to set all work processes as A on the servers I don't want to use, and set my job as B.  That is definately not an option.
Any ideas?
Thanks

Hello dskdell,
I guess u want to use some kind of load balancing with the background servers,
well when u define a job,dont give the server name there,then it will look for the available server and schedule the job there
" Although a job can specify to use a particular background server (an application server that has at least one background work process), it is best to allow the background processing system to use load balancing to distribute the workload among the available servers"
Refer to http://help.sap.com/saphelp_nw70/helpdata/en/4a/2d513897110872e10000009b38f889/frameset.htm
Hope it helps
Rohit

Similar Messages

  • Job scheduling using dbms_scheduler.create_job

    hi all experts,
    i am really grateful to you for your responses, now have a look at this, i have created a job with "dbms_scheduler.create_job" and blow is the output from view "dba_schduler_jobs" why it is showing run_count to '0'...i have gone through all provided links like:
    Answers to "Why are my jobs not running?"
    and applied and checked all parameters, i am using oracle 10.2.0.1.0 on windows server 2003 32-bit
    SQL> BEGIN
         DBMS_SCHEDULER.CREATE_JOB (
             job_name => 'clouser'
            ,job_type => 'PLSQL_BLOCK'
         ,job_action => 'begin package.procedure("po_closure"); end;'
         ,start_date => to_date('17-04-2009 22:00:00', 'dd-mm-yyyy hh24:mi:ss')
         ,repeat_interval => 'FREQ=DAILY;byminute=10'
         ,enabled => TRUE
         ,comments => 'op closure everyday at 11PM'
    END;
    PL/SQL procedure successfully completed.
    SQL> select owner,job_name name,run_count run,start_date
      2  from dba_scheduler_jobs
      3  where owner='FINANCEDEV';
    OWNER                          NAME                                  RUN
    START_DATE
    FINANCEDEV                     CLOUSER                                 0
    17-APR-09 02.45.10.000000 PM +05:30
    FINANCEDEV                     CLOUSER_MAIN                            0
    18-APR-09 10.25.00.000000 AM +05:30
    FINANCEDEV                     CLOUSER_MAIN1                           0
    18-APR-09 10.45.00.000000 AM +05:30
    OWNER                          NAME                                  RUN
    START_DATE
    FINANCEDEV                     CLOUSER_MAIN4                           0
    18-APR-09 10.45.00.000000 AM +05:30
    FINANCEDEV                     CLOUSER_MAIN5                           0
    18-APR-09 10.43.00.000000 AM +05:30the time i scheduled has already passed, and i am checking it again and again, but no luck,can you please explain why is it so??
    thanks in advance
    thanks and regards
    VD
    Edited by: vikrant dixit on Apr 17, 2009 10:33 PM

    Hello,
    I should have asked only for next_run_date and state and failure_count. Do you see any value for failure_count column. Seems you have a failure in running of this job and whereever are you , what's the time?
    You can also run this job manually using and see if run_count goes up or failure and it schedules the job for tommorrow as well.
    exec DBMS_SCHEDULER.RUN_JOB('CLOUSER',TRUE);Based on your information, your next_run_date should be set to 19 APr @ 12:10 AM.
    Here is example based on your information
    BEGIN
       sys.DBMS_SCHEDULER.create_job (
          job_name          => '"SCHEMA_NAME"."CLOUSER"',
          job_type          => 'PLSQL_BLOCK',
          job_action        => 'DECLARE
    begin
      po_closure varchar2(..) := ''some_value'';
      schema_name.package_name.procedure(po_closure);
    commit;
    end;
          repeat_interval   => 'FREQ=DAILY;BYMINUTE=10;BYSECOND=0',
          start_date        => SYSTIMESTAMP AT TIME ZONE 'US/Eastern',
          job_class         => 'DEFAULT_JOB_CLASS',
          auto_drop         => FALSE,
          enabled           => TRUE
       sys.DBMS_SCHEDULER.set_attribute (name        => '"SCHEMA_NAME"."CLOUSER"',
                                         attribute   => 'restartable',
                                         VALUE       => TRUE);
       sys.DBMS_SCHEDULER.enable ('"SCHEMA_NAME"."CLOUSER"');
    END;Regards

  • Job Scheduling using job_close

    Hi gurus,
    im trying to scheduke several jobs using the FM Job close, but the jobs are running paralel..
    The first job its' schedule with a start date or imediate, and the letf ones are schedule to start after his precessor finish, but once i run the programa 4 jobs start running ...
    Can any one help me on this?
    Below goes my code...
      DO njobs TIMES.
    **Nome de Job
        CLEAR: jobname, jobcount, job_release.
        CLEAR: job_imediate, str_job.
        ADD 1 TO ind_job.
        WRITE ind_job TO str_job.
        CONCATENATE 'EXECORC' sy-uname sy-uzeit str_job
                     INTO jobname SEPARATED BY '-'.
        CALL FUNCTION 'JOB_OPEN'
             EXPORTING
                  jobname          = jobname
             IMPORTING
                  jobcount         = jobcount
             EXCEPTIONS
                  cant_create_job  = 1
                  invalid_job_data = 2
                  jobname_missing  = 3
                  OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE i003(zmapas).
          EXIT.
        ENDIF.
        IF gv_global EQ 'X'.
    **Submit job
          SUBMIT z_mapa_execucao_orcamental
                 VIA JOB jobname NUMBER jobcount
                 WITH ano EQ ano
                 WITH so_perio IN so_perio
                 WITH so_date IN so_date
                 WITH so_org EQ so_org
                 WITH so_num IN so_num
                 AND RETURN.
        ELSE.
    ***Limites
          CLEAR: upper_bound, lower_bound.
          upper_bound = njobs * ind_job.
          lower_bound = upper_bound - njobs + 1.
          CLEAR so_num.
          REFRESH so_num.
          LOOP AT tab_prog FROM lower_bound TO upper_bound.
            so_num-sign = 'I'.
            so_num-option = 'EQ'.
            so_num-low = tab_prog-zlinha.
            APPEND so_num.
          ENDLOOP.
          SUBMIT z_mapa_execucao_orcamental
                 VIA JOB jobname NUMBER jobcount
                 WITH ano EQ ano
                 WITH so_perio IN so_perio
                 WITH so_date IN so_date
                 WITH so_org EQ so_org
                 WITH so_num IN so_num
                 AND RETURN.
        ENDIF.
        IF ind_job EQ 1.
          IF stdt_output-startdttyp EQ 'I'.
            job_imediate = 'X'.
          ENDIF.
          CALL FUNCTION 'JOB_CLOSE'
               EXPORTING
                    jobcount             = jobcount
                    jobname              = jobname
                    sdlstrtdt            = stdt_output-sdlstrtdt
                    sdlstrttm            = stdt_output-sdlstrttm
                    strtimmed            = job_imediate
               IMPORTING
                    job_was_released     = job_release
               EXCEPTIONS
                    cant_start_immediate = 1
                    invalid_startdate    = 2
                    jobname_missing      = 3
                    job_close_failed     = 4
                    job_nosteps          = 5
                    job_notex            = 6
                    lock_failed          = 7
                    OTHERS               = 8.
          IF sy-subrc <> 0.
            MESSAGE i003(zmapas).
            EXIT.
          ELSE.
            CLEAR: predjob, predjobcount, stdt_output.
            predjob = jobname.
            predjobcount = jobcount.
            MESSAGE s004(zmapas) WITH jobname.
          ENDIF.
        ELSE.
          CALL FUNCTION 'JOB_CLOSE'
               EXPORTING
                    jobcount             = jobcount
                    jobname              = jobname
    *                predjob_checkstat    = 'X'
                    pred_jobcount        = predjobcount
                    pred_jobname         = predjob
    *                strtimmed            = 'X'
               IMPORTING
                    job_was_released     = job_release
               EXCEPTIONS
                    cant_start_immediate = 1
                    invalid_startdate    = 2
                    jobname_missing      = 3
                    job_close_failed     = 4
                    job_nosteps          = 5
                    job_notex            = 6
                    lock_failed          = 7
                    OTHERS               = 8.
          IF sy-subrc <> 0.
            MESSAGE i003(zmapas).
            EXIT.
          ELSE.
            CLEAR: predjob, predjobcount, stdt_output.
            predjob = jobname.
            predjobcount = jobcount.
            MESSAGE s004(zmapas) WITH jobname.
          ENDIF.
        ENDIF.
    Thanks in Advance,
    Best Regards,
    João Martins

    Hello.
    First of all, parameter predjob_checkstat makes the second job to start only if the previous one ends without error. Probably this solves your problem at all ... the second waits to the end of the first to see if it ended with error or not.
    I was analysing your problem. Parameter strtimmed can only be set in the first JOB_CLOSE. All the others cannot have this parameter set to 'X' if you want them to wait for the end of the previous ones.
    So, try predjob_checkstat = 'X' and strtimmed = space.
    Also, I have one example that is working:
    *** Escalona um JOB para cada ficheiro encontrado.
        LOOP AT t_processar.
          CLEAR: w_jobcount, w_jobname, l_liberado.
          ADD 1 TO l_conta.
          MOVE l_conta TO l_conta2.
          CONDENSE l_conta2.
          CONCATENATE t_jobs-jobname l_conta2 INTO w_jobname.
          CALL FUNCTION 'JOB_OPEN'
               EXPORTING
                    jobname          = w_jobname
               IMPORTING
                    jobcount         = w_jobcount
               EXCEPTIONS
                    cant_create_job  = 1
                    invalid_job_data = 2
                    jobname_missing  = 3
                    OTHERS           = 4.
    ***   Criou-se o JOB com sucesso
          IF sy-subrc = 0.
            CLEAR seltab_wa.
    ***     Monta o parâmetro
            MOVE: t_jobs-param TO seltab_wa-selname,
                  t_processar-line+34 TO seltab_wa-low.
            APPEND seltab_wa TO seltab.
            seltab_wa-selname = 'P_LOJA'.
            seltab_wa-low = t_processar-ficheiro+7(4).
            APPEND seltab_wa TO seltab.
    ***     Submete o programa para o JOB
            SUBMIT (t_jobs-repid)
                   WITH  SELECTION-TABLE seltab
                   USER sy-uname
                   VIA JOB w_jobname NUMBER w_jobcount
                   AND RETURN.
    ***     Encerra o JOB
            IF l_conta EQ 1.
              l_hora = sy-uzeit.
              ADD 120 TO l_hora.
              CALL FUNCTION 'JOB_CLOSE'
                   EXPORTING
                        jobcount             = w_jobcount
                        jobname              = w_jobname
                        sdlstrtdt            = sy-datum
                        sdlstrttm            = l_hora
                        targetserver         = w_servidor
                   IMPORTING
                        job_was_released     = l_liberado
                   EXCEPTIONS
                        cant_start_immediate = 1
                        invalid_startdate    = 2
                        jobname_missing      = 3
                        job_close_failed     = 4
                        job_nosteps          = 5
                        job_notex            = 6
                        lock_failed          = 7
                        OTHERS               = 8.
            ELSE.
              CALL FUNCTION 'JOB_CLOSE'
                   EXPORTING
                        jobcount             = w_jobcount
                        jobname              = w_jobname
                        predjob_checkstat    = 'X'
                        pred_jobcount        = w_jobcount2
                        pred_jobname         = w_jobname2
                        targetserver         = w_servidor
                   IMPORTING
                        job_was_released     = l_liberado
                   EXCEPTIONS
                        cant_start_immediate = 1
                        invalid_startdate    = 2
                        jobname_missing      = 3
                        job_close_failed     = 4
                        job_nosteps          = 5
                        job_notex            = 6
                        lock_failed          = 7
                        OTHERS               = 8.
            ENDIF.  "l_conta eq ...
          ENDIF. "sy-subrc = 0 do JOB-OPEN
          w_jobname2  = w_jobname.
          w_jobcount2 = w_jobcount.
          PERFORM f_limpa_param.
        ENDLOOP. "at t_processar
    Regards.
    Valter Oliveira.

  • Trigger mail for cancelled background jobs scheduled using SM37

    Dear Experts,
    My requirement is to trigger email whenever a job gets cancelled in background.
    For this I have already tried creating a workflow using BO BPJOB for event ABORTED.
    But for some reason the event is never getting triggered.
    I tested executing the workflow from tcode SWDD, it was running successfully, which means that there is no issue with my workflow.
    Now I want to resolve the above issue   OR
    I want to raise the event manually from the program through some BADI or Exit.
    But I didn't find any BADI or Exit for tcode SM37. Can anybody let me know if any.

    Hi,
    Please refer the below links.
    Workflow- Background job fail
    Re: Send mail when job fails
    Regards
    GK.
    Moderator message: please do not post just links without any further explanations.
    Edited by: Thomas Zloch on Sep 20, 2010 11:53 AM

  • Creating a VM using Oracle VM Server from Server Pool

    Hi All
    How do i create a VM from ISO using server pool (Discover and Register) option :
    1. copied the iso file to /OVS/seed_pool
    2. selected Server Pool option in VM Manager and Clicked "Next"
    3. Import ISO -
    i . Server Pool - Comes with no option
    ii . ISO Group - Comes with no option
    iii . ISO Label - Comes with no option
    Also
    I have some existing OEL4 and OEL 5 VM created on VMWare and Virtual Box respectively , now I wish to import them to Oracle VM ,how can i do so
    Please Help
    Thanks
    Raj

    HI All
    I am getting this error when trying to open the console for the VM
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    load: class VncViewer.class not found.
    java.lang.ClassNotFoundException: VncViewer.class
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed:https://192.168.1.73:4443/OVS/faces/app/VncViewer/class.class
         at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 7 more
    Exception: java.lang.ClassNotFoundException: VncViewer.class

  • Webview Job Scheduler Questions

    If you schedule a report to run in Webview - does the user have to be logged in to Webview for the report to run?
    Also - where do the reports actaully go?
    We are taking on a new business that wants some webview reports shceudled to run and dump to a location so they can grab them and import them into their own reporting database/dashboards.
    I know we have another customer that has something similar setup - but it was done by a 3rd party contractor before I was on the team.
    Thanks in advance.

    Hi Ronnie,
    Couple of things to note:
    Webview Job Scheduler uses Windows Task Scheduler to schedule reports
    As such, PC needs to remain on and the user who scheduled the job must be logged into WebView at the time the job is scheduled to be run (also needs to remain logged in if you are exporting to file and the drive you are exporting to is a mapped drive)
    User who is scheduling the reports needs to be an administrator of the machine they are scheduling from in order to create the Scheduled Tasks
    When you output locally to a drive letter. It automatically goes into a Drive:\Job_Scheduler\ directory
    Hope that helps. The requirement for local admin rights is a real pain as usually in most environments it's end business users who are trying to do this and IT departments don't like giving them local admin rights to their PCs...
    Cheers,
    Nathan

  • OVM-2020 Server pool master  can not be set to maintenance mode

    Hi Guys.
    I have 2 server in ha mode
    server 1 (10.99.99.161) with oracle Manager installed (server pool master, utility server, vm server)
    Server 2 (10.99.99.161) without Oracle Manager installed (utility server, vmserver)
    HA enable with server1 and server 2
    10.99.99.165 is the virtual server pool master
    1 San connected with server 1 and server 2.
    Without problem I can connect on https://10.99.99.165:4443/OVS without problem.
    All seems work, but :
    1 - I I try to set in maintenance mode the server 1, the VM Manager say me:
    OVM-2020 Server pool master (10.99.99.162) can not be set to maintenance mode, please use server pool master failover policy to change its role, then try again.
    What I shuld do ?
    2 - If I turn off the server 1 the server pool master is attribuite to server 2, but I'm unable to connect on https://10.99.99.165:4443/OVS webpage. It is correct, it is a bug, or I'm doing something wrong ? Must I upgrate something ?
    Many Thanks
    Luca

    user8857532 wrote:
    1 - I I try to set in maintenance mode the server 1, the VM Manager say me:
    What I shuld do ?You need to live migrate all your guests off the current Master server, then issue service ovs-agent stop on the command-line. This will cause the pool mastery to switch to another server. Once that's done, you can start the agent agent.
    2 - If I turn off the server 1 the server pool master is attribuite to server 2, but I'm unable to connect on https://10.99.99.165:4443/OVS webpage. It is correct, it is a bug, or I'm doing something wrong ? Must I upgrate something ?
    You need to ensure the VM that's running the Oracle VM Manager software is still running. Live Migrate it first (preferred option) and flag it HA-enabled so that it is automatically restarted in the case of a server failure.

  • Oracle clusterware server pools

    Hello Oracle fans!
    These days i've started reading the clusterware doc from here http://docs.oracle.com/cd/E11882_01/rac.112/e16794/toc.htm and since i didn't found to much info/examples of administrating server pools at the chapter II Administering Oracle Clusterware i decided to take a look on other resources like blogs& notes. Here http://www.dbametrix.com/oracle-11g-server-pool.html i found the folowing note:
    "New concept was introduced called server pools in Oracle RAC for managing RAC database in Oracle 11g RAC. Before Oracle 11.2 RAC, increasing and removing instances in RAC database is manual process. After introduction of server pool the new concept in Oracle 11g R.2, need to allocate new node in server pool only *because after that all tasks are being performed by server pool automatically*. *We can say that, prior of Oracle 11g R.2 RAC there was Database Administrator based management available because adding node to Clusterware, adding and removing instance from Oracle RAC, creating redo logs, control files, undo tablespace for specific new instance were done by Database Administrator. Nowadays from Oracle 11g R.2 RAC these all tasks are automated using server pool new feature of Oracle 11g RAC."*
    Since i dont have resources in my test env. to add a 3rd node for tests and hoping that the note is correct (or my undertstanding is ok), my question is : after configuring a new cluster node, the addition of a RAC instance on this resumes to adding a server in the server pool where the other RAC DB nodes "resides"??
    With the resources that i have i tested removing of one node from a 2 nodes RAC and adding it back , but the home files were already installed there !
    Thanks !

    Hello Oracle fans!
    These days i've started reading the clusterware doc from here http://docs.oracle.com/cd/E11882_01/rac.112/e16794/toc.htm and since i didn't found to much info/examples of administrating server pools at the chapter II Administering Oracle Clusterware i decided to take a look on other resources like blogs& notes. Here http://www.dbametrix.com/oracle-11g-server-pool.html i found the folowing note:
    "New concept was introduced called server pools in Oracle RAC for managing RAC database in Oracle 11g RAC. Before Oracle 11.2 RAC, increasing and removing instances in RAC database is manual process. After introduction of server pool the new concept in Oracle 11g R.2, need to allocate new node in server pool only *because after that all tasks are being performed by server pool automatically*. *We can say that, prior of Oracle 11g R.2 RAC there was Database Administrator based management available because adding node to Clusterware, adding and removing instance from Oracle RAC, creating redo logs, control files, undo tablespace for specific new instance were done by Database Administrator. Nowadays from Oracle 11g R.2 RAC these all tasks are automated using server pool new feature of Oracle 11g RAC."*
    Since i dont have resources in my test env. to add a 3rd node for tests and hoping that the note is correct (or my undertstanding is ok), my question is : after configuring a new cluster node, the addition of a RAC instance on this resumes to adding a server in the server pool where the other RAC DB nodes "resides"??
    With the resources that i have i tested removing of one node from a 2 nodes RAC and adding it back , but the home files were already installed there !
    Thanks !

  • --uuid restore & multiple server pools

    Greetings,
    Greetings, we have a 3.1.1 environment with 4 disparate server pools (105 servers - 400+ VMs) managed by one centralized Oracle VM Manager host. Each server pool is in a different data center.
    We would like to decentralize the management of each server pool (4 total) by standing up a local Oracle VM Manager host within each data center. We use OEM 12c for centralized management and will leverage Zones for role based access.
    The goal is to establish a local Oracle VM Manager host in each data center without downtime, i.e. move each pools management from the centralized Oracle VM Manager host to a local Oracle VM Manager in each data center without downtime.
    Would a --uuid install at each site allow us to decouple from the centralized Oracle VM Manager host and establish a local Oracle VM Manager host at each data center, i.e. move from one centralized Oracle VM Manager host, to a localized Oracle VM Manager host at each of the 4 sites?
    FAQs:
    a) currently we have one centralized Oracle VM Manager host managing all four server pools.
    b) each pool has localized SRs & networks, i.e. storage and networks are local to each data center.
    Thank you for your support!
    Edited by: Roddy Rodstein on Jul 31, 2012 9:49 AM

    Yes, you can have same servers part of separate server pools, however once server1 in pool1 is assigned then it can't be used again when assigning service profiles. This is done through a "Qualification" process.
    Why you might do this?  I'm taking this right from the configuration guide..
    A server pool contains a set of servers. These  servers typically share the same characteristics. Those characteristics  can be their location in the chassis, or an attribute such as server  type, amount of memory, local storage, type of CPU, or  local drive  configuration. You can manually assign a server to a server pool, or use  server pool policies and server pool policy qualifications to automate  the assignment.
    If your system implements multi-tenancy through organizations, you  can designate one or more server pools to be used by a specific  organization. For example, a pool that includes all servers with two  CPUs could be assigned to the Marketing  organization, while all servers  with 64 GB memory could be assigned to the Finance organization.
    HTH

  • Set Server Pool Master to Maintenance Mode

    Hi all,
    when trying to set a server pool master to maintenance, I got this: "OVM-2020 Server pool master (vm-13) can not be set to maintenance mode, please use server pool master failover policy to change its role, then try again."
    I have dug through the help and docs, but can not find a method for dynamically reassigning the server pool master role.
    This document: http://download.oracle.com/docs/cd/E15458_01/doc.22/e15441/server.htm#CCHIEBCE , just says "You must first reassign the Server Pool Master role to another server in the server pool.", without describing how.
    This document: http://download.oracle.com/docs/cd/E15458_01/doc.22/e15441/site.htm#insertedID4 , states "You can also dynamically change the Oracle VM Server which acts as the Server Pool Master without causing any outages. See Section 3.4.1, "Editing Server Pool".", which just links back to the same section I am already in.
    Now, I can just migrate all my machines and then stop ovs-agent, but I am not always the one managing this, and having a nice way through the web interface would be great.
    Please just tell me I am blind and point me to the section in the manuals which tells me how to do it, or is this a feature which got dropped before release?
    Thanks.

    I have got the same problem, I want to switch the role of the server pool master to another server in the same pool. But after reading these answers, I have absolutly no clue how to do it!
    We have a productiv environment, so any ideas like shutting down or stopping VMs are not acceptable.
    So here is the situation:
    "ovs#1" is hosting all VMs at the moment - Server type: Utility Server,Virtual Machine Server
    "ovs#2" is free of any VMs - Server type: Server Pool Master,Utility Server,Virtual Machine Server
    I want to switch the Server Pool Master from "ovs#2" to "ovs#1" without any downtime. How does this work? Thanks!
    Specifications:
    - Oracle VM Manager 2.2.0
    - Oracle VM server release 2.2.1
    Edited by: user11932329 on 15.09.2010 04:50

  • Job schedule question

    Hi:
    If I make a change to a job, will the scheduled job need to be re-activate for the new change to take effect? Or will BOBJ recognize the change without having to re-activate the scheduled job?
    Thanks in advance.

    You can change all the objects (like dataflows, workflows, ...) in the job, it will not affect the job schedule (so no need to re-activate).
    The job schedule uses the GUID to identify the job in the repo, this will not change when you modify objects in the job. So the next time the schedulesd job is executed it will get the new job definition automatically.
    - Ben.

  • Implementation of Batch Job Schedule in ADF

    Hi,
    How do I implement the job scheduler using Oracle ADF? What approach should I take to implement this. This includes printing of reports.
    Regards,
    Gareth

    You cannot set tow different times on a single day.
    This option is not available. If you want you can schedule the same publication two times with two different times.
    Seems to be a good option but not available
    Regards
    Gowtham

  • How to use CELLWRAPPER in 10g for scheduling the job in print server?

    Hi Gurus,
    I need to add CELLWRAPPER while printing a report to a delimited file from
    10G report server using 10G print server job scheduler. In 6i Its working fine.
    Below code I used in 10G.
    V_Cellwrapper := '''"''';
    Srw.Add_Parameter(v_Param_List, 'CELLWRAPPER' , V_Cellwrapper);
    v_Job := Srw.Run_Report (v_Param_List);
    But It is throwing error (ORA-20999). Please help.

    Hi,
    when I remember right, 20999 is in the range of user defined exceptions. So it's not an error message created by Oracle internally, it's created by a developer (might be in your case inside a trigger). So I would look in the database, when this exception is created. Is there no text with the error-message?
    Regards
    Rainer

  • Job Scheduler DS consumes all connections in Pool.

    Hi all,
    I use Weblogic 12.1.3.
    My objective is to create a job scheduler, with commonj Timer API to run a in a cluster environment.
    For this, I created a cluster with two node servers (I created this in the integrated weblogic server in Jdeveloper, for simplicity).
    Then I created the DataSource which points to the table where the weblogic_timers and active tables are, which are needed for persistance of the timers, targeted this DS on the nodes in the cluster, and then went to the Cluster -> Configuration -> Scheduling and selected the respective data source as "Data Source For Job Scheduler".
    After I do this and the servers are up, all the connections in the DS pool are consumed. It seems like connections are continuosly made from weblogic to the database.
    The connection itself seems ok, since I can connect from SQLDeveloper and also tested it when I created the DataSource.
    If I have a look in the logs of the two servers, I see errors like this:
    <BEA-000627> <Reached maximum capacity of pool "JDBC Data Source-2", making "0" new resource instances instead of "1".>
    Can you give me an idea of what the issue might be?
    Please let me know if I should provide more information.
    Thanks.

    It's not an issue WebLogic can address. The thortech application is independently using
    the UCP connection pool product, not WebLogic connection pooling, so Thortech APIs
    would be the only way to debug/reconfigure the UCP.

  • How to schedule multiple backup job through windows server backup in windows server 2008 R2

    hi expert,
    need your help, In my small  environment I am using windows 2008 R2 as a domain controller. and installed windows server feature for backup.
    Now i want to create backup at a different time.
    1. System state backup at 5.00 PM on saturday only
    2.  finance and hr data backup on daily basis at 5.00 PM.
    so how i create different job schedule through windows server backup.
    Regards,
    Triyambak
    Regards, Triyambak

    Scenario #1
    The following command will create a Task Scheduler task named
    DailyFolder1Backup with the start time of 23:00.
    This task will run DAILY with the HIGHESTprivileges. It will run the Windows Server Backup CLI to backup
    g:\folder1 to target volume
    F:.
    SCHTASKS /Create /SC DAILY /TN
    DailyFolder1Backup /RL HIGHEST /ST 23:00/TR
    "wbadmin start backup –backupTarget:F: -include:g\folder1
    -vsscopy -quiet"
    Scenario #2
    The following command will create a Task Scheduler task named
    DailyFolder2Backup with the start time of 24:00.
    This task will run DAILY with the HIGHESTprivileges. It will run the Windows Server Backup CLI to backup
    h:\folder2 to target volume
    F:.
    SCHTASKS /Create /SC DAILY /TN
    DailyFolder2Backup/RL HIGHEST /ST 24:00/TR
    "wbadmin start backup –backupTarget:F: -include:h:\folder2
    -vsscopy -quiet"
    Please feel free to let us know if you have any question or concern.
    Please VOTE as HELPFUL if the post helps you and remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

Maybe you are looking for

  • ColorSync doesn't recognize scanner

    The Devices panel in ColorSync Utility shows no scanners, even though I have a CanoScan 1220U connected that I use regularly via the PhotoShop import plugin. I'm trying to get started with color management and this has stopped me before I have really

  • Tables not listed in JDeveloper database connection..

    Hi, I am configuring a DBAdapter project in JDeveloper and the database is mssql server. I could connect to the DB but any of the schema objects are not displayed. I checked the permission for the user in the database and it seems fine and there is n

  • RAM Upgrade : Pavilion dv6-2170ee

    My Pavilion dv6-2170ee has the stock RAM - a 2048MB x 2. I'm thinking of fitting in a 4096MB x 2 in it. It's a aData 1333Mhz. Would I get any problems with the upgrading, and is it compatible with my laptop? The RAM Card can be found here:  http://on

  • Can I use other tempos?

    Hi, When you make a song in GB, you are presented with a few tempo possibilities, such as 4/4, 3/4, 12/8 etc. Unfortunately, I have written a song that is not listed on the drop-down, it's in 15/8. Does anyone know of any way to get this working? Tha

  • Which day my monthly usage will be reseted to zero...

    Hi, I have reached 80% of my monthly usage. When it will be reseted? Is it the first day of each month?