Simple external job works in windows 7 enterprise but not windows 2008 R2 enterprise.

SQL*Plus: Release 11.2.0.1.0
widows 7 sp1 and 2008 sp1 enterprise
The job runs without error on two  windows 7 environments but the job fails on windows 2008 with:
error 255
"EXTERNAL_LOG_ID="job_89424_68834",
ORA-27369: job of type EXECUTABLE failed with exit code: The extended attributes are inconsistent.
I know it's not the credential as I can replace it with another undefined user and it will tell me that username and/or password is not valid.
I create a specific directory with the user in question and verified I can read/write to it.
without any job arguments to cmd.exe I still get the error.
the joe can run the cmd.exe without issue.
Is there some slight difference in windows 7 and 2008 server (security?) that would account for this?
user joe  is a member of the local administrators and ora_dba groups on all servers
job and credential defined as follows:
BEGIN
    sys.dbms_scheduler.create_credential(
        username => 'joe',
        password => joespassword,
    database_role => NULL,
    windows_domain => NULL,
    comments => NULL,
    credential_name => '"DBREP"."joe"'
END;
BEGIN
    SYS.DBMS_SCHEDULER.CREATE_JOB (
            job_name => '"BLAH"."test"',
            job_type => 'EXECUTABLE',
            job_action => 'C:\Windows\System32\cmd.exe',
            number_of_arguments => 0,
            start_date => NULL,
            repeat_interval => NULL,
            end_date => NULL,
            job_class => '"SYS"."DEFAULT_JOB_CLASS"',
            enabled => FALSE,
            auto_drop => FALSE,
            comments => '',
            credential_name => '"BLAH"."joe"',
            destination_name => NULL);
        SYS.DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE(
             job_name => '"BLAH"."test"',
             argument_position => 1,
             argument_value => '/c');
    SYS.DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE(
             job_name => '"BLAH"."test"',
             argument_position => 2,
             argument_value => 'dir');
    SYS.DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE(
             job_name => '"BLAH"."test"',
             argument_position => 3,
             argument_value => 'c:\temp');
    SYS.DBMS_SCHEDULER.SET_ATTRIBUTE(
             name => '"BLAH"."test"',
             attribute => 'logging_level', value => DBMS_SCHEDULER.LOGGING_FULL);
    SYS.DBMS_SCHEDULER.enable(
             name => '"BLAH"."test"');
END;

Hi Andy,
It seems you're hitting the unpublished bug 12886827. The fix for this bug is included in 11.2.0.3 patch bundle 1.
Since your version is 11.2.0.1, you'll need to upgrade, which is not a bad thing anyway because 11.2.0.1 has many bugs.

Similar Messages

  • I have an external HD with PDFs and these can be opened in XP and Windows 8 but not Windows 7.

    I have an external HD with PDFs that can be opened with Windows XP and 8 but not Windows 7. Different version of Adobe reader and Pro on the Windows 7 systems does not make a difference.

    What Reader version you have on Windows 7?
    Can you open such a file with Notepad, then copy and paste the first few lines here in the forum?

  • External drive works in iMovie 9, but not in iMovie 11

    Hi
    I have almost all of my events on an external hard drive which works in iMovie 9 but is invisible i iMovie 11. Can you help?
    thanks,
    Philip

    Wondering if anyone has any thoughts on this issue? I can't figure out why it would work on a test account but not on my main account.
    Thanks!
    Stephen
    Message was edited by: El Gaucho

  • Portal Web parts work fine on server but not Windows 7 Machines

    Hi
    I was testing the Service Manager Portal on the server and couldn't get the web parts to load.
    I followed the steps here in this blog:
    http://www.code4ward.net/main/Blog/tabid/70/EntryId/139/Service-Manager-2012-Self-Service-Portal-not-working-blank.aspx
    Where I added FQDN to the URL.
    The webparts appear now when the page is loaded directly on the server.
    But from a client Windows 7 machines the Portal is still blank with all the web parts not loading?
    Any ideas?

    The most common reason for the silverlight parts not loading is a certificate issue on the web content service.  you might also check
    This blog Post for troubleshooting options.

  • Simple blur filter works on gpu/cpu but not flash

    I'm trying to make a new blend mode for Flash that will blur the pixels behind the source image.  The filter works correctly when testing with the cpu and gpu, but in Flash the blur effect does not work, it simply crossfades the source image  and background image.  Can anyone explain why this won't work in Flash?
    Here is the code for the blend mode:
    <languageVersion : 1.0;>
    kernel NewFilter
    <   namespace : "dave";
        vendor : "dave";
        version : 1;
        description : "Blurs pixels behind the source image.";
    >
        parameter float percent
        <  
            minValue:       0.0;
            maxValue:       1.0;
            defaultValue:   0.25;
        >;
        input image4 src;
        input image4 bg;
        output pixel4 dst;
        void
        evaluatePixel()
            float2 coord = outCoord();
            pixel4 px = sampleNearest(src, coord);
            float4 ox = float4(0.0, 0.0, 0.0, 0.0);
            float denom = 0.0;
            float2 sp = pixelSize(bg);
            // grab 48 surrounding pixels from bg and average them.  Pixel #24 in follwing matrix is coord location.
            //     00 01 02 03 04 05 06
            //     07 08 09 10 11 12 13
            //     14 15 16 17 18 19 20
            //     21 22 23 24 25 26 27
            //     28 29 30 31 32 33 34
            //     35 36 37 38 39 40 41
            //     42 43 44 45 46 47 48
            // 00
            ox += sampleNearest(bg, coord + float2(-sp.x * 3.0, -sp.y * 3.0));
            denom++;
            // 01
            ox += sampleNearest(bg, coord + float2(-sp.x * 2.0, -sp.y * 3.0));
            denom++;
            // 02
            ox += sampleNearest(bg, coord + float2(-sp.x, -sp.y * 3.0));
            denom++;
            // 03
            ox += sampleNearest(bg, coord + float2(0.0, -sp.y * 3.0));
            denom++;
            // 04
            ox += sampleNearest(bg, coord + float2(sp.x, -sp.y * 3.0));
            denom++;
            // 05
            ox += sampleNearest(bg, coord + float2(sp.x * 2.0, -sp.y * 3.0));
            denom++;
            // 06
            ox += sampleNearest(bg, coord + float2(sp.x * 3.0, -sp.y * 3.0));
            denom++;
            // 07
            ox += sampleNearest(bg, coord + float2(-sp.x * 3.0, -sp.y * 2.0));
            denom++;
            // 08
            ox += sampleNearest(bg, coord + float2(-sp.x * 2.0, -sp.y * 2.0));
            denom++;
            // 09
            ox += sampleNearest(bg, coord + float2(-sp.x, -sp.y * 2.0));
            denom++;
            // 10
            ox += sampleNearest(bg, coord + float2(0.0, -sp.y * 2.0));
            denom++;
            // 11
            ox += sampleNearest(bg, coord + float2(sp.x, -sp.y * 2.0));
            denom++;
            // 12
            ox += sampleNearest(bg, coord + float2(sp.x * 2.0, -sp.y * 2.0));
            denom++;
            // 13
            ox += sampleNearest(bg, coord + float2(sp.x * 3.0, -sp.y * 2.0));
            denom++;
            // 14
            ox += sampleNearest(bg, coord + float2(-sp.x * 3.0, -sp.y));
            denom++;
            // 15
            ox += sampleNearest(bg, coord + float2(-sp.x * 2.0, -sp.y));
            denom++;
            // 16
            ox += sampleNearest(bg, coord + float2(-sp.x, -sp.y));
            denom++;
            // 17
            ox += sampleNearest(bg, coord + float2(0.0, -sp.y));
            denom++;
            // 18
            ox += sampleNearest(bg, coord + float2(sp.x, -sp.y));
            denom++;
            // 19
            ox += sampleNearest(bg, coord + float2(sp.x * 2.0, -sp.y));
            denom++;
            // 20
            ox += sampleNearest(bg, coord + float2(sp.x * 3.0, -sp.y));
            denom++;
            // 21
            ox += sampleNearest(bg, coord + float2(-sp.x * 3.0, 0.0));
            denom++;
            // 22
            ox += sampleNearest(bg, coord + float2(-sp.x * 2.0, 0.0));
            denom++;
            // 23
            ox += sampleNearest(bg, coord + float2(-sp.x, 0.0));
            denom++;
            // 24
            ox += sampleNearest(bg, coord);
            denom++;
            // 25
            ox += sampleNearest(bg, coord + float2(sp.x, 0.0));
            denom++;
            // 26
            ox += sampleNearest(bg, coord + float2(sp.x * 2.0, 0.0));
            denom++;
            // 27
            ox += sampleNearest(bg, coord + float2(sp.x * 3.0 ,0.0));
            denom++;
            // 28
            ox += sampleNearest(bg, coord + float2(-sp.x * 3.0, sp.y));
            denom++;
            // 29
            ox += sampleNearest(bg, coord + float2(-sp.x * 2.0, sp.y));
            denom++;
            // 30
            ox += sampleNearest(bg, coord + float2(-sp.x, sp.y));
            denom++;
            // 31
            ox += sampleNearest(bg, coord + float2(0.0, sp.y));
            denom++;
            // 32
            ox += sampleNearest(bg, coord + float2(sp.x, sp.y));
            denom++;
            // 33
            ox += sampleNearest(bg, coord + float2(sp.x * 2.0, sp.y));
            denom++;
            // 34
            ox += sampleNearest(bg, coord + float2(sp.x * 3.0, sp.y));
            denom++;
            // 35
            ox += sampleNearest(bg, coord + float2(-sp.x * 3.0, sp.y * 2.0));
            denom++;
            // 36
            ox += sampleNearest(bg, coord + float2(-sp.x * 2.0, sp.y * 2.0));
            denom++;
            // 37
            ox += sampleNearest(bg, coord + float2(-sp.x, sp.y * 2.0));
            denom++;
            // 38
            ox += sampleNearest(bg, coord + float2(0.0, sp.y * 2.0));
            denom++;
            // 39
            ox += sampleNearest(bg, coord + float2(sp.x, sp.y * 2.0));
            denom++;
            // 40
            ox += sampleNearest(bg, coord + float2(sp.x * 2.0, sp.y * 2.0));
            denom++;
            // 41
            ox += sampleNearest(bg, coord + float2(sp.x * 3.0, sp.y * 2.0));
            denom++;
            // 42
            ox += sampleNearest(bg, coord + float2(-sp.x * 3.0, sp.y * 3.0));
            denom++;
            // 43
            ox += sampleNearest(bg, coord + float2(-sp.x * 2.0, sp.y * 3.0));
            denom++;
            // 44
            ox += sampleNearest(bg, coord + float2(-sp.x, sp.y * 3.0));
            denom++;
            // 45
            ox += sampleNearest(bg, coord + float2(0.0, sp.y * 3.0));
            denom++;
            // 46
            ox += sampleNearest(bg, coord + float2(sp.x, sp.y * 3.0));
            denom++;
            // 47
            ox += sampleNearest(bg, coord + float2(sp.x * 2.0, sp.y * 3.0));
            denom++;
            // 48
            ox += sampleNearest(bg, coord + float2(sp.x * 3.0, sp.y * 3.0));
            denom++;
            ox = ox/denom;
            dst = mix(px, ox, percent);

    Knowing that this also does not work in your flash project helps. As for the ordering problem, I believe the toolkit orders the input images in z-order according to the order in which the inputs are declared in the filter with the frontmost displayed image being the first image declared in the filter. The Flash preview appears to reverse that order. I believe this choice is being made on the Flash runtime side. Kevin may be able to provide more insight. Regardless, it would be nice if the behaviors were identical.

  • Ok on Windows XP but not Windows 7

    Hi,
    I made an AIR desktop application using Flashbuilder 4.5. I used a Mac with OS Lion for this and the application works fine. My client tested the application on Windows XP and it was fine but when tested on Windows 7 some part of the application did not show up. The application is using a SQLite database. However, not only the data but buttons etc on two related pages are also missing. Has anybody experienced something similar or knows what the problem could be?  AIR applications should independent of the system.
    Thanks!

    That sounds odd that one Windows OS is working, but the other is not.  Is there anything in your logic that could change the view states of these controls?  If you'd like, I'd be willing to also take a look.  Feel free to send your project or installer to [email protected] and I'll try on my systems.
    Chris

  • When i burn videos to a dvd-r disc it works on my macbook but not on a windows/pc or my dvd player. How can i make it work on all the above and not just a mac product?

    when i burn videos to a dvd-r disc it works on my macbook but not on a windows/pc or my dvd player. How can i make it work on all the above and not just a mac product?

    Unfortunately, the recording & movie industry does not respect the rights of the people who make them money, and thus you can only use the paid-for content in ways they see fit. Even if I lived in a bunker where no one else could possibly see the movie I paid for, therefor I'm not 'sharing it illegally', I would still not be allowed in a blue moon to copy that movie to DVD for TV viewing. Someone will tell you to get an AppleTV. How about Apple give us one for free? Until this changes, people wanting to use their content in multiple locations will continue to download music & movies via torrents, legally or illegally.

  • Windows 8.1 64bit. Webcam works with "Camera" app but not with Skype.

    I've spent a few hours googling and trying out various things - all listed below. I give up - any ideas??? OS: Windows 8.1 64bitMemory: 32GBWebCam: Microsoft VX-7000. As per subject - the webcam works with the "Camera" app but not with Skype for desktop or for Modern UI (or the Microsoft Lifecam software for that matter).  Already attempted: 1) Uninstall webcam drivers - download latest from microsoft (Windows 7) and install in Windows 7 compatibility mode.2) Close (from taskmgr) anything that looks like it might use Webcam. 3) Run Skype for Desktop in Windows 7 and 8 compatibility modes None of the above work. In Skype for Modern UI the webcam doesn't appear in the drop down in Settings - so I can't even select it. In Skype for desktops (version 6.11.32.102) the webcam is found but instead of image I get "Can't start video. Try closing other programs that might be using your webcam". I see from a bit of googling that various people seem to have the same issue (i.e. Webcam works with Camera app but not Skype) - so I'm hopeful someone has found a workaround / fix to this issue and I've just not had the googling skills to find it  Thanks, - Matt Symes

    OK - I appear to have resolved the issue.  I restricted my google terms to [vx-7000 site:microsoft.com "windows 8.1"] Which uncovered this article: http://support.microsoft.com/kb/933311 I noticed there were a couple of Windows 7 x64 specific registry settings that were mentioned so I checked these and they weren't as per the article. In fact - one of the Registry Keys was already used by other software "AI Charger+" which is some ValueAdd software that came with my motherboard. I uninstalled AI Charger+, uninstalled LifeCam driver. Reinstalled LifeCam driver in Windows 7 compatibility mode. Still not working. I returned to the registry and noticed the settings still differed from the above article. I corrected them (which involved not just amending Data but having to add new Values). I then disabled and reenabled the LifeCam from dvcmgmt.msc I was then able to get video from the webcam in the Skype for Desktop preview screen.    

  • Enterprise Mgr works with one db but not the other

    Hi
    We have two Oracle 10g databases installed. Enterprise Manager works with the second, but not the first. I believe the problem started when we migrated the host server to another network domain. Everything else works fine, but I'm getting a page load failure when attempting to access enterprise mgr.
    The second db was installed after the migration and EM works fine.
    Can anyone tell me how to reconfigure this?
    Thank you

    by any change hostname or ip was changed during migration
    also can u paste the emoms.trc ?

  • I accidentally cut instead of copied a folder of previously imported raw files. When I pasted the folder back I could see it in Windows Explore but not in the LR library. How can I work with these files again?

    HI,
    My daughter will often ask me to give her raw files I've taken at family events so that she can process them in her own copy of LR. (I work too slowly, apparently.) Recently I inadvertently cut instead of copied a folder. When I pasted it back I could see it in Windows Explorer but not in my LR library. I thought that re-importing the files might work, LR gave me a message that they were already imported. I expect there is a way to make the files available again in LR and would be grateful for some advice.
    thanks
    Ken

    The solutions is either of the following:
    Adobe Lightroom - Find moved or missing files and folders
    Copy the photos back into the exact same folder and folder location that they were in before
    I don't know what you actually did "when I pasted it back" ... but the bigger issue is that you shouldn't be working with these files in your operating system, period. Once you import them into Lightroom, you don't manage these files in your operating system.

  • Illustrator extention export PDF file as PSD worked on Windows XP but not on Windows 7

    We have a extension that convert files to CMYK PSD with color profile attached. It worked fine (for most of files) on Windows XP but not on Windows 7.
      var expOpt: ExportOptionsPhotoshop = new ExportOptionsPhotoshop();
      expOpt.resolution = 300;
      expOpt.imageColorSpace = ImageColorSpace.CMYK;
      expOpt.embedICCProfile = true;
      doc.exportFile( psdFile, ExportType.PHOTOSHOP, expOpt );
    above code never throw any exception on Windows7, but just no file been saved. It only happened to convert PDF to PSD.
    If I manually open file in Illustrator (win7) and export it as PSD, I got ‘not enough memory’ error.  I googled a solution make the manual exporting worked but still the extension didn’t work.
    The solution for manual operation is set ‘additional plug-in folder’ for preferences-> plug-ins& Scratch disks’.
    Any advice?
    Thanks!
    Ling

    I apologize for not having an answer. I just wanted to chime in and say that I am having the exact same issue. I have never had this before. It's happened ever since I had my hard drive replaced and Illustrator has been reinstalled, so I am assuming that it's a preference somewhere that I have missed?

  • Superdrive works on XP/bootcamp but not on OSX?

    So, I've been through this a billion times. Even time-machined & formatted. But nothing works..
    I went through about 200 DVD's trying to put together a proposal for school and it kept failing to burn. With Toast, Disk Utility, Drag&Drop notta. Finally pulled the data onto my external, booted into Windows using boot camp, used nero, and worked without a Hitch.
    I've tried every trick on this site and on every other site possible. Tech support says that i'm free to pay em to replace the drive and tried arguing with em bout the bootcamp working etc.. (long story), but eh... fail! (mac support = worse then windows at this point)
    I have a hard time feeling this is a Hardware issue since it works on the Windows BootCamp partition but not on the Mac OSX 10.5.4 partition.
    MATSHITA DVD-R UJ-857E:
    Firmware Revision: ZA0E
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipping Drive)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -R DL, -RW, +R, +R DL, +RW
    Write Strategies: CD-TAO, CD-SAO, DVD-DAO
    Media: Insert media and refresh to show available burn speeds
    I'm not as fluent in mac as i am with windows (MCSE/MCSA) but going to 2 years of electrical school I damned well know this most likely is a software issue not hardware.
    After spending three days reading in this forum i havn't found anything that works or similar to someone saying it works in bootcamp partition but not osx... sooo just curious if anyone's got any ideas worth while..
    thanks!

    There is no way to do this and I don't believe Apple would view this as an "issue"; in my humble opinion, it is because iMacs have a gorgeous display (your choice of 21.5 or 27") and therefore were not necessarily designed to be used with a second display, whereas laptops were - hence the available option to use it in clamshell mode:
    http://support.apple.com/kb/HT3131
    Edit: You can create a totally black image and use that as your desktop picture if you like.
    Message was edited by: Barbara Daniels1

  • How do I troubleshoot installation/distribution of a LabVIEW .exe which processes data using Matlab when it works on some computers but not others?

    I've been given the unenviable task of troubleshooting and installing/distributing software written by a former co-worker. I've modified the LabVIEW code and built an .exe file. I've successfully installed the Labview .exe file on several computers, but it won't work on some others. What's more baffling is that I installed it successfully on one computer, uninstalled it, and tried reinstalling it with no success. In fact, it's a new error (Dr. Watson for Windows NT application error). It doesn't help that I have different versions of LabVIEW and Matlab on the target computers. Some have LabVIEW 5.1, some
    have 5.0, and some don't have it at all. Some have Matlab 5.2, some have 5.3 (R11) and some have 6.0 (R12). It's also not clear to me where the Matlab m files should be located. I'm not sure if it's a LabVIEW Runtime Engine problem, or if it's a Matlab problem. I've also wondered how LabVIEW and Matlab talk to each other. When LabVIEW calls Matlab, it seems that Matlab is running in the background. In other words, clicking on the Matlab Command Window and typing "whos" or any other command/variable doesn't work.

    Jay del Rosario wrote:
    >
    > How do I troubleshoot installation/distribution of a LabVIEW .exe
    > which processes data using Matlab when it works on some computers but
    > not others?
    Poke around zone.ni.com and
    http://digital.natinst.com/public.nsf/$$Search/ .
    Good luck, Mark

  • Isight works with photo booth but not in ichat or google talk or skype?

    isight works with photo booth but not in ichat or google talk or skype?

    Hi
    Is this an Internal or External iSight ?
    In iChat, in the Video Menu (This is to the right of Buddies and may read Audio) is Camera Enabled Ticked ?
    If it reads Audio open the Connection Doctor from that same menu.
    In the connection Doctor open the Capabilities tab
    Does it say your Internet Connection is too slow ?
    At this point I would need to know which iChat Version.
    However also look in the View Menu.
    Is Show VIdeo Status ticked ?  (this shows green Icons next to your Buddy Pic and those of your Buddies
    Next go to the iChat Menu > Preferences > Video Section
    Do you see a preview here ?
    Re: GoogleTalk
    Have you enabled TALK on your Google Account Settings ?
    You need to have a Google Mail ID (Not any other sort of Google ID)
    Have you downloaded the Intel only Web Browser Plug-in to do Video in a  Web Browser.
    10:48 PM      Tuesday; August 30, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Button hyperlinks work in project preview but not in published .swf

    Captivate 6, button hyperlinks work in project preview but not in published .swf, the cursor changes the “the hand” but the hyperlink does not redirect.
    Any ideas?
    Like I said my buttons work great in preview mode after publishing, one click and the PDF opens in a new browser window. Open the project through the published .swf files and the links will not work.
    Using Captivate 6 on WIndows 7

    Hello,
    Welcome to Adobe Forums.
    Once your project published, add the .swf file in Flash Global Setting :
    1) Right Click on the content (Published .swf file) and click on Global Settings
    2) Go to Advanced Tab and Click on Trusted Location Settings  (Scrool down to see this button)
    3) Click on "Add" button and then "Add file", browse for the Captivate 6 published file and click on OK
    4) Launch the .htm file again (Location where Captivate publish your project)
    Hope this helps !!
    Thanks,
    Vikram

Maybe you are looking for

  • Getting RAM error messages saying files can't be opened

    This is happening even when I have closed out of all other applications. I have 8GB of ram and 256GB flash storage. The specific file says it is 85.2 MB, this just seems so small compared to what my computer says it can handle. I have a RAM cleaner t

  • Enter message in User Decision Step

    Hi, I am developing a workflow, I have a requirement wherein before the user takes decision and clicks on the buttons say 'yes' or 'no' , he should be able to enter a message, is there any standard object type or method which opens up a dialog box fo

  • Horizontal Looper with Spry

    In ASP there are ways and extensions for creating Horizontal Loops in dreamweaver. Is there a way to create a Horizontal Loop with a Spry Dataset?

  • Trace PO number from TP material doc number of sub contractor

    Hi, How to trace PO number from transfer posting material document number of subcontractor? Regards Kantha

  • Query on IDOC to webservices scenario

    Halo Gurus, In general,if we have scenario involving webservices,we get WSDL file and use it in scenario development. In case,if WSDL is not provided ,can anyone help me to understand how to proceed with the scenario? Please provide more details,what