Oracle Grid Scheduled jobs disappear from active tab?

Thread was posted before as a similar situation.
Grid Control jobs disappeared from schedule
But was never answered;
For Grid control v10.2.0.3 Unix box.
I was wondering if this is a bug within OGC. Some of the scheduled jobs disappear from the active tab and have to be re-submitted. Does anyone or has anyone experienced this? Agents are in synch, and the only thing that was done was a bounce of the database and possibly the box itself.
Thanks,
Mark S.

Hi,
I have upgraded Discoverer 4i EUL to 10g EUL by using auto upgrade utility which comes with the Disocverer 10.1.2 and installed the Discoverer 10g Admin Edition on my PC. And I executed the batchusr_app.sql and assigned a user DISCREP(other than APPS). We are in APPS mode EUL. The script execution completed fine and the EUL5 packages were created under the DISCREP owner. When I log into the Discoverer Admin and select Tools/Privileges and at the point of assigning the result tables to a schema which is DISCREP, I am getting a message saying that 'EUL5_BATCH_REPOSITORY' package is wrong version and batchusr.sql script needs to be run. I ran the batchusr.sql script and when tried to assign the schema to own result tables it gave me the same message.
Any ideas. You may have gone through this during your upgrades or installation.
Thanks,
Sabbani

Similar Messages

  • DPM 2010 Scheduled Jobs Disappear rather than Run

    I have a situation where I have a DPM server that appears to be functioning fine, but none of the scheduled jobs run.  No errors are given, there are no Alerts, and there is nothing in the Event log (Application and System) which indicates a failure. 
    All my Protection Groups show a green tick to indicate that they are fine, but the last successful backup for all of them is Friday the 8th of February.
    If I go to Monitoring and Jobs I see the jobs scheduled, but when the time comes for the job to run, it does not go into the "All jobs in progress", it just merely disappears, like thus:
    And a few minutes later,
    As you can see, the jobs disappear from the queue, and the total number of jobs decreases accordingly.  These jobs do not go into any of the other 3 Statusses (Completed, Failed or In Progress), they just disappear without a trace.
    There is some unallocated space, albeit not much (Used space: 21 155,05 GB Unallocated space: 469,16 GB). If space was an issue I would expect to see errors to indicate this.
    DPM 2010 running version 3.0.8193.0 (hotfix rollup package 6) using remote instance of SQL 2008 which is functioning fine.  I have tried stopping/starting the services, and even rebooted the server twice.  The remote instance of SQL server is using
    a domain account as its service account.  There are no pending Windows updates, i.e. it is fully up-to-date.
    The System Center Data Protection Manager 2010 Troubleshooting Guide (July 2010) does not show how to troubleshoot this particular probelm.
    Does anybody know how to resolve this issue or which logs might help me troubleshoot it?

    OK,
    Did you change the SQL Agent user account ?
    If so, DPM enters the SQL Agent account name into the registry and later we check that account each time the DPM engine launches.  The internal interfaces to DPM are secured using this account so the account name needs to match the account the SQL Agent
    is using. 
    Step 1
    In the registry HKLM\Software\Microsoft\Microsoft Data Protection Manager\Setup alter  both
    SqlAgentAccountName and SchedulerJobOwnerName keys to reflect the SQL Agent user account being used.
    Step 2
    Update DCOM launch and access permissions to match what was granted to the Microsoft$DPM$Acct account.
    Please 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. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Jobs disappear from job list

    Hello experts,
    i post this thread because there is a new problem with a reports server running in Oracle Application Server 10.1.2.3.0
    We configured a reports server like this:
    Engine-ID: rwEng
    Classpath:
    initEngine: 1
    maxEngine: 3
    minEngine: 1
    engLife: 50
    maxIdle (minutes): 30
    Cache Size (MB): 30
    Timeout (minutes): 15
    max Connections: 20
    max Queue-size: 1000
    trace-option: none
    We queued 15 daily executive jobs.
    But these jobs disappear after a while. So the queue list is empty!
    sometimes after a week and sometimes after a few days this jobs disappear from queue.
    May you can help me solving this problem?
    Thanks a lot.
    Best regards
    Florian

    Hello, I to have had this problem with a brand new Mac Pro and new install. I did note that, whilst I didn't use the migration assistant I did copy over my preferences from an old system though and may have corrupted something.
    My buddies loaded, presumably from AOL system as they appear no matter where i log in from. But a new buddy that i tried to add simply appeared, pulsed for a few seconds and disappeared. I was able to chat with the friend and screen share, audio chat and video chat with them but could only make a connection if I was quick to do so from adding them again to my buddy list.
    To resolve the issue I deleted all iChat preference files:
    com.apple.iChat.AIM.plist
    com.apple.iChat.plist
    com.apple.iChat.SubNet.plist
    com.apple.iChatAgent.plist
    that were stored in my ~/Library/Preferences folder.
    I did have to re-sign in to iChat but that is only a user name and password which gets re-stores in my Keychain so no bother.
    Hope this helps as it worked for me!
    Just

  • INSERT in PLSQL loop  in Oracle 9i  scheduled job has poor performance

    Hi,
    I have a scheduled job running in Oracle 9i. But everytime it executes the following piece of code, the INSERT process slows down drastically.
    -------------------------------typical piece of code having problem-----------------------------------
    LOOP
    FOR increbkgs IN bookings_cur (in_chr_fiscal_period_id,
    allrec.cust_name_string
    LOOP
    l_num_rec_count := l_num_rec_count + 1;
    INSERT INTO SA_PORTAL_CDW_BOOKINGS_INCTEMP
    (product_id, territory_code,
    global_target_id, service_type,
    equipment_deployment, created_date, updated_date,
    fiscal_period_id, customer_id,
    ship_to_country,
    bookings_amount, sams_alliance_id
    VALUES (increbkgs.product_id, increbkgs.territory_code,
    increbkgs.global_target_id, increbkgs.service_type,
    increbkgs.equipment_deployment, SYSDATE, SYSDATE,
    increbkgs.fiscal_period_id, increbkgs.customer_id,
    increbkgs.ship_to_country,
    increbkgs.bookings_amount, allrec.sams_alliance_id
    IF (l_num_rec_count = 500)
    THEN
    l_num_rec_count := 0;
    COMMIT;
    END IF;
    END LOOP;
    END LOOP;
    All the tablespaces are auto-extend. But we have still tried to increase the tablespace manually from 2% to 30% by adding datafiles. Still the INSERT is slowing down for some reason.
    (The same process in Oracle 8i is much faster)
    Any hint or guidance is greatly appreciated.
    Thanks and regards,
    Ambili

    commits in loops are great for slowing down things. Actually commits in loops are just about the best way of stalling any 'process' in Oracle.
    A much better way is to resize your undo tablespace to permit one single commit at the end of the whole thing. Yes it could be big, but that's the way Oracle works.
    If you want more info about this, buy Thomas Kyte's book found at http://apress.com/book/bookDisplay.html?bID=10008

  • How to Drag and Drop from Active tab to Inactive Tab in Elements 13?

    In previous versions of Elements, I was able to drag a layer from and active tab up to an inactive tab, which then made the inactive tab active, with the new layer.  In Elements 13, that doesn't work, and I have to open the Photo Bin, and drag it down there .  I am just wondering if I need to adjust a setting, or if this feature no longer exists in Elements 13?

    Yes.  I have Windows 8.1.  Using the Move Tool, I drag the desired object to the other file.  Pre Elements 13, it easily worked up to the inactive tab, and switched it to active.  Now I have to drag it to the Photo Bin.  It still works, just no as simply since I have to open the Photo Bin.  Not a big problem, just annoying since my habits still want me to drag up to the inactive tab, not down to the Photo Bin.  Resetting the preferences didn't change anything. 

  • Prepopulate fields disappear from Prepopulate Tab in Form Designer

    Have anybody noticed disappearing of prepopulate fields from prepopulate tab in Form Designer?
    Yesterday I had configured prepopulate fields, but today I found emty tab.
    Database worked correctly - I saw alert.log.
    What can it be?
    This is the second accident with disappearing prepopulate fields from prepopulate tab in Form Designer.

    I found out! When you change the settings of generic connector and it begins to generate in OIM, the prepopulates disappear. And permissions to IT-resource, process definition and object permissons change.

  • Enable Oracle dbms scheduled jobs

    Hi Gurus,
    I need to enable a set of dbms jobs which got transferred as a result of exporting a 9i database and importing to 11g database.
    They were running as scheduled jobs in old legacy database.
    I can see them in SQL Developer under DBMS jobs but don't know how to enable them
    Please help. My current Oracle version is 11g.
    Thanks
    Amitava.

    amitavachatterjee1975 wrote:
    Hi Gurus,
    I need to enable a set of dbms jobs which got transferred as a result of exporting a 9i database and importing to 11g database.
    They were running as scheduled jobs in old legacy database.
    I can see them in SQL Developer under DBMS jobs but don't know how to enable them
    Please help. My current Oracle version is 11g.
    Thanks
    Amitava.
    post SQL & results which show any of the jobs actually got transferred.
    post SQL & results that show they are not scheduled or running now.

  • Many but not all Favicons disappeared from my tabs & bookmarks last week - how can I get them back?

    I have been using many of these for years, eg google and tvguide.co.uk but now they show as dot edged boxes instead of favicons on tabs. Others are OK eg Firefox and Facebook. All these sites still display correctly in other browsers.
    I have: cleared history, cookies and cache / deleted and remade bookmarks / tried safe mode / restarted several times / tried some recovery addons, but nothing works.
    I updated to FF 25 at about the time I noticed this problem and am running Windows 8

    Do you see the favicon on the tab if you visit one of those sites?
    Normally Firefox should fetch the favicon from the server if you click a bookmark to visit this link.
    You can check these prefs on the <b>about:config</b> page to make sure that they have the default value.
    *browser.chrome.favicons
    *browser.chrome.site_icons
    Try to let all favicons expire to see if that makes Firefox to store properly them once again.
    Copy and Paste the JavaScript code in the command line in the Browser Console (Firefox/Tools > Web <pre><nowiki>Developer;Ctrl+Shift+J) and press the Enter key.
    var fS = Components.classes["@mozilla.org/browser/favicon-service;1"]
    .getService(Components.interfaces.nsIFaviconService);
    fS.expireAllFavicons();</nowiki></pre>
    (note that this will remove all favicons, so you need to open a bookmark to make Firefox retrieve the favicon)
    You can check for problems with the places.sqlite database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    Note that your System Details List shows that you have a user.js file in the profile folder to initialize some prefs on each start of Firefox.
    The user.js file is only present if you or other software has created it, so normally it wouldn't be there.
    you can check its content with a plain text editor if you didn't create this file yourself.
    The user.js file is read each time you start Firefox and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
    You can delete the prefs.js file and possible numbered prefs-##.js and user.js files to reset all prefs to the default value or reset these prefs to the default value via the right-click context menu on the <b>about:config</b> page or edit the prefs.js file and remove related line(s).
    *http://kb.mozillazine.org/Preferences_not_saved

  • Error in creating activity from Account application ( from activity tab)

    Hi Experts,
    We are getting this error when try to create Activity from Account application in PCUI. But the same thing is working fine in at GUI level & actions profile assigned to Activity transaction is also working fine at GUI level. But in PCUIit is throwing this below error.
    Diagnosis
    You have attempted to create a follow-up transaction for an incorrect transction 2000764. This is not possible. You can only create follow-up transactions for error-free transactions.
    System Response
    The follow-up transaction is not created.
    Procedure
    Correct the errors in the source transaction 2000764. The error messages resulting from processing the error can be read in the application log in the source transaction.
    Pls suggest solution for this.
    Thanks in Advance.
    Regards,
    Basavaraj Patil

    Hi Experts,
    We are getting this error when try to create Activity from Account application in PCUI. But the same thing is working fine in at GUI level & actions profile assigned to Activity transaction is also working fine at GUI level. But in PCUIit is throwing this below error.
    Diagnosis
    You have attempted to create a follow-up transaction for an incorrect transction 2000764. This is not possible. You can only create follow-up transactions for error-free transactions.
    System Response
    The follow-up transaction is not created.
    Procedure
    Correct the errors in the source transaction 2000764. The error messages resulting from processing the error can be read in the application log in the source transaction.
    Pls suggest solution for this.
    Thanks in Advance.
    Regards,
    Basavaraj Patil

  • Print Jobs Disappear from the Print Queue and Do Not Print

    As the title say, It sends to the spool, says printing, disappears, and I cry, because nothing is printed.
    HP Deskjet 1513 - Windows 7
    Tried wiping out and reinstalling the drivers
    The ones that came from the CD, OR the ones online. No response from the printer.
    I can clean the printer, align cartridges, print test page, scan documents, but cannot print documents.
    Not from word, not from pdf, nor a web page, neither notepad.
    The printer IS the default printer.

    Solution: disable bidirectional support on the Ports section

  • Apps has disappear from Purchases tab...

    Hi,
    I got some apps from Mac App Store, some free, some not...Now i realize that some free apps i got don't show anymore on the Purchases tab... Any idea if this is a bug or something? Two apps i still have in my computer but don't show on Purchases tab are Carbon Copy and iSlice.

    Hi,
    I couldn't locate Carbon Copy or iSlice at the Mac App Store.
    Launch iTunes. Select iTunes Store on the left then click your account name on the right. Then click Purchase History. If they don't show up in Purchase History, post a report with Mac App Store Customer Service
    Carolyn

  • My "x" button has disappeared from my tabs. How do I get it back?

    Until recently, when using multiple tabs, I would have a close button or "x" in every tab. I did not make any changes to settings, but now, my close tab button is gone or at least not visible.
    Currently, the only way I can close individual tabs it by right clicking on the tab and selecting "close tab". It would be much easier if my button was back and functioning.
    Please help me fix this...

    CHANGE THEME'S, WORKED FOR ME

  • Apple TV no longer appearing in ITunes PLUS apple TV icon has disappeared from preferences tab in ITunes

    Help, please help.
    Itunes 10.5.0.142 loaded. There doesnt seem to have been a software upgrade for Apple TV

    No, I don't have Netbarrier X. Ironically, I uninstalled Intego Virus Barrier X6 thinking that might be the problem but it isn't. There's currently no software firewall running on the system at all. The one thing I've been able to discern, so far, is that my partner's Macbook can connect and sync to the ATV and the only difference is that she didn't download the latest security patch (2010-001) that came out on Tuesday and I did. I've let Apple Support know but their response was "we haven't heard anything about this". However, since that is the only significant difference between our two machines and hers can connect at this point I'm presuming that's the issue.

  • Why won't rented videos disappear from video tab.

    i rented a movie two months ago and it still shows up on the device despite the timeout period.

    How are you trying to sync them?  Photo stream doesn't sync videos; only photos.  You can add short videos (5 min. or less) to a shared stream and invite yourself as a subscriber and they will appear on your iPad (if your phone is running iOS 7 and your iPad is running iOS 6 or higher).  See http://help.apple.com/icloud/#/mmc0cd7e35 for details.

  • Error while creating activities from Account application (Activity tab page

    Hi Experts,
                       We are using CRM 5.0 with PCUI ( EP 7.0 version). We are getting  below error when try to create activities from Account application in PCUI ( from activity tab page):
    Error : Activity contains error.
    Diagnosis
    This transaction has errors.
    Procedure
    To correct the errors, go to the maintenance interface of the transaction.
    To navigate to there, use the link to the account application
    Pls suggest how to proceed with this error & helpful solutions would be rewrded generously.
    Regards,
    Basavaraj Patil

    Hi Experts,
    We are getting this error when try to create Activity from Account application in PCUI. But the same thing is working fine in at GUI level & actions profile assigned to Activity transaction is also working fine at GUI level. But in PCUIit is throwing this below error.
    Diagnosis
    You have attempted to create a follow-up transaction for an incorrect transction 2000764. This is not possible. You can only create follow-up transactions for error-free transactions.
    System Response
    The follow-up transaction is not created.
    Procedure
    Correct the errors in the source transaction 2000764. The error messages resulting from processing the error can be read in the application log in the source transaction.
    Pls suggest solution for this.
    Thanks in Advance.
    Regards,
    Basavaraj Patil

Maybe you are looking for

  • Installing windows 8.1 On Lenovo G40-70

    Hi, I have just purchased a new Lenovo G40-70A. Windows 8.1 came seperately and I need to install. So booted the computer and inserted windows. I then turned off and booted with the novo button. I chose to boot from the windows CD and after entering

  • Dock disappears when i hover the mouse on it

    Brand new 27" iMac, the dock dissapears when I hover mouse over it, making it impossible to open apps. I have to open via mission control...any ideas folks??

  • Any way to adjust color from built-in camera?

    I would like to adjust skin tones displayed when using built-in camera for photo booth and Skype.  Any way to do this without changing the display itself -- as web pages and photos from my digital camera look great as is.  Thanks, Philip

  • All the sqr process are results in error

    While running any sqr process,it's erroring out with the below mentioned error output.All other process are running fine.Please help me to fix the issue. PeopleTools 8 - PSSQR Copyright (c) 1988-2005 PeopleSoft, Inc. All Rights Reserved Invalid datab

  • Material Master in R/3 - unintended outbound queue to SRM

    Dear Experts, sorry to intrude your mail boxes and thank you very much in advance for any pointers. I am facing a problem with respect to Materials (material masters). We have a newly created SAP system connected to our SRM. In this newly created SAP