Can't manage to disable a Job.

I have a job that was created by a prior DBA (no longer with my company). This is the data on the job from DBA_SCHEDULER_JOB:
OWNER JOB_NAME LAST_START_DATE
CDEPOT_OWNER Check File Delivery Status 16-DEC-09 10.30.00.110007 AM -05:00
REPEAT_INTERVAL ENABL
FREQ=MINUTELY;I TRUE
NTERVAL=30
STATE NEXT_RUN_DATE LAST_RUN_DURATION FAILURE_COUNT
SCHEDULED 16-DEC-09 11.00.00.000000 AM -05:00 +000000000 00:00:00.051310 15
Here's the same data (more or less) from the SYS.SCHEDULER$_JOB table:
OBJ# PROGRAM_ACTION CREATOR JOB_STATUS
121959 CDEPOT_OWNER.CHECKFILEDELIVERYSTATUS CDEPOT_OWNER 1
Okay, so I log into SQL*Plus as CDEPOT_OWNER and try to disable the job:
begin
dbms_scheduler.disable('Check File Delivery Status');
end;
begin
ERROR at line 1:
ORA-00931: missing identifier
ORA-06512: at "SYS.DBMS_UTILITY", line 132
ORA-06512: at "SYS.DBMS_UTILITY", line 164
ORA-06512: at "SYS.DBMS_UTILITY", line 218
ORA-06512: at "SYS.DBMS_SCHEDULER", line 540
ORA-06512: at line 2
This is the SAME command that I've used to disable other jobs I've created (also as CDEPOT_OWNER). I'm stumped as to why it won't let me disable this job and I really NEED to disable this job ASAP 'cause it's causing problems for other processes. Any and all assistance gratefully accepted.
Leigh Smith

Okay, I tried using the double quotes as suggested and now I get a DIFFERENT error:
begin
dbms_scheduler.disable("Check File Delivery Status", TRUE);
end;
dbms_scheduler.disable("Check File Delivery Status", TRUE);
ERROR at line 2:
ORA-06550: line 2, column 27:
PLS-00905: object CDEPOT_OWNER.Check File Delivery Status is invalid
ORA-06550: line 2, column 4:
PL/SQL: Statement ignored
So I thought...okay...what if one of the underlying objects referenced by the job (two PL/SQL procedures) was invalid? Maybe that's my problem. So I recompiled them both and they compiled cleanly and show as valid. But, when I tried to run the snippet above...same outcome. I'm really beginning to not like my predecessor.
Leigh Smith

Similar Messages

  • HT201442 My daughter has managed to disable her ipad mini by entering the wrong pass code several times.  How can I get it working again?

    My daughter has managed to disable her Ipad mini by entering the wrong pass code several times as she couldn't remember what she changed it too.  How can I fix this?

    This article should help.
    http://support.apple.com/kb/ht1212

  • Job Scheduling in Solution Manager - Error creating Periodic Job

    Hi all,
    I am in the process of testing the Job Scheduling functionality using the Solution Manager.  I have setup the criteria manager, ec. in the satellite system, and done the config in Solman as well. 
    I am able to successfully setup up a 'on-time' job.
    it's only when I try to setup a periodic job, I end up getting following error
    Any thoughts?  Is there any piece of config that's missing?  All the SICF services needed for this functionality are running fine.
    Thanks for the help.
    500 Internal Server Error
    Error when processing your request
    What has happened?
    The URL https://fsspsm.target.com:/sap/bc/webdynpro/sap/wd_ags_ejr_job_req_gaf_app was not called due to an error.
    Note
    The following error text was processed in the system PSM : Message was not created
    The error occurred on the application server fsspsmap01_PSM_00 and in the work process 1 .
    The termination type was: ERROR_MESSAGE_STATE
    The ABAP call stack was:
    Function: BAPI_NOTIFICATION_CREATE of program SAPLDSWP_NOTIF
    Method: MSG_SUBMIT of program CL_DSMOP_BSP_NOTI_MODEL=======CP
    Method: SUBMIT_REQ_CRM_DATA of program CL_AGS_EJR_JOB_REQUEST_FACTORYCP
    Method: SUBMIT of program CL_AGS_EJR_JOB_REQUEST_FACTORYCP
    Method: PROCESS_SCENARIO_PERIODIC of program CL_AGS_EJR_JSM_PROC_STANDARD==CP
    Method: PROCESS_JOB_SCENARIO of program CL_AGS_EJR_JSM_PROC_STANDARD==CP
    Method: IF_AGS_EJR_JSM_PROC_FPM_CTRL~AFTER_PROCESS_EVENT of program CL_AGS_EJR_JSM_PROC_STANDARD==CP
    Method: AFTER_PROCESS_EVENT of program /1BCWDY/K54G9RCMK7J4Z427H49S==CP
    Method: IWCI_IF_FPM_APP_CONTROLLER~AFTER_PROCESS_EVENT of program /1BCWDY/K54G9RCMK7J4Z427H49S==CP
    Method: CALL_UIBB_PROCESS_EVENT of program CL_FPM========================CP

    Hello,
    This is the basic Job Scheduling functionality and not the Redwood Job scheduling, correct?
    Have you performed the IMG Activiteis in SPRO?
    See the following Help link:
    http://help.sap.com/saphelp_sm70ehp1_sp23/helpdata/en/c5/7edcbd58ce4e29bc1baf1c4761d71f/frameset.htm
    Change a job
    You can change the scheduling of a job as long as it has not been completed. Proceed as follows:
    Make changes.
    Note
    When you change a periodic job, the system searches for the changeable successor and only changes this successor.
    If there is more than one changeable job with the same name, the system does not change any of these jobs.
    End of the note.
    Save your entries.
    To release the job in the target system, select Release.
    You go to the transaction SM37 in the target system.
    You just may want to ensure HTTP Services have been enabled. I realize you said the services workin SICF, but this needs to be verified as 500 Internal Server Error most often means the HTTP services are not activated.
    Regards,
    Paul

  • Disable scheduler jobs during the database refresh

    Chaps,
    I have a strange issue. We have certain jobs scheduled which monitor other jobs and when they aren't running, they send emails using utl_smtp to the whole DBA group. All is working fine on Production but the moment we restore the database to QA, and soon after the database is recovered, it sends an email saying the those jobs aren't running..
    How do I disable the scheduler jobs ? Can it be done while the database is in mount state ? Or, is there any parameters to do so ?

    Hi,
    Although you can't disable the entire scheduler, you can disable individual jobs or all jobs in a job class using dbms_scheduler.disable which will prevent the jobs from running (but not stop already running jobs).
    It should be straightforward to have a table of jobs that should be disabled and have procedures which run over the table either disabling or enabling them.
    -Ravi

  • Manage SQL Server Agent Jobs

    What is the best way to manage SQL Server Agent Jobs?
    Requirement: If any job fails I need an entry(log) to be done in a table.
    Please use Mark as Answer; if my reply solved your problem. Use Vote As Helpful if a post was useful. |WWW.FACEBOOK.COM/SONNIE.HIM | |+91-9742-354-384 |

    Thanks all,
    I went through all the links except provided by
    Tom Phillips, couldn't open it. The thing is that I know results of a Agent job are stored in a table and I can create a SSRS report too and subscribe it to myself or I can use these system tables as a source for my destination table (as asked in the question)
    and create a job to run that code every (so) minutes. But what if the subscription to that report got failed due to network error and what if the job which is managing other jobs, itself fails.
    Is there any full proof idea which I can implement. My client has 2008 R2 installed.
    I have created an object termed as Alerts_FollowUp which I use for sending SMS to respective owner including me. The idea is to make an entry into a table with job name and status. If it status is failed then via Job name I can pick the owner name and number
    stored in my master table and have an entry done in the Alerts_FollowUp. After this using FIORANO I am sending these records to a telecom lease line network which are sending my texts to the respective mobile numbers.
    I believe the provided explanation was necessary and sufficient.
    Please use Mark as Answer; if my reply solved your problem. Use Vote As Helpful if a post was useful. |WWW.FACEBOOK.COM/SONNIE.HIM | |+91-9742-354-384 |

  • The partner transaction manager has disabled its support for remote/network transactions....When inserting during trigger in linked server

    Hi All,
    I am getting below error while inserting into Linked Server (sql2012) thru trigger from sql2008 ....However if i insert the same thru Store Procedure it is inserting successfully....MSDTC service is started on both sql server machines....also both machines
    rebooted....but still i am facing this error.
    OLE DB provider "SQLNCLI" for linked server "XXX.XXX.XXX.XX" returned message "The partner transaction manager has disabled its support for remote/network transactions.".
    Msg 7391, Level 16, State 2, Procedure ins_test, Line 11
    The operation could not be performed because OLE DB provider "SQLNCLI" for linked server "XXX.XXX.XXX.XX" was unable to begin a distributed transaction.
    Could assist to resolve. 
    Regards
    Shehzad

    Hi SHzKhan,
    According to your error message, we need to verify if you configure the MSDTC correctly, When you have more than one SQL Server involved in a Distributed Transaction, you need to make some changes to the default configuration of MSDTC for these distributed
    transactions to succeed. There is a detail about recommending MSDTC settings for using Distributed Transactions in SQL Server, you can review the following article.
    http://support.microsoft.com/kb/2027550/en-us
    There is a similar issue about error 7391, you can refer to the following link.
    http://dba.stackexchange.com/questions/30235/msg-7391-distributed-transactions-dtc-on-sql-server
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Disable creation of VPN "*Session" credential in Credential Manager without disabling all of Credential Manager?

    Is there a way to disable creation of the VPN "*Session" credential in Credential Manager without disabling all of Credential Manager?
    I know that you can disallow storing all domain creds in Credential Manager by setting the following registry entry to 1 (but this doesn't fix my issue):
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Lsa
    Value Name: DisableDomainCreds
    Value Type: REG_DWORD
    Value: 1
    On my Windows 8 Enterprise workstation, I use mapped drives with one domain account and Outlook with a different domain account. Using the fix above fixes my issue with mapped drives (after sleep mode, reconnect to VPN and my mapped drives won't reconnect until
    I delete the '*Session' credential) but then I cannot use Outlook at all.  Note: I do not log on to Windows 8 with either of the domain
    accounts mentioned above (I use a local admin account) and I do not 'save my password' in Outlook.

    I should clarify my question: Is there a way to disable creation of the VPN "*Session" credential in Credential Manager
    without disabling all domain creds in Credential Manager?
    On my Windows 8 Enterprise workstation, I use mapped drives with one domain account and Outlook with a different domain account.
    Normally I can use Outlook if I am connected to the vpn and I can use it if I am not connected to the vpn.
    Normally I can use the mapped drives if I am connected to the vpn and I I can use the mapped drives if I am not connected to the vpn.
    The vpn is essential for me to do my work for reasons other than the mapped drives and the usage of Outlook, but I need to be able to use the mapped drives and Outlook whether I am connected to the vpn or not.
    Let's say my two domain accounts are these: drive-account and outlook-account.  I must use the outlook-account for the connection to the vpn.  When I connect to the vpn, it creates the '*Session' credential in the Credential Manager for outlook-account,
    the mapped drives disconnect and they will not reconnect until I delete the newly created '*Session' credential.  The error is 'An error occurred while reconnecting <drive letter1:> to <\\network\path>  Microsoft Windows Network: The
    local device name is already in use.  This connection has not been restored.'  Further evidence that it is the '*Session' credential causing the failure to reconnect is that I have two mapped drives and if I disconnect one of them and try to reconnect
    the other one, I get a different error, 'An error occurred while reconnecting <drive letter2:> to <\\network\path2> Microsoft Windows Network: Multiple connections to a server or shared resource by the same user, using more than one user name,
    are not allowed. Disconnect all previous connections to the server or shared resource and try again.  This connection has not been restored.'  Manually recreating that first connection then allows me to get back into both, but I should not have to
    manually delete and recreate a mapped drive every time my computer goes to sleep.  At least the manual deletion of the '*Session' credential is slightly less intrusive, but I'd still appreciate if there is a way to disable the creation of the '*Session'
    credential without disabling all domain creds in Credential Manager.  As I have said, if I disable domain creds using the registry fix some have suggested, I do not get the drive errors (after sleep mode and reconnecting to vpn), but I cannot use Outlook
    at all.
    Note: I do not log on to Windows 8 with either of the domain accounts mentioned above (I use a local admin account) and I do not 'save my password' in Outlook.

  • How can I remove a Disabled Extension not compatible with Firefox 4.0.1? I just want to remove it... I don't want to wait for a compatible update. Why can't I remove it?

    When I upgraded from 3.XX to 4.0.1, it informed me that 2 extensions were not compatible and it never gave me the option to remove them. Firefox 4.0.1 disabled them and now I'm not able to remove them.
    Also they were added by Acrobat Pro X (Adobe Acrobat - Create PDF 1.0) and Nokia Ovi Suite (Firefox Synchronisation Extension 7.3.4.51).
    These extensions won't probably be updated unless they update the software that installed them. With this said, How can I remove the disabled extensions? Why it doesn't give me a button to remove them to start with?

    I think it's not the problem of compatibility. Extensions installed into Windows registry won't have a remove button ( or it's greyed out ). For these extensions, you can have a look into these keys:
    HKEY_CURRENT_USER\Software\Mozilla\Firefox\Extensions\
    HKEY_LOCAL_MACHINE\Software\Mozilla\Firefox\Extensions\
    If you are under a 64bit OS as I am, you may also try this key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Mozilla\Firefox\Extensions\
    And you may find the registry entries corresponding to the extensions you want to remove. Just export them to a backup.reg, then delete these entries. Firefox will do the rest, but it seems that fx still leaves extensions.rdf untouched. You can also delete the RDF entries corresponding to those extensions inside extensions.rdf
    cf: http://kb.mozillazine.org/Uninstalling_add-ons#Windows_Registry_extension
    BUT the Wow6432Node key wasn't mentioned in the above article
    I had to search the registry to find out the entry corresponding to a Fiddler2 extension, then I found the Wow6432Node key. I also saw the Nokia Ovi Suite entry beside the Fiddler2 entry.
    Hope it helps.

  • I have two iPhones associated to the same Apple ID. Can I manage music

    I now have two iPhones (4s & 5s) associated to the same Apple ID. I am
    giving my wife the 4S.   
    We like different music & apps from one another. Can I manage music & apps independently on each device even though they have the same Apple ID Association?
    Thanks

    stereo317 wrote:
    I now have two iPhones (4s & 5s) associated to the same Apple ID. I am giving my wife the 4S.   
    We like different music & apps from one another. Can I manage music & apps independently on each device even though they have the same Apple ID Association?
    Yes, but I highly recommend each have your own, separate AppleID and your own computer login to manage your own data separately.

  • How can I manage six email accounts WITHOUT them all appearing (twice) in the Folders column?

    How can I manage six email accounts WITHOUT them all appearing (twice) in the Folders column?
    All I need is ONE INBOX (like Windows Mail used to do) ...
    I can see in the 'Account' column of each message which email account it's using.
    Then, I either junk or read the message, followed by delete or file to one of my created folders.
    As it is, half my page is depth is taken up by 12 lines of Account names !!!

    That still leaves SIX lines of Account names down the side. All I want is ONE INBOX ... (I can see which account each message belongs to in the 'Account' column...)

  • TS3212 can i manage 2 itunes accounts on one computer

    Can I manage 2 iphones on one laptop?

    Hello wzrdfink,
    Thanks for your post, and welcome to the Apple Support Communities.
    The following article may provide more answers to your questions about using multiple devices with one computer.
    How to use multiple iPhone, iPad, or iPod devices with one computer
    http://support.apple.com/kb/HT1495
    Thanks,
    Matt M.

  • I have several phones on my itunes accousnt how can i manage to see only my information

    I have both my daughter and my sons iphone onmy itunes account.  How can I manage my storage to seeonly my apps and my music?

    I don't believe that there is a way to do that.  I would sugest using automatic downloads to keep your apps synced across both phones.  You might also want to note that just about any app you have ever download will be available for free download via icloud.
    Wish I could be more help.

  • Is there a way I can view/manage devices linked to my iCloud account?

    Is there a way I can view/manage devices linked to my iCloud account? I know how to view the devices linked to my iTunes account, but I am not sure if this is possible to see with an iCloud account.

    You can't, except by seeing if they are using services associated with the account.  You could, for example, launch Find My iPhone on iCloud.com to see what devices appear (which obviously wouldn't show devices not using Find My iPhone).  Similarly, you could go to Settings>iCloud>Storage & Backup>Manage Storage to see what devices appear on the Backups list (which won't show devices not using iCloud backup).

  • Can I manage more than one iTouch from one PC?

    A family member has an iTouch managed with iTunes on PC. Another family member would like an iTouch but does not have a computer.
    Can one manage more than one iTouch from one PC? How? Does one install separate instances of iTunes somehow on the PC for each device?
    There is also the desire to have separate Apple Store accounts for each device. We don't what synced devices.

    *How to use multiple iPods with one computer*
    The Apple support document How to use multiple iPods with one computer suggests a number of ways. I use method two (Sync with selected playlists) with a slight twist. Rather than regular playlists I set the grouping field to indicate which users should receive which tracks and create smart playlists based on the content of this field.
    e.g.
    "Alice's Tracks" is "Grouping contains Alice" + "Kind contains audio"
    "Bob's Videos" is "Grouping contains Bob" + "Kind does not contain audio"
    Tracks that both Alice & Bob want on their iPods have the grouping set to "Alice/Bob"
    etc.
    I currently manage our family's five iPods using this system, each getting a different selection to suit their tastes and the capacity of their iPod. An advantage of using the grouping field is that it is stored in file tags (for non-wav audio files anyway) so that it is relatively easy to recreate the playlists should the iTunes library get trashed. Also useful if you move files about manually as playlist membership is preserved when you delete & re-import the tracks.
    tt2

  • Can I manage my Family Sharing and child's Apple ID from my windows computer?

    I've bought a refurbished iPhone in lieu of new iPod touch for a kid. I've had an iPod classic for some years and have always managed my involvement with apple via iTunes on a windows laptop. I want to set up an "under 13" identity for her and start family sharing, but I've yet to find explicit instructions on exactly how to do this. Any suggestions?
    Thanks.

    This should answer:
    From the family Sharing Page (Family Sharing - Apple Support):
    "You can use Family Sharing on your iPhone, iPad, or iPod touch with iOS 8, your Mac with OS X Yosemite and iTunes 12, or your PC with iCloud for Windows 4.0. To get started, one adult in your household—the family organizer—sets up Family Sharing"
    "iOS 8 and OS X Yosemite are required to set up or join a Family Sharing group and are recommended for full functionality."
    To set it up, go to your iCloud Settings on the iOS 8 device.
    So basically, you can't manage it from your PC; from your PC, you can only access the shared iTunes content and other iCloud shared stuff such as photos, calendar etc.

Maybe you are looking for