Has anyone used R3load LOAD "ANY_ORDER" option?

We are testing a migration with a big (32-core) box and this option is listed in Note 1058437 as an option for R3load.
In the note, it asks for us to consult the DB2 documentation, which describes this option:
"Specifies that the load utility can process the input data in any order, resulting in better performance on symmetric multiprocessing (SMP) systems."
"By default, the load utility preserves record order of source data. When load is operating under an SMP environment, synchronization between parallel processing is required to ensure that order is preserved.
In an SMP environment, specifying the anyorder file type modifier instructs the load utility to not preserve the order, which improves efficiency by avoiding the synchronization necessary to preserve that order. However, if the data to be loaded is presorted, anyorder might corrupt the presorted order, and the benefits of presorting are lost for subsequent queries."
http://www.ibm.com/developerworks/data/library/techarticle/dm-0405melnyk/index.html
http://publib.boulder.ibm.com/infocenter/db2luw/v9r7/index.jsp?topic=/com.ibm.db2.luw.admin.dm.doc/doc/c0004605.html
Since most performance optimizations for R3load recommend exporting the data unsorted anyway, and it has to re-sort on import, this seems like it may be a good option to try out.
I was just wondering if anyone had tried this as I had not seen it any of the optimization studies for DB2/R3load.

Hi Frank,
Thanks for the feedback,
We have another import iteration early next week, and then I may freeze any import changes after that run, and just change the R3load parameters to "ANY_ORDER" to see what effect that may have on import times (time permitting).
If I am able to put the parameter in, I will post my results here. We have a variety of packages - separate table packages, and split tables (sequential load on split tables with LOAD_FORCED), so hopefully it will be interesting to see if the parameter behaves differently depending on what type of package it is importing.
I hope to post results here next week.

Similar Messages

  • Has anyone managed to load a movie on their Moza

    I've bought two of these things for the kids this Christmas, and I can load pictures, and music, but I can't seem to load any of my movies. Has anyone else While in the Central Software it shows the file transferring, it take a long time but finally gets to 00%. When I try to view it on the mp3 player it plays 5 seconds, and that's it. It obviously didn't transfer everything. It plays in Media Player as well. I tried to transfer it using media player too. It locks up and I have to end the program. I need a hammer.

    Re: Has anyone managed to load a movie on their Mozaic i With a screen resolution of 28 x 60 you're going to be hard-pressed to get great quality from downscaling a full-size movie. That said, you dissatisfaction with the movies converted by this Daniusoft application may simply indicate the compression level was too aggressi've. That would appear as blocky or splotchy areas during playback or freeze frames. With any converter you need to balance between the quality setting and the final output file size.
    If you search the forum you'll find mention of an application called BADAK http://www.robbiek.com/badak.htm. It is a free converter that is significantly faster than the once Creative bundles that has a preset option for the flash Zen. Those setting will probably work reasonably well for the Mosaic if you change the output resolution from 320x240 down to 60x28. However, I don't have a Mosaic so I'm speculating. Even so the presets may not be ideal for some source video being converted. Quality video transcoding is a "fiddle with it" process not a "one-button" process.

  • Has anyone used Grid Control to implement DataGuard?

    Has anyone used Grid Control to implement DataGuard?

    Hi,
    You are right, without the B&K software there is not much I can load. However this is usefull information. The VIs that you have are a wraper for the calls to the ActiveX pulse control. If those VIs do not provide the functionality for the Intensity Module there are 2 options:
    +The developer did not develop VIs for the module
    +The Pulse ActiveX control does not exposes the functionality of the Intensity Module.
    To find this out, you can create a new VI that opens a reference to the Pulse ActiveX object and start looking for some property that gives you a reference to the Sound Intensity Module, or a a function that allows you to run any methods from the module. There are a bunch of examples that ship with LabVIEW on calling Ac
    tiveX modules.
    You can also try to get the documentation for the ActiveX interface for Pulse to find out whether the Module is exported or not.
    There is also the option to use Native LabVIEW functions for the Sound Intensuty measurements; the Sound and Vibration Toolset can take sound intensity measurements that are compliant with industry standards.
    Let me know how this goes.
    Regards,
    Juan Carlos

  • Has anyone used JAAS with WebLogic?

    Has anyone used JAAS with Weblogic? I was looking at their example, and I have a bunch of questions about it. Here goes:
    Basically the problem is this: the plug-in LoginModule model of JAAS used in WebLogic (with EJB Servers) seems to allow clients to falsely authenticate.
    Let me give you a little background on what brought me to this. You can find the WebLogic JAAS example (to which I refer below) in the pdf: http://e-docs.bea.com/wls/docs61/pdf/security.pdf . (I believe you want pages 64-74) WebLogic, I believe goes about this all wrong. They allow the client to use their own LoginModules, as well as CallBackHandlers. This is dangerous, as it allows them to get a reference (in the module) to the LoginContext's Subject and authenticate themselves (i.e. associate a Principal with the subject). As we know from JAAS, the way AccessController checks permissions is by looking at the Principal in the Subject and seeing if that Principal is granted the permission in the "policy" file (or by checking with the Policy class). What it does NOT do, is see if that Subject
    has the right to hold that Principal. Rather, it assumes the Subject is authenticated.
    So a user who is allowed to use their own Module (as WebLogic's example shows) could do something like:
    //THEIR LOGIN MODULE (SOME CODE CUT-OUT FOR BREVITY)
    public class BasicModule implements LoginModule
    private NameCallback strName;
    private PasswordCallback strPass;
    private CallbackHandler myCB;
    private Subject subj;
             //INITIALIZE THIS MODULE
               public void initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options)
                      try
                           //SET SUBJECT
                             subj = subject;  //NOTE: THIS GIVES YOU REFERENCE
    TO LOGIN CONTEXT'S SUBJECT
                                                     // AND ALLOWS YOU TO PASS
    IT BACK TO THE LOGIN CONTEXT
                           //SET CALLBACKHANDLERS
                             strName = new NameCallback("Your Name: ");
                             strPass = new PasswordCallback("Password:", false);
                             Callback[] cb = { strName, strPass };
                           //HANDLE THE CALLBACKS
                             callbackHandler.handle(cb);
                      } catch (Exception e) { System.out.println(e); }
         //LOG THE USER IN
           public boolean login() throws LoginException
              //TEST TO SEE IF SUBJECT HOLDS ANYTHING YET
              System.out.println( "PRIOR TO AUTHENTICATION, SUBJECT HOLDS: " +
    subj.getPrincipals().size() + " Principals");
              //SUBJECT AUTHENTICATED - BECAUSE SUBJECT NOW HOLDS THE PRINCIPAL
               MyPrincipal m = new MyPrincipal("Admin");
               subj.getPrincipals().add(m);
               return true;
             public boolean commit() throws LoginException
                   return true;
        }(Sorry for all that code)
    I tested the above code, and it fully associates the Subject (and its principal) with the LoginContext. So my question is, where in the process (and code) can we put the LoginContext and Modules so that a client cannot
    do this? With the above example, there is no Security. (a call to: myLoginContext.getSubject().doAs(...) will work)
    I think the key here is to understand JAAS's plug-in security model to mean:
    (Below are my words)
    The point of JAAS is to allow an application to use different ways of authenticating without changing the application's code, but NOT to allow the user to authenticate however they want.
    In WebLogic's example, they unfortunately seem to have used the latter understanding, i.e. "allow the user to authenticate however they want."
    That, as I think I've shown, is not security. So how do we solve this? We need to put JAAS on the server side (with no direct JAAS client-side), and that includes the LoginModules as well as LoginContext. So for an EJB Server this means that the same internal permission
    checking code can be used regardless of whether a client connects through
    RMI/RMI-IIOP/JEREMIE (etc). It does NOT mean that the client gets to choose
    how they authenticate (except by choosing YOUR set ways).
    Before we even deal with a serialized subject, we need to see how JAAS can
    even be used on the back-end of an RMI (RMI-IIOP/JEREMIE) application.
    I think what needs to be done, is the client needs to have the stubs for our
    LoginModule, LoginContext, CallBackHandler, CallBacks. Then they can put
    their info into those, and everything is handled server-side. So they may
    not even need to send a Subject across anyways (but they may want to as
    well).
    Please let me know if anyone sees this problem too, or if I am just completely
    off track with this one. I think figuring out how to do JAAS as though
    everything were local, and then putting RMI (or whatever) on top is the
    first thing to tackle.

    Send this to:
    newsgroups.bea.com / security-group.

  • Has anyone used Aperture 2.0 with 8800GT?

    Has anyone used Aperture 2.0 with the new 8800GT? I'm about to order a new Mac Pro and wonder if Aperture will get a speed boost with the 8800GT over the HD 2600XT. I've read many times that Aperture is very GPU dependent, but then I've also read, on Barefeats.com for example, that the graphics card really doesn't do that much of a difference after all.
    For me, on my dual 2.0 G5 with 4.5GB and a X800XT, what's been most annoying with Aperture 1.5 has been the slow load times for raw images (15-20MB). But now with the quick preview mode in Aperture 2.0, that really isn't an issue any more.
    Is the 8800GT worth waiting for, or should I just get the Mac Pro now with the HD 2600XT?

    Hi Don
    I'm using Aperture 2.0 with the 8800GT. My system is the new MacPro 8 core 2.8GH with 10GB RAM. I'm shooting Nikon D3 lossless compressed RAW files. Approximately 12-14MB each.
    I do not need to use the quick preview mode. Images open instantaneously,either fit to screen or 100%. All the image adjustments are shown with no time lag. My D2X uncompressed raw files,19MB, display in approximately one second with quick preview turned off.
    I'm no MAC hardware expert so I don't know how much the speed is the result of the 8800GT but I'm just one happy camper.
    Hope this helps
    John Blake

  • I just saw a message that iWeb has been discontinued by Apple.  It suggested EverWeb.  Has anyone used this or do you have aother recommendation?

    I just saw a message that iWeb has been discontinued by Apple.  It suggested changing to EverWeb.  Has anyone used this or do you have another recommendation?

    Hi
    I have now used Everweb to transfer a website from iWeb & am now working on transferring a second website.
    I cannot recommend Everweb highly enough. I am an amateur, so iWeb was the easy option for me. Everweb is just as easy to use and very similar to iWeb. New features are being added every few days.
    I am extremely impressed by the excellent and prompt service from both the forum and support. All my questions have been answered (& there have been many of them!)
    Everweb is complimented by an excellent site Everweb codebox which has developed more widgets and codes to add to Everweb. Roddy from Everweb codebox has been invaluable by answering questions on the forum & generally complimenting the Everweb team.
    I have purchased the Everweb program & Hosting. This gives my 1 click updating and works seamlessly. The price is competitive and the support exemplary.
    All in all, I am delighted with Everweb, excellent program & excellent support!! I would not hesitate in recommending it to anyone.
    In answer to your question...buy it!!!!
    Lynn

  • Has anyone used "Microsoft.BizTalk.B2B.PartnerManagement" API ?

    Hello, forum; trying to make sense of that undocumented API library to create an agreement using BizTalk 2010. So far, I can create a Partner, Business Profiles, Business Identities and Partnerships, but how to create an agreement (onewayagreements and all
    that) still eludes me. I have checked one reference, it was written by Mick Breeze (http://blogs.breeze.net/mickb/2012/05/22/BizTalk2010CreatingTPMPartnersThroughCode.aspx),
    and also getting inspired by the newest published in here (http://msdn.microsoft.com/en-us/library/windowsazure/dn232396.aspx) which is not the same but at least it's something.
    I have navigated through the classes but I can't manage to do all the tasks that it is suppose to achieve.
    Has anyone used this before that may be able to help ? Is there any SDK sample of some sort ?
    Thanks in advance.

    Partner automation. The user wants to use an asp.net form instead of using biztalk admin console, in order to create and update a large party database, the total count rounding between 300 to 500 partners, so, we have already a webform with all business
    related information and we've add some port related information that will ultimately end up as the party information. With that info, this library should be able to accomplish everything we normally do from the console.
    We are not migrating from a previous version, so the party migration tools is a no-go. We explored the idea of creating a binding-like file that would be loaded from BtsTask, but ultimately, we end up with the idea of using this obscure library to perform
    all those so called duties of handling party related information on biztalk server.
    Thanks in advance.

  • Has anyone used the Essbase XTD Spreadsheet Services?

    Is the Essbase Spreadsheet Services an additional cost above and beyond the spreadsheet add-in?Has anyone used this product in addition to or in place of the existing spreadsheet add-in?What have you found are the added benefits of this product? Any lost functionality or issues with using this over the current spreadsheet add-in.If we upgrade to Essbase 6.5 is this the 'new' spreadsheet add-in or is it optional?Thanks!Lisa

    To try to answer the questions in order:Q: Is the Essbase Spreadsheet Services an additional cost above and beyond the spreadsheet add-in? A: I believe ESS is licensed separately - I don't know if this has or will change in the future, so yes it does cost above and beyond Essbase.Q: Has anyone used this product in addition to or in place of the existing spreadsheet add-in? A: I used it during the beta, and I work with it from time to time, but I have not implemented it in production anywhere as of yet.Q:What have you found are the added benefits of this product? Any lost functionality or issues with using this over the current spreadsheet add-in. A: The main benefits are that you can now connect to your Essbase servers (via Essbase Enterprise Services) over HTTP, which means you don't need TCP connectivity. You could have users around the world and as long as they can see the web server running the service, they can connect.Another benefit is you don't need to install the Essbase runtime on the user's PC. The "add in" can be a CAB file that self installs when the user hits a page you set up. A nice bonus in a large widely dispersed user community.As far as functionality goes, I believe the will be parallel (the beta did not have EIS drill through). The major downer is performance - it is slower than the normal add-in with larger reports.Q: If we upgrade to Essbase 6.5 is this the 'new' spreadsheet add-in or is it optional? A: No - the normal add-in is still the default. ESS requires additional software/configurations (particulary EES, Java App Server) to be used.Regards,Jade-----------------------------------Jade ColeSenior Business Intelligence ConsultantClarity [email protected]

  • Has anyone used an app with the Maverick software to burn iPhoto slideshows to DVD disks that will play on any DVD player?

    Has anyone used an app with the new Maverick software to burn iphoto slide shows to DVDs that will play on a standard DVD player?  This probably cannot be a demo app in that the amout of photos on the slideshows is large.  
    Thank you,
    Jim

    Export the slideshow from iPhoto, that makes a movie of it.
    Do you want to use this DVD in a domestic DVD player? If so, then the disk will have to be 'authored' to make it the correct form for that. If you have iDVD then that's the app you use. However, iDVD is no longer developed or distributed by Apple. You may be able to get it on an old iLIfe install disk.
    Other options:
    Burn: http://macupdate.com/app/mac/21992/burn
    Toast: http://macupdate.com/app/mac/6351/toast-titanium
    But there are lots of others too. Search on the App Store or MacUpdate

  • Has anyone used iPhone 4s with Oticon Streamer Pro

    Has anyone used iPhone 4s with Oticon Streamer Pro

    I downloaded it today. Doesn't seem to work. It gives you to the option of playing from "Logic Pro" or "Logic Express". When I click "SET" to set the project to fire, all of my logic files are grayed (assuming that means they are not an option)... Waste of 20 bucks.
    Steve
    Branson, Missouri

  • T4i... lousy SD video... has anyone used SD and had final edit look ok. on timeline its a disaster.

    T4i... lousy SD video... has anyone used SD and had final edit look ok. on timeline its a disaster. cell phone does better video.. im a pro video type and at this point may return cam and wait for a more capable eos.. like a mirrorless 60d...

    Speedorms,
    I would like to help determine what is causing this.
    What exactly are you seeing that is poor quality in the video from your EOS Rebel T4i?
    What are you using to edit your video?
    What settings are you using to edit the video?
    When you refer to SD, are you referring to the card in the camera or Standard Definition video?
    If you prefer a mirrorless design, we do have the new EOS M.  You may want to take a look at that model to see if it has the features you are looking for.
    If this is a time sensitive-matter, additional support options are available at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Has anyone use camptune x with mountain lion even though says it does not support it yet

    HAs anyone used camptune x with mountain lion even though it is not yet specific to moutain lion yet?

    Tried it yesterday on my imac 21Jan 2013 running mountain lion 10.8.2, total disaster.
    Backed up my boot camp image using winclone (great programme)
    Purchased and ran camptune x and everything went fine.
    Rebooted into windows 7 and recieved error messages find--set--root--ignore floppies--ignore cd/bootmgr
    ERROR 15
    Gave me a list of options on screen but none resolved the issue.
    Booted back into winclone and used the backup image i had just created to reinstall on bootcamp.
    Have emailed the company but have had no reply as yet
    **** STAY AWAY until updated for mountain lion YOU HAVE BEEN WARNED ****

  • Has anyone used Muse to create a static web page that gets translated into Joomla?

    Has anyone used Muse to create a static web page (html and xml) that gets translated into a Joomla template?

    Obviously I am out of my league. I am not a programer and I thought this would be something simple, but you guys are talking over my head.
    I thought I could create a simple link to the Happy.rdp and it would run...but as mentioned, you can't do that.
    What I have is a java script with a bunch of parameters (see below) that creates a pull-down menu. I was hoping I could list the names of the servers, click on the one I want to connect to, and I would get the log-in screen. That is my goal.
    I have a "Happy.rdp" icon on my desktop and I click on that and the remote connection starts. I have opened "Happy.rpd" in notepad and it has all the parameters (such as the IP address and stuff) that allow me to connect.
    * Menu selection script         *
    var NoOffFirstLineMenus=2;   // Number of first level items
    var LowBgColor='';   // Background color when mouse is not over
    var LowSubBgColor='b0b0b0';   // Background color when mouse is not over on subs
    var HighBgColor='';   // Background color when mouse is over
    ETC...
    // Menu tree
    // MenuX=new Array(Text to show, Link, background image (optional), number of sub elements, height, width);
    // For rollover images set "Text to show" to:  "rollover:Image1.jpg:Image2.jpg"
    Menu1=new Array("","http://home.com","",0,20,0);
    Menu2=new Array("Servers","","",1,20,115);
          Menu2_1=new Array("Servers","Happy.rdp","",0,20,170);

  • HAS ANYONE USED SMC FAN CONTROL

    Has anyone used this program it sets your fan to any rpm speed and it could cool down your system for about 50 percent of its normal temp.

    If you plan on increasing your fan speeds then what I recommend is to monitor your temps for a few days before you go changing anything. Take note of your temps during idle times and light loads then also note the temps under heavy loads. There may be no reason for you to even adjust the fan speeds. You can install either iStat pro widget or Temperature Monitor: http://www.versiontracker.com/dyn/moreinfo/macosx/19994
    You might also find this topic useful:
    http://discussions.apple.com/message.jspa?messageID=6412431#6412431
    George

  • Has anyone used a Dell 1908FPb with a MacBook Pro OSX 10.6.8?  What do I need to get/do?  thanks

    Has anyone used a Dell 1908FPb with a MacBook Pro OSX 10.6.8?  What do I need to get/do?  thanks

    Hi 4judy,
    If you are looking to use an external display with your MacBook Pro, you may find the following articles helpful:
    Apple Mini DisplayPort adapters: Frequently asked questions (FAQ)
    http://support.apple.com/kb/ht3382
    OS X: How to use multiple displays with your Mac in Mountain Lion and earlier
    http://support.apple.com/kb/ht5019
    Regards,
    - Brenden

Maybe you are looking for

  • Report Slow Due to Mass Data , Soln for Performance Tuning

    Dear All, I am making report with mass data so for this i have to put For All enteries in & Ranges at lodz of places. 1. For all enteries in is making my report works very slow. 2. If i change for all enteries by Ranges then if the no. of records are

  • How to reset ipad if i dont know the icloud info

    help

  • Still having issues.

    When I get started in PreProCS3, in the new project window I click on EX3 and then 1080p. Usually when I click on 1080p I am able to click on 24p or whatever framerate it was shot at but for some reason not getting any options after "1080p" and to th

  • Error : Cannot Access external data , XLS : 000009

    Hi Everyone, There is an error am getting, while connecting to Qaaws,  the screen shot is attached. I have changed the time zone in CMC but, it still prevails. Its urgent, quick solution would be helpful. Thanks in advance, Sara

  • Restore My used Device without sign out from the previous ID

    I bought a used iPad Mini  from one of the shops and i do not know the new way about restore without sign out from apple ID of someone else I make a restore for it so it is lucked now with unknown ID and I returned it to the show and advised me to co