OEM Scheduled Job Not Assuming OS User File Permissions

I have defined and scheduled a job using OEM Grid Control that executes an OS level command which is a script containing the HP-UX find command. When I run the script at the OS level the script completes successfully. When the job scheduler runs the job it fails because the find command doesn't have permission to recursively traverse the subdirectories even though the subdirectories are owned by the process executing the find command. The preferred credentials for the job are set to the same user that I used to run the job manually. Why would this be happening?
We're using OEM Grid Control 10.2.0.3.0 running on Linux used to manage Oracle 10G on HP-UX. Please help.

Please paste the script and error

Similar Messages

  • DPM 2012 R2 Upgrade - Scheduled jobs not running

    Hi,
    We're having an issue after upgrading to DPM 2012 R2 where the scheduled jobs are not running.
    We're running Server 2012 R2 with SQL Server 2008 R2 SP2.
    Looking at SQL jobs, if we run the job step we get an error.
    Message
    [136] Job 18822c3e-8fe 7-47a2-bb6e-0feccecc2952 reported: The process could not be created for step 1 of job 0xA746B176EAD99943A14A57DAF684829F (reason: %1 is not a valid Win32 application)
    However, if we place quotes around the triggerjob.exe path in the SQL default job step:
    "C:\Program Files\Microsoft System Center 2012 R2\DPM\DPM\bin\TriggerJob.exe" 9b30d213-b836-4b9e-97c2-db03c3eb39d7 18822c3e-8fe7-47a2-bb6e-0feccecc2952 server.domainname.com
    It is successful. 
    We've already uninstalled DPM 2012 R2 and re-installed, restored the database and run dpmsync -sync with the same result. We've checked the DCOM Config Launch and Activation Permissions for Microsoft System Center 2012 R2 Data Protection Manager Service
    and has full access.
    Has anyone else had this issue and been able to resolve it?
    Any help would be greatly appreciated.

    Hi,
    The below blog may assist with troubleshooting your issue.
    http://blogs.technet.com/b/dpm/archive/2014/10/08/how-to-troubleshoot-scheduled-backup-job-failures-in-dpm-2012.aspx
    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, Dwayne Jackson II. [MSFT] This posting is provided "AS IS" with no warranties, and confers no rights."

  • SCCM 2012 R2 User State Migration Win XP to Win 8.1 does not migrate Domain User Files

    Hi @ all
    i'm trying migrate Win XP Sp3 to Win 8.1 using SCCM 2012 R2. So i followed the how to from the SCCM Team.
    https://blogs.technet.com/b/configmgrteam/archive/2013/09/12/how-to-migrate-user-data-from-win-xp-to-win-8-1-with-system-center-2012-r2-configmgr.aspx
    All things worked fine, but the user files from my test Domain user are not restored.
    Here some extracts of the loadstate log.
    2014-01-07 15:49:16, Info                  [0x000000] User SCCM\test.user maps to S-1-5-21-2486663232-1734351201-1738771205-1113
    2014-01-07 15:49:16, Info                  [0x000000] User TEST-COMPUTER\Administrator maps to TEST-COMPUTER\Administrator
    2014-01-07 15:49:16, Error                 [0x000000] The account TEST-COMPUTER\User is chosen for migration, but the target does not have account TEST-COMPUTER\User. See documentation
    on /lac, /lae, /ui, /ue and /uel options.
    2014-01-07 15:49:16, Info                  [0x000000] Failed.[gle=0x00000006]
    2014-01-07 15:49:16, Info                  [0x000000]   Unable to create a local account because /lac was not specified[gle=0x00000006]
    2014-01-07 15:49:16, Info                  [0x000000] Entering MigCloseCurrentStore method
    2014-01-07 15:49:16, Info                  [0x0801dc] Closing catalog file
    2014-01-07 15:49:16, Info                  [0x0801dd] Deleting catalog file at C:\Windows\Temp\tmpF6E7.tmp\Temp\tmp9F3.tmp
    2014-01-07 15:49:16, Info                  [0x000000] Leaving MigCloseCurrentStore method
    2014-01-07 15:49:16, Info                  [0x000000] USMT Completed at 2014/01/07:15:49:16.078[gle=0x00000057]
    The user sccm\test.user is my test user but, i cannot see any error in relation to that user.
    Has some some an idea?
    Thank you
    Adrian

    Hi,
    I found a similar article for your reference.
    http://blogs.technet.com/b/sudheesn/archive/2009/12/28/in-place-upgrade-from-windows-xp-to-windows-7.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Scheduled job not getting executed on a logical standby

    Hello,
    We have created a job(through dbms_scheduler API). The job is enabled and shows up in the SCHEDULERJOBS view also.
    However the job does not get executed. I looked into the following tables there was no relevant entry found for the aforesaid job:
    select * from all_scheduler_job_log
    select * from dba_scheduler_running_jobs
    select * from DBA_SCHEDULER_JOB_RUN_DETAILS order by log_date desc
    Is there any limitation that we cannot execute scheduled jobs on a logical standby database. If i execute the relevant program (that is configured to be run as job in this scenario) as an individual procedure from SQL plus, it gets executed successfully implying there is no errors/problem in the subprogram that the job is going to invoke.
    Appreciate your thoughts in this regard.
    Thanks.

    Hi Justin,
    Thanks for your response.
    As per the app design, the job invokes a stored program(that maps to a stored procedure present in standby db itself) that reads the data from standby and populates the relevant tables/entities in another database(third db, not primary or standby) which acts as a repository. No write operations are to be performed on standby.
    So, i have two doubts:
    -- Can scheduled jobs execute on logical standby db[Oracle release 10g(R2)]
    I was going through few of the oracle docs and it is mentioned that this is a known limitation in 10g
    R2 release and has been corrected in 11g. Now we have something called database_role
    attribute that needs to be set to 'LOGICAL STANDBY' if you need to execute a job on
    standby. However it is available in 11g onwards.
    -- If there is no workaround for the above mentioned problem in 10g-R2 release.
    Then we may have to schedule a job from third db instance that shall invoke the program(residing on the standby db). Can we have a scheduled job which executes a program that maps to a remote stored procedure instead of local stored procedure?
    Appreciate your thoughts.
    Thanks

  • Database Scheduled Jobs not working

    Hai All,
    In my database Scheduled database jobs not working , but it work manullay fine...
    All parameter are correct including job_queue_processes.. Where I can start troubleshoot for this problem.
    Oracle: Oracle 9.2.0.1.0
    Platform : AIX
    Please help ...
    Shiju

    did you enabled the job?Unlikely. DBMS_SCHEDULER was a 10g innovation and as the OP mentioned, they're on 9i.
    Oracle: Oracle 9.2.0.1.0Cheers, APC

  • Automated Monitoring Scheduled Job not completing - PC

    Hello Experts,
    When we have scheduled a automated monitoring job, it is not getting executed completely and the status is shown as "In Progress". Also when we open the "Job Step Log" tab of the scheduled job in Automated Monitoring it is blank
    What could be the reason for it?
    Regards,
    Ramakrishna Chaitanya

    Hi
    Try with Sox export role. Asynchronous mode?

  • Print to file problem (output size does not alter the user file measures)

    Hi all,
    as I'm using LR 2.2 (on Win XP) as trial version you can see that I'm a newbie to the programme which I like every day better as I step deeper into it.
    I fought my way through organizing and developing my photos but now I have problems with the print module. I want to print the photo to a file (jpg) and therefore I am really happy about the new print to file option.
    My understanding was, that when I choose the option of user file measures in the print to file module then all other settings (paper and printer settings as well as paper and layout settings) where sort of "overruled". Although I changed some of the other settings (for example paper setting in the printer dialog to DIN A 6) the idea was to get prints of the dimension 105.13 mm x 148.17 mm (DIN A6). This picture size is therefore my user file measures setting.
    But it seems that I missed some important settings because I get pictures which are of the same size like the original photos: 43.8 cm x 61.7 cm and therefore much to big.
    I would be pleased if someone could point out where my mistake is rooted.
    THX!
    Jens David

    First of all thanks for the message.
    But my problem is that neither of the two ways is working properly. Perhaps there was some kind of misunderstanding because I didn't used the official terms.
    I specified the page size setting in the page setup dialog to DIN A6 AND I (tried to) override this by using the Custom file dimensions in the Print Job Section; there I used as well the DIN A6 dimensions of 105.13 mm x 148.17 mm.
    Nonetheless my output file retains its original file dimensions.
    I think I still need some ideas where the (or my) problem is rooted.
    THX in advance.
    JD

  • OEM Scheduled Jobs

    Can anyone answer this question?
    Thanks,
    John
    Is OEM set up to run UNIX command scripts or is OEM schedule just a way to manage the DBMS_Job queue?

    In 10g, it uses DBMS_SCHEDULER instead of dbms_job

  • How to schedule job with a system user BTC_100

    Hi,
    Someone setup the background job user BTC_100 as a system user (not a dialog nor service user). I need to schedule a new job and want to have the createBy as BTC_100 instead of my own ID.
    I got error (Please logon as a dialog user) when tried to logon as BTC_100.
    Do people usually set up their background job ID as a system ID? How can I schedule a new job as BTC_100?
    Many thanks in advance!
    -Serine

    Hi Prince,
    Besides the step owner, I wanted to have the job owner to be BTC_100 as well. Otherwise when I run SM37 and search for job, I'll have to put my ID instead of keep it as BTC_100.
    From SUIM, I see BTC_100 has been changed from dialog to SYSTEM so maybe I have to change it to dialog first, create the job and then change it back to SYSTEM?
    thanks!
    -Serine

  • DB Control scheduled jobs not start

    I've several scheduled RMAN backup jobs in the jobs library of DB Control of a RAC database (not DBMS_JOBS). The problem is these jobs never start. Only start when I select "Execute immediately".
    Any clues or log/trace files I could check?
    Thanks.

    What is the setting of job_queue_processes in the Initialisation parameter of each instance?. Ensure that it is set to something greater than 0.

  • Scheduled Job not running properly

    Hello Friends,
    I have a webservice that sends the mail to 24 or above users at a single go . This functionality I need to schedule . So I designed the job for same purpose , now the problem is that the webservice is running absolutely fine but once the job is scheduled and run , the mails are not send . I tried to send a single mail also with the help of scheduler API and was succefull in doing that but If the webservice needs to send more than one mail , this does not happen through the Scheduler API
    I also had encountered problem while runnign the webservice earlier. I was getting the Read timed out error during execution of webservice For its solution I increased the time out period of the webservice  mannually ( from the left panel , the time out period can be increased in WebService Navigator ) and the problem got solved , this you cant do once you have scheduled the job so one of the reson may this time out expiration also .
    So can any one help me out with the way to increase the time out period for the webservice not mannually rather in a more stabel and permanent way
    Edited by: Smriti_techno on May 5, 2009 8:50 AM

    hi
    refer this link for example of scheduler api
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90a95132-8785-2b10-bda5-90d82a76431e
    let me know am i correct or not
    bvr

  • Schedule jobs not running

    the user execute the abap job and execute in background, but it is not running. He execute many times, but still sit in schedule state, do you know why? there is no error in SM21, will it be authority issues? how to check? thanks

    It looks like it is an authorization issue. Ask them to do that again and immediately in another session, run SU54. This will show all the authorization checks that the user went through and tells you if it failed.
    Alternatively, they can just go to SM37 and try to release it. If it comes back with a message, you will know.
    Srinivas

  • DBMS_SCHEDULER.RUN_JOB causes scheduled job not to run again

    Environment: 10.2.0.2 Linux 64-bit
    Hi,
    I have some DBMS_SCHEDULER chain jobs scheduled to run every hour which has been running fine with no issues for a while now.
    I needed to run a couple of jobs manually in-between scheduled times so I ran the job using DBMS_SCHEDULER.RUN_JOB, and that worked as expected as it has done in the past.
    This issue is that the jobs I ran manually haven't run at their scheduled time since I did that. The only way around it was to recreate the job completely.
    Any idea if this is normal functionality, or should I be raising this as a possible issue through Oracle Metalink?
    Any help or ideas would be much appreciated.
    Thanks
    Tim

    Hi Tim,
    This is a known bug which is tracked internally by bug #5705385. It will be fixed in the next patchsets for 10.2 and 11.1 (i.e. 10.2.0.5 and 11.1.0.7) . If you urgently need a fix, an official patch seems to be available for 10.2.0.3 .
    There does seem to be a workaround - using run_job again after the first run_job has completed will not do anything but the chain job should again run on schedule.
    Hope this helps,
    Ravi.

  • Background job not responding to input file

    Hi all,
        I have created a program which takes one input file . The user gives the path for the file .
    Now the program runs fine in foreground, but it throws the error 'FILE_READ_ERROR' while run in background .
    Any pointers to this ?!
    Thanks,
    ~Abap lover

    In background there is no connection to frontend. You can only pickup files on the application server.
    Regards,
    John.

  • Problems with snow leopard install- can not retrieve my user files

    would it make any sense to re-load my old operating disks (os x) to try and re-cover my old user. I have tried everything from disk repairs to disk warrior, nothing will allow me to copy the user so that i can back it up. Last resort is taking it in and having some one charge me $100 an hour to say your out of luck.

    The laserjet 4m personality can be configured as Auto or fixed to Ethertalk.
    You may need to change the Personality (on the printer, via its control panel) to auto.
    ===
    On the mac, create a new LPR/LPD printer.
    Use 192.168.0.4 as the address.
    You should be able to use the default queue name.
    If it still does not print, then
    open a web browser, goto http:\\192.168.0.4 or print the MIO configuration page from the laserjets control panel.
    verify the settings on the printer. Pay attention to the queue name and any default port listed.
    I think the default queue name is _192.168.0.4
    (Yes, the underscore is part of the name)
    You may have to enter that on the Mac printer setup as well.
    If the default port is 4 digits, then you may need to add it to the printer address.
    For example, if the lpr port is shown as 9300
    then on the address line in printer setup on the mac should read:
    192.168.0.104:9300
    Bonus: once you get it configured correctly, straight LPD/LPR prints a lot faster than appletalk.

Maybe you are looking for