Problem in schedule push

Hi every body ,
I configured my schedule push to
BEGIN
DBMS_DEFER_SYS.SCHEDULE_PUSH(
destination => 'orc1.mydomain.com',
interval => 'SYSDATE + (1/1440)',
next_date => SYSDATE,
parallelism => 1,
stop_on_error => FALSE,
delay_seconds => 0);
END;
to check that if my tables become updated every one minute and test the environment
but i don't know why it does not push it and i can still see that in oem(DBMS JOBS tab)
I did also check my links and also the timing on that is periodic and have been set.
my job_queue_process is also equal to 10
I would be grateful if you help me.
Mery
Edited by: user643323 on Sep 10, 2008 4:48 PM

Thanks for the quick respond and follow up
well why purge I thought it should be propagated with schedule_push as I read the below paragraph in book:
" At scheduled intervals or on-demand, the deferred transactions in the deferred
transaction queue are propagated to the target destinations. Each destination
may have a different interval."
and purge just remove the successfully pushed transaction after the designated time as I read the below paragraph:
"When a deferred transaction has been successfully pushed to all remote master
sites, it is not purged from the deferred transaction queue at the originating site
immediately. It may be purged later by a purge job, which runs at a
user-defined interval."
So why a setting lazy purge (because i set in for every one day)makes problem?Shouldn't it be propagated with schedule push?
When i insert 1 record schedule_push works but for 16000 bulk insert it doesn't??!!!!!!
Thank you
Mery
Edited by: user643323 on Sep 12, 2008 10:00 AM
Edited by: user643323 on Sep 12, 2008 10:01 AM
Edited by: user643323 on Sep 12, 2008 10:01 AM

Similar Messages

  • Problem in setting up schedule push

    Hi every body,
    I have a multimaster advance replication environment and we have less than 10 transaction per day. I am not sure what is the correct set up for my case.Could you please help me?
    My first question is:I want to propagate data as soon as possible like sync if I setup the schedule push to propagate transaction every 5 seconds as below
    BEGIN
    DBMS_DEFER_SYS.SCHEDULE_PUSH(
    destination => 'orc2',
    interval => 'SYSDATE + (5/60*60*24)',
    next_date => SYSDATE,
    parallelism => 1,
    delay_seconds => 10);
    END;
    is it correct approach?
    in other hand ,book(I mean Advance Replication) has written that for simulating continuous push we should setup it as below so it will propagate transaction every 1 minute.
    My second question is:I know interval >= 'SYSDATE + (1/144)' means every 10 minutes a job will start and delay_seconds => 1200 means each job remain aware for 20 minutes,
    but I can't understand why it can simulate 1 minute propagation? anybody knows?
    BEGIN
    DBMS_DEFER_SYS.SCHEDULE_PUSH(
    destination => 'orc2',
    interval => 'SYSDATE + (1/144)',
    next_date => SYSDATE,
    parallelism => 1,
    execution_second >= 1500,
    delay_seconds => 1200);
    END;
    My thrid question is :Which of the above setups is a better solution for my environment?I mean 5 second interval (interval => 'SYSDATE + (5/60*60*24)') + delay_second = 10 and parallel or 10 minute interval (interval => 'SYSDATE + (1/144)') + delay_second = 1200 and parallel + execution_second =>1500)
    Thank you in advance.
    Mery

    With a "delay" of 20minutes, the push job will "hang around" for 20minutes waiting for new transactions. If it receives no new transactions to push, it will go to sleep. However, with the job interval at 1minute, it will "wake up" one minute later and push
    transactions that were created in that last 1 minute. Again, it will "hang around" for the next 20minutes.
    This is what I see from the 9i documentation (for advanced replication not using streams, I find the 8i and 9i documentation better
    than the 10g documentation)
    Delay Seconds
    Though not directly a performance mechanism, properly configuring the delay_seconds parameter can give you greater control over the timing of your propagation of deferred transactions.
    When you are pushing deferred transactions, you set the delay_seconds parameter in the SCHEDULE_PUSH procedure or the PUSH function. When you are purging deferred transactions, you set the delay_seconds parameter in the SCHEDULE_PURGE procedure or the PURGE function. These procedures and functions are in the DBMS_DEFER_SYS package.
    The delay_seconds parameter controls how long a job remains aware of the deferred transaction queue. The effects of the delay_seconds parameter can best be illustrated with the following two examples:
    delay_seconds = 0 (default)
    If a scheduled job with a 60 minute interval wakes up at 2:30 pm and checks the deferred transaction queue, then any existing deferred transactions are propagated. The propagation takes 2 minutes and therefore the job is complete at 2:32 pm.
    If a deferred transaction enters the queue at 2:34 pm, then the deferred transaction is not propagated because the job is complete. In this scenario, the deferred transaction will be propagated at 3:30 pm.
    delay_seconds = 300
    If a scheduled job with a 60 minute interval wakes up at 2:30 pm and checks the deferred transaction queue, then any existing deferred transactions are propagated. The propagation takes 2 minutes and therefore the job is complete at 2:32 pm.
    If a deferred transaction enters the queue at 2:34 pm, then the deferred transaction is propagated because the job remains aware of the deferred transaction queue for 300 seconds (5 minutes) after the job has completed propagating whatever was in the queue. In this scenario, the deferred transaction is propagated at 2:34 pm.
    Why not just set the job to execute more often? Starting and stopping the job has a greater amount of overhead than starting the job and keeping it aware for a set period of time. In addition to decreasing the overhead associated with starting and stopping these jobs, using the delay_seconds parameter can reduce the amount of redo logging required to support scheduled jobs.
    As with most performance features, there is a point of diminishing returns. Keep the length of the delay_seconds parameter in check for the following reasons:
    Parallel Propagation: Each parallel process that is used when pushing the deferred transaction queue is not available for other parallel activities until the propagation job is complete. A long delay_seconds value may keep the parallel process unavailable for other operations. To use parallel propagation, you set the parallelism parameter to 1 or higher in the SCHEDULE_PUSH procedure or the PUSH function.
    Serial Propagation: If you are using serial propagation (not parallel propagation), then the delay_seconds value causes the open session to "sleep" for the entire length of the delay, providing none of the benefits earlier described. To use serial propagation, you set the parallelism parameter to 0 (zero) in the SCHEDULE_PUSH procedure or the PUSH function.
    Precise Purge: If you specify the purge_method_precise method when using the DBMS_DEFER_SYS.PURGE procedure and you have defined a large delay_seconds value, then you may experience performance degradation when performing the specified purge. Using purge_method_precise is more expensive than the alternative (purge_method_quick), but it ensures that the deferred transactions and procedure calls are purged after they have been successfully pushed.
    As a general rule of thumb, there are few viewable benefits of setting the delay_seconds parameter to a value greater than 20 minutes (which is 1200 seconds for the parameter setting).
    Additionally, if you are using serial propagation by setting the parallelism parameter to 0, then you probably do not want to set a large delay_seconds value. Unlike parallel propagation, serial propagation only checks the queue after the duration of the delay_seconds value has elapsed. If you use serial propagation and set delay_seconds to 20 minutes, then the scheduled job will sleep for the entire 20 minutes, and any deferred transactions that enter the deferred transaction queue during that time are not pushed until 20 minutes have elapsed. Therefore, if you are using serial propagation, then consider setting delay_seconds to a value of 60 seconds or lower.
    If you set a value of 20 minutes for parallel propagation, then the parallel push checks once a minute. If you can afford this resource lock, then the relatively high delay_seconds value of 20 minutes is probably most efficient in your environment. If, however, you cannot afford this resource lock, then consider setting the delay_seconds value to 10 or 20 seconds. Although you will need to execute the jobs more often than if the value was set to 1200 seconds, you still gain many of the benefits of the delay_seconds feature (versus the default value of 0 seconds).

  • Problem in Scheduling Agreement Delivery Schedule

    Hi Guru's,
    We have a one problem in scheduling agreement delivery schedule.We are having delivery schedule from 29.05.2007 to 02.09.2009.As per standard procedure while raising GR the system updates GR quantity in first open quantity delivery schedule and it will go one by one delivery schedule. But in our case we raised many GR's and it was updated like that.But recent one GR(quantity - 2736) has skipped four delivery schedule and it has updated fifth delivery schedule.
    We dont know why system has skipped four delivery schedule.
    Anyone aware the reason.If any procedure or indicator is there.
    Please help us.
    I have attached screen shot for your reference.
    Points will be rewared.
    Thanks in advance.
    Best Regards,
    Naga.

    Hi Tao,
    Thank you so much for your reply.
    I have created two delivery schduled,Afterwards I released second delivery schedule please note taht I did not released first delivery schedule.
    Then I raised GR but the GR quantity is updating in first delivery schedule eventhough not released.As per your statement it has to update in second delivery schedule.But it is not working.
    Kindly suggest to me, Whether my understing is correct or not.
    I am expecting your valuable reply.
    Thanks in advance.
    Best Regards,
    Nagapandian.

  • Problem in scheduling data refresh of excel file that uses PowerPivot

    I think I have successfully created and enabled the gateway and data sources for refresh - they are both seeming to connect.  However, when I try to schedule a data refresh to occur in the PowerBI site for the Excel file I receive an error message
    that the connection could not be established and receive error message "Correlation ID: d118ab93-436d-44a9-8c09-564f64fe0c58".  Appreciate any assistance in figuring out how to resolve.  Thanks a lotl

    Let's track it here: https://social.technet.microsoft.com/Forums/en-US/42c806dc-2d82-4bcf-ab6e-c279e2692a68/problem-in-scheduling-data-refresh-of-excel-file-that-uses-powerquery-and-powerquery?forum=powerbiforoffice365 
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Problem in Scheduling a Package/Interface in Oracle data Integrator.

    Hi all,
    I have a problem in scheduling in odi.
    I have followed the steps:-
    1) launch a scheduler agent from commnadline using the command
    agentscheduler "-port=20300" "-v=5"
    2.)created a Physical Agent and Logical Agent on this port
    3.)and creating a scenario for the packege and scheduling it.
    But scheduling is not running
    Pls provide me the solution.is any step missing or Am i wrong anywhere?
    Message was edited by:
    user567803

    Hi,
    I have read this thread, and seem the solution you have mentioned may work for me also. But whenever I am trying to laun agent scheduler I am getting following errors
    OracleDI: Starting Scheduler Agent ...
    Starting Oracle Data Integrator Agent...
    Version : 10.1.3.2.0 - 03/01/2007
    com.sunopsis.tools.core.exception.g: java.sql.SQLException: socket creation error
    at com.sunopsis.dwg.cmd.n.a(n.java)
    at com.sunopsis.c.f.run(f.java)
    at com.sunopsis.dwg.cmd.i.y(i.java)
    at com.sunopsis.dwg.cmd.i.run(i.java)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: java.sql.SQLException: socket creation error
    at org.hsqldb.jdbc.jdbcUtil.sqlException(jdbcUtil.java:67)
    at org.hsqldb.jdbc.jdbcConnection.<init>(jdbcConnection.java:2451)
    at org.hsqldb.jdbcDriver.getConnection(jdbcDriver.java:188)
    at org.hsqldb.jdbcDriver.connect(jdbcDriver.java:166)
    at com.sunopsis.sql.SnpsConnection.u(SnpsConnection.java)
    at com.sunopsis.sql.SnpsConnection.c(SnpsConnection.java)
    at com.sunopsis.sql.h.run(h.java)
    Caused by:
    java.sql.SQLException: socket creation error
    at org.hsqldb.jdbc.jdbcUtil.sqlException(jdbcUtil.java:67)
    at org.hsqldb.jdbc.jdbcConnection.<init>(jdbcConnection.java:2451)
    at org.hsqldb.jdbcDriver.getConnection(jdbcDriver.java:188)
    at org.hsqldb.jdbcDriver.connect(jdbcDriver.java:166)
    at com.sunopsis.sql.SnpsConnection.u(SnpsConnection.java)
    at com.sunopsis.sql.SnpsConnection.c(SnpsConnection.java)
    at com.sunopsis.sql.h.run(h.java)
    Thanks in advance
    HA

  • Problem regarding scheduling of maintenance plan

    Dear Sap Gurus,
    I am facing the problem during the scheduling of maintenancepan thruough IP10 follwing error is coming
    "Planned date for maintenance plan 124 was scheduled for 00.00.0000"
    Planned date for maintenance plan 124 was scheduled for 00.00.0000
    Message no. IP889
    Diagnosis
    During scheduling of the maintenance plan, the planned date was set to 00.00.0000.
    This error can occur, if, for example, the cycle for the planned schedule is too big (offset) means that the planned date is actually after the 31.12.9999.
    Procedure
    Check the master data of the maintenance plan to ensure that no date is calculated after the 31.12.9999.
    If necessary, check the counters used and the annual performance.
    I explore all the things in SPRO also also check the setting parameter for the plan but i didnt get any breakthrough for my above problem.Plz guide me whats the exactly problem with scheduling of of maintenance plan.
    points are sure
    Regards
    Rakesh

    Summary
    Symptom:
    In the scheduling of a multiple counter plan, the system
    1. generates message IP889 "Planned date for maintenance plan &1 was scheduled for 00.00.0000" or
    2. terminates with CONVT_NO_NUMBER.
    Other terms
    Scheduling, IP10, IP30, maintenance plan scheduling, maintenance plan, multiple counter, BADI IPRM_MCP_SCHE_CHANGE, CONVT_NO_NUMBER, SAPLIWP2, LIWP2F19, MCP_PREPARE_RESCH_CALLED_CALLS, LV_ABNUM
    Reason and Prerequisites
    This problem is caused by a program error.
    Solution:
    Implement the attached source code corrections.

  • Problem with scheduling planned orders in MRP

    There is a problem with scheduling planned orders in MRP. SFG is assigned to the BOM of FG. No inhouse production time maintained in the material master of SFG & FG. routing maintained for both . In OPU5 scheduling & capacity reuiremnts tickmarked for detailed scheduling. Scheduling level - via detaied scheduling. Scheduling type - backward. Adjust basic dates , adjust dep. req. to order start set. In MD02 , scheduling is via ' lead time scheduling'.
    My problem is the start date & time & finish date & time is same for planned orders of FG & SFG in the detailed scheduling tab of the planned orders. (Duration is same because of same capacity requirements on the same work centre. But how is the finish date same for both SFG & FG?)
    (Capacity requirements are being generated.)
    What could be the problem ?

    Dear,
    By scheduling the routing and maintain lot size dependent time in material is best practice and result of scheduling will be consistent.
    If you want SFG before FG you need to define lead time offset in BOM or need to maintain the floats before production.
    Hope clear to you.
    Regards,
    R.Brahmankar

  • Problem in Scheduling & Automation

    Dear Gurus,
    I have a problem while scheduling my procedures on server.(Oracle 8i)
    I have a procedure which gets data from a remote servers using DBlinks which have scheduled downtimes.
    I'm thinking of automating my procedures by scheduling on the server.
    If I schedule my procedure on my server at a specific point of time, I'm not able to come to a conclusion whether my proc is going to be successfully completed or not....
    There are 2 reasons for this:
    1. Though there are specified downtimes for these servers, the downtime may even be changed because of the maintainance activities to be performed on those remote servers.
    2. If my procedure takes say 2hrs of time, at one point of time, the time taken by the same may vary if data that comes from the remote server grows higher and higher, which may delay the completion until the downtime of the server is reached.
    So, how can I handle the above said situations and can automate the process of scheduling my procs..
    Also, tell me incase any upgrade is needed for my server from Oralce8i to say 10g so that my proc can be run faster or there is a better mechanism to handle these situations.
    Thanks and Regards
    RK Veluvali

    I don't think I could understand your need;
    I have a procedure which gets data from a remote servers using DBlinks which have scheduled downtimes.With 8i you can use materialized views(snapshots) for this kind of need, check it from 8i documentation - http://download-west.oracle.com/docs/cd/A87860_01/doc/server.817/a76959/mview.htm#25680
    Also these demos may help understanding -
    http://psoug.org/reference/materialized_views.html
    If you give an example or more details about the need, it would be better.
    Best regards.

  • I am having problem with my push notifications of facebook and other applications on my 3gs ios5.0

    Hi,
    I am having problem with my push notifications of facebook and other applications on my 3gs ios5.0 device. I have done too many things have updated my facebook application but still it is not showing any push notification. Is there any settings that i need to do for it? Also it is not allowing me to show on mobile in facebook. Any one here can help?

    ok for facetime and imessage go into settings turn them off make sure to make an icloud backup and then go to settings general erase all content and settings and then set it up from the backup it should activate your imessage and facetime

  • Hi, ı have a problem once I push the power button and it starts to opening but small symbol turning and turning, it really lasts so long. could you please help me? is it so slow to open a mac pro.

    Hi, ı have a problem once I push the power button and it starts to opening but small symbol turning and turning, it really lasts so long. could you please help me? is it so slow to open a mac pro.

    OS X Version Number?
    Repair Disk
    Steps 2 through 8
    http://support.apple.com/kb/PH5836

  • Problems when scheduling a report in background

    Hi Guys
    I have a report that has a lot of columns so i have created a display variant with 22 cols. When I run this report online (foreground) It picks up my variant and I can see all 22 cols. The problem is when I schedule this in background it does not display all the cols, the last three cols get cut off.
    Any idea why this is happening?
    Thanks
    Sameer

    you have to change the format in SPAD.  
    Go to transaction SPAD -> FULL ADMINISTRATION -> DEVICE TYPES -> FORMAT TYPES and there you can see all the available formats. Create a new format Z_65_700 in the similar manner with X_255... with a different number of columns (700) and save it.
    Then in the tab DEVICE/SERVERS go to OUTPUT DEVICES and type your printer -> ENTER -> then from the Menu GOTO device type -> then there is a button FORMATS where you can see all the existing formats (plus the one you have just ctreated). Find it and choose it. Then save.
    Now you have attached the new format to your printer.
    The next step is simple.
    You can do it the way you described, but there is also another way. Run your program with F9 and not F8 from the selection screen. It will ask you for printers, formats etc. There you will first select the appropriate printer and then (after ENTER) you have to go down to formats and select the new format. Do not print it immediatelly, click only the NEW SPOOL REQUEST checkbutton. This will create a new spool request.
    If you go to SP01 you will find the number of your finished job. If you click the abap list button it will only show you collumns with up to 255 characters.
    But if you take the spool number and put it as a parameters to the zzz program , it will show everything.
    Source:
    Spool List output display > 255 char when the rpt is run in Background

  • Problem in Scheduling agreement in MM

    Hi Guys,
    I was trying to create Sch. agreement in the MM side.
    Step1. Created S.Agreement with the transaction code ME31L.
    Step 2. Maintained S.Agreement schedule lines using transaction code ME38.
    Then when open up Me38 and see,  there is a open  target qty is '0'.
    So what could be problem here, do I missing anything please explain me.
    Even I tried to create MIGO the error message is "Document XXXXXXXX does not contain any selectable items.
    So please some one explain me what could be the reason by getting open target qty is '0'.
    If you need any further information please let me know.
    Thanks
    ANGKS

    Dear
    Check weather material type what you are using.
    Check if you have release stretagy for that Pur docu Type.
    If yes  then
    ME35L - Release  by giving relese code.
    ME38 - Maintain   the Scheduling agreement.
    Check delivery Scheedule History for that  Scedule agreement for GR.
    with regards
    Shrinivas gangoor

  • Problem in scheduling agreement  dates with 2LIS_12_VCSCL extractor

    I am using 2LIS_12_VCSCL extractor to get the order fulfilment report.
    I am using ODS as an infprovider and on BW 3.5.
    Scenario on Sale Order screen - VA33 [ Scheduling Agreemnent ]
    Sales doc   Item  Line-No     Qty      Del NO    Req-Date         Actual GI Date
        100          10      1            10          222        5/10/2008        5/10/2008   ( this is the only item that is delivered)
         ---            --       2            10                       6/10/2008
         ---            --       3            10                       7/10/2008
    This Scenario when we view the data in rsa3 by running 2LIS_12_VCSCL
    Sales doc   Item  Line-No     Qty      Del NO     Req-Date        Actual GI Date
         100       10      1            10           222         5/10/2008         5/10/2008 
            ---       2            10          222        6/10/2008          5/10/2008
            ---       3            10          222        7/10/2008           5/10/2008
    Note that the delivery no is assigned to the unschedules schedulines(ie; these are open schedulelines that have not been delivered, but the extractor is assigning the first delivery no to all these schedule lines)
    We are confused and do not understand if this is how this extractor works . what we actually expected to get is only one recored for which the delivery has been made.
    like :
    Sales doc   Item  Line-No     Qty      Del NO    Req-Date        Actual GI Date
           100       10      1            10          222        5/10/2008        5/10/2008 
    the other two lines should not get extracted. If this is a bug in the extractor program please point us to the OSS notes or the fix that can be applied.
    Else if this is how this extractor works please suggest the fix that can be applied on the BW side to extract only the first record (ie; the schedule line  record for which the delivery has been done)
    Greatly appreciate help on this issues.
    Thank You,
    Edited by: Swordfish on May 12, 2008 1:09 PM
    Edited by: Swordfish on May 12, 2008 1:21 PM

    Hello,
    I think we have the same problem.  Data pulled over to BW has alot more records for a single delivery.
    Anybody have any thoughts on this.

  • Time stream and Factory Calendar settings issue. Problems in scheduling!!

    Hi,
    We have a factory calendar of working days from SUN-THU only (5 days a week).
    Every working day starts at 07:00:00 (first shift) and ends at 06:59:59 at the following day.
    I am not sure how to set the time stream. Do I set it for daily (5 days a week) with gaps start at 07:00:00. Or, as the standard way as daily (all days 1 -7) 00:00:00 - 23:59:59 without gaps.
    We are using the planning board to schedule production orders that were created in ECC, but we see that we have problems with date corelation between the systems, and we think it is due to some wrong setting of the time stream!
    Thanks for your replies

    Hi,
    For scheduling, the time stream of resource is relevent. As to how to generated the time stream, it depends on your resource capacity setting and your factory calendar. I'm not sure why your factory calendar starts at 7:00:00 daily. For the time steam of the resource, it should be ok to start at 7:00:00, and you mayexecute the time stream generation (ta. /sapapo/rest02) to save the time stream in LiveCache.
    Claire

  • Problem editing scheduled jobs

    I just had a problem where 3.1, EA1 and EA2 all failed to edit a scheduled job in sqldev. A coworker was able to make the same edit using the same database ID, except he did it through SQL*Plus - that made me suspect a bug in sqldev.
    Here are the symptoms:
    In sqldev 3.1 (any flavor) > Scheduler > Jobs > edit an existing job > try to edit the JOB_ACTION field. In 3.1, double-clicking in the field only highlights the current word - it does not give me a cursor, and I cannot edit the contents.
    In sqldev 3.0.4, editing the same job works as expected. I can edit the field, and save the changes.
    Note that the server that I connect to is remote - it is hosted by Oracle OnDemand.

    Doesn't work for me either;
    Here's the exception dumped in the console when selecting Edit:
    oracle.classloader.util.AnnotatedNoClassDefFoundError:
              Missing class: antlr.TokenStream
            Dependent class: org.antlr.stringtemplate.language.DefaultTemplateLexer
                     Loader: ide-global:11.1.1.0.0
                Code-Source: /C:/Archivos%20de%20programa/sqldeveloper3.1.06.82/sqldeveloper/lib/stringtemplate-3.1b1.jar
              Configuration: <classpath> in /file:/C:/Archivos de programa/sqldeveloper3.1.06.82/sqldeveloper/extensions/oracle.sqldeveloper.jar!/META-INF/extension
    .xml
    The missing class is not available from any code-source or loader in the system.
            at oracle.classloader.PolicyClassLoader.defineClass(PolicyClassLoader.java:2387)
            at oracle.classloader.PolicyClassLoader.findLocalClass(PolicyClassLoader.java:1546)
            at oracle.classloader.SearchPolicy$FindLocal.getClass(SearchPolicy.java:226)
            at oracle.classloader.SearchSequence.getClass(SearchSequence.java:119)
            at oracle.classloader.PolicyClassLoader.internalLoadClass(PolicyClassLoader.java:1728)
            at oracle.classloader.PolicyClassLoader.access$000(PolicyClassLoader.java:143)
            at oracle.classloader.PolicyClassLoader$LoadClassAction.run(PolicyClassLoader.java:331)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.classloader.PolicyClassLoader.loadClass(PolicyClassLoader.java:1692)
            at oracle.classloader.PolicyClassLoader.loadClass(PolicyClassLoader.java:1674)
            at org.antlr.stringtemplate.StringTemplateGroup.<clinit>(Unknown Source)
            at oracle.dbtools.scheduler.generator.DBMSSchedulerCodeGenerator.initGroupLoader(DBMSSchedulerCodeGenerator.java:321)
            at oracle.dbtools.scheduler.generator.DBMSSchedulerCodeGenerator.<init>(DBMSSchedulerCodeGenerator.java:298)
            at oracle.dbtools.scheduler.generator.DBMSSchedulerCodeGenerator.getInstance(DBMSSchedulerCodeGenerator.java:309)
            at oracle.dbtools.scheduler.dialogs.newjob.NewJobCreateBase2$ListTask.getQuery(NewJobCreateBase2.java:94)
            at oracle.dbtools.raptor.backgroundTask.utils.DatabaseQueryTask.<init>(DatabaseQueryTask.java:62)
            at oracle.dbtools.raptor.backgroundTask.utils.DatabaseQueryTask.<init>(DatabaseQueryTask.java:48)
            at oracle.dbtools.scheduler.dialogs.newjob.NewJobCreateBase2$ListTask.<init>(NewJobCreateBase2.java:86)
            at oracle.dbtools.scheduler.dialogs.newjob.NewJobCreateBase2.getListTask(NewJobCreateBase2.java:58)
            at oracle.dbtools.scheduler.panels.common.ActionDialogBase.launch(ActionDialogBase.java:29)
            at oracle.dbtools.scheduler.dialogs.newjob.NewJobCreateBase2.launch(NewJobCreateBase2.java:81)
            at oracle.dbtools.raptor.controls.sqldialog.ObjectActionController.handleEvent(ObjectActionController.java:192)
            at oracle.ide.controller.IdeAction.performAction(IdeAction.java:529)
            at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:884)
            at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:501)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
            at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
            at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:809)
            at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:850)
            at java.awt.Component.processMouseEvent(Component.java:6289)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
            at java.awt.Component.processEvent(Component.java:6054)
            at java.awt.Container.processEvent(Container.java:2041)
            at java.awt.Component.dispatchEventImpl(Component.java:4652)
            at java.awt.Container.dispatchEventImpl(Container.java:2099)
            at java.awt.Component.dispatchEvent(Component.java:4482)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
            at java.awt.Container.dispatchEventImpl(Container.java:2085)
            at java.awt.Window.dispatchEventImpl(Window.java:2478)
            at java.awt.Component.dispatchEvent(Component.java:4482)
            at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
            at java.awt.EventQueue.access$000(EventQueue.java:85)
            at java.awt.EventQueue$1.run(EventQueue.java:603)
            at java.awt.EventQueue$1.run(EventQueue.java:601)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
            at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
            at java.awt.EventQueue$2.run(EventQueue.java:617)
            at java.awt.EventQueue$2.run(EventQueue.java:615)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)And consecutive tries:
    java.lang.NoClassDefFoundError: Could not initialize class org.antlr.stringtemplate.StringTemplateGroup
            at oracle.dbtools.scheduler.generator.DBMSSchedulerCodeGenerator.initGroupLoader(DBMSSchedulerCodeGenerator.java:321)
            at oracle.dbtools.scheduler.generator.DBMSSchedulerCodeGenerator.<init>(DBMSSchedulerCodeGenerator.java:298)
            at oracle.dbtools.scheduler.generator.DBMSSchedulerCodeGenerator.getInstance(DBMSSchedulerCodeGenerator.java:309)
            at oracle.dbtools.scheduler.dialogs.newjob.NewJobCreateBase2$ListTask.getQuery(NewJobCreateBase2.java:94)
            at oracle.dbtools.raptor.backgroundTask.utils.DatabaseQueryTask.<init>(DatabaseQueryTask.java:62)
            at oracle.dbtools.raptor.backgroundTask.utils.DatabaseQueryTask.<init>(DatabaseQueryTask.java:48)
            at oracle.dbtools.scheduler.dialogs.newjob.NewJobCreateBase2$ListTask.<init>(NewJobCreateBase2.java:86)
            at oracle.dbtools.scheduler.dialogs.newjob.NewJobCreateBase2.getListTask(NewJobCreateBase2.java:58)
            at oracle.dbtools.scheduler.panels.common.ActionDialogBase.launch(ActionDialogBase.java:29)
            at oracle.dbtools.scheduler.dialogs.newjob.NewJobCreateBase2.launch(NewJobCreateBase2.java:81)
            at oracle.dbtools.raptor.controls.sqldialog.ObjectActionController.handleEvent(ObjectActionController.java:192)
            at oracle.ide.controller.IdeAction.performAction(IdeAction.java:529)
            at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:884)
            at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:501)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
            at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
            at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:809)
            at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:850)
            at java.awt.Component.processMouseEvent(Component.java:6289)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
            at java.awt.Component.processEvent(Component.java:6054)
            at java.awt.Container.processEvent(Container.java:2041)
            at java.awt.Component.dispatchEventImpl(Component.java:4652)
            at java.awt.Container.dispatchEventImpl(Container.java:2099)
            at java.awt.Component.dispatchEvent(Component.java:4482)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
            at java.awt.Container.dispatchEventImpl(Container.java:2085)
            at java.awt.Window.dispatchEventImpl(Window.java:2478)
            at java.awt.Component.dispatchEvent(Component.java:4482)
            at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
            at java.awt.EventQueue.access$000(EventQueue.java:85)
            at java.awt.EventQueue$1.run(EventQueue.java:603)
            at java.awt.EventQueue$1.run(EventQueue.java:601)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
            at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
            at java.awt.EventQueue$2.run(EventQueue.java:617)
            at java.awt.EventQueue$2.run(EventQueue.java:615)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)Hope that helps for debugging,
    K.

Maybe you are looking for