Need STL100-2 10.1.0.2312 Loader from M1

Hi Blackberry,
Anyone got the link to download STL100-2 10.1.0.2312 loader? 
I just restored to factory setting but the version is 10.1.0.4687 therefore all my backup couldn't be restored 
Or any quick workaround for this matter? All my data was stucked on the backup file made by that version. 
Thank you very much 
-sea-
SEA - Powered by Whiteberry Z10 & Playbook 32Gb Wifi

Have you monitored CPU and I/O during this process? Are there any other processes running during this time? You mentioned the server is offline, but you also mentioned replication is taking place ?
You could query V$BACKUP_ASYNC_IO and look at EFFECTIVE_BYTES_PER_SECOND, WAITS and IO_COUNT.
During the backup, you can run the following query to monitor RMAN:
SELECT sid, serial#, context, sofar, totalwork,
     round(sofar/totalwork*100,2) "% Complete"
     FROM v$session_longops
     WHERE opname LIKE 'RMAN%'
     AND opname NOT LIKE '%aggregate%'
     AND totalwork != 0
     AND sofar <> totalwork;If the % Complete doesn't seem to be increasing, you should run the following select to determine what waits exist:
SELECT sid, seconds_in_wait AS sec_wait, event FROM v$session_wait
     WHERE wait_time = 0
     ORDER BY sid;

Similar Messages

  • I need to have a URL that's loading from a batch file load into the side bar instead of the main window and I can't figure out what to add to the command line to make it do this.

    I've seen similar questions, but no answers. Most commonly, I've seen people wanting to know how to code a link on their website to make it open in the sidebar. That would be handy too.
    My own goal here is to make all the pages I need open for work open where I want them, all in one click.

    I don't have a Recently Added playlist.  However, I discovered that the file I had named Eating Healthy was given the name You Can Enjoy Eating Healthy when it copied to iTunes.  I'm guessing iTunes pulled the full name of the piece from the internet.  Upshot--the mp3 did transfer to iTunes on all 3 tries, but I was looking in my alphabetized list under E, not Y, so I didn't see it there.  Thanks for your help. 

  • Need help centering different sized images being loaded from a container

    stop();
    mainArea_mc.visible = false;
    home_btn.addEventListener(MouseEvent.CLICK, function () { gotoAndStop("Home Template")} );
    var totalImages:int = 0;
    var imageDirectory : String = "";
    var currentImage:int = 1;
    var filePrefix : String = "";
    var loader1 : Loader = new Loader(); // 2 loaders so we can fade an image on top of the other
    var loader2 : Loader = new Loader();
    pic_mc.addChild(loader1);
    pic_mc.addChild(loader2);
    loader1.name = "loader1";
    loader2.name = "loader2";
    loader1.contentLoaderInfo.addEventListener(Event.COMPLETE , resizeFadeImage);
    loader2.contentLoaderInfo.addEventListener(Event.COMPLETE , resizeFadeImage);
    info_mc.title_txt.autoSize = TextFieldAutoSize.LEFT;
    if (presModeSlides)  // Setup slide viewer vars
        totalImages = slides[currentSlideNumber].numSlides
        imageDirectory = "Data/slides/"+slides[currentSlideNumber].directory+"/";
        filePrefix = "slide";
        info_mc.title_txt.text = slides[currentSlideNumber].title
        info_mc.speaker_txt.text = slides[currentSlideNumber].speaker
        info_mc.university_txt.text = slides[currentSlideNumber].university
    else  // Setup picture viewer vars
        totalImages = 233;
        imageDirectory = "Data/pictures/";
        filePrefix = "picture";
        info_mc.title_txt.text =  "3rd International BioPlex® 2200 User Meeting";
        info_mc.speaker_txt.text = "Pictures";
        info_mc.university_txt.text = "";
    info_mc.speaker_txt.y += info_mc.title_txt.height;  // Position sublines so they are directly under title
    info_mc.university_txt.y += info_mc.title_txt.height;
    leftArrow_btn.addEventListener(MouseEvent.CLICK, prevImage);
    rightArrow_btn.addEventListener(MouseEvent.CLICK, nextImage);
    showImage(currentImage)
    function showImage(num:int)
        if (pic_mc.getChildIndex(loader1) > pic_mc.getChildIndex(loader2))  // Place the jpg into which ever container is on top at the moment
            loader1.load(new URLRequest(imageDirectory+filePrefix+currentImage+".jpg"));
        else
            loader2.load(new URLRequest(imageDirectory+filePrefix+currentImage+".jpg"));
    function resizeFadeImage(e:Event)
        e.currentTarget.loader.alpha = 0;
        Tweener.addTween(e.currentTarget.loader, {alpha:1, time:0.4, onComplete: removeOtherImage , onCompleteParams:[e.currentTarget.loader]});
        e.currentTarget.loader.scaleX = 0.75;
        e.currentTarget.loader.scaleY = 0.75;
        var bitMap : Bitmap = Bitmap(e.currentTarget.loader.content);
        bitMap.smoothing = true;
    function removeOtherImage(l:Loader)
        if (l.name=="loader1")
            pic_mc.setChildIndex(loader1,0);
            if (loader2.content != null)
                if (loader2.content is Bitmap)
                    (loader2.content as Bitmap).bitmapData.dispose();
        else
            pic_mc.setChildIndex(loader2,0);
            if (loader1.content != null)
                if (loader1.content is Bitmap)
                    (loader1.content as Bitmap).bitmapData.dispose();
    function nextImage(e:Event)
        if ((!Tweener.isTweening(loader1)) && (!Tweener.isTweening(loader2)))
            if (currentImage < totalImages)
                currentImage ++;
            else
                currentImage = 1;
            showImage(currentImage);
    function prevImage(e:Event)
        if ((!Tweener.isTweening(loader1)) && (!Tweener.isTweening(loader2)))
            if (currentImage > 1)
                currentImage --;
            else
                currentImage = totalImages;
            showImage(currentImage);

    function resizeFadeImage(e:Event)
        e.currentTarget.loader.alpha = 0;
        Tweener.addTween(e.currentTarget.loader, {alpha:1, time:0.4, onComplete: removeOtherImage , onCompleteParams:[e.currentTarget.loader]});
        e.currentTarget.loader.scaleX = 0.75;
        e.currentTarget.loader.scaleY = 0.75;
    e.currentTarget.loader.x = (stage.stageWidth-e.currentTarget.loader.width)/2;
    e.currentTarget.loader.y = (stage.stageHeight-e.currentTarget.loader.height)/2;
        var bitMap : Bitmap = Bitmap(e.currentTarget.loader.content);
        bitMap.smoothing = true;

  • Need help on: Automation of Daily Data Load

    Hi all,
    We need to start our Daily Data load from DAC by Manually. So right now my client has asked us to do Automation of Daily Data Load.
    Starting the Daily Data Load Manually(DAC) Process: First we have to check whether the ASCP Plans updated or not
    Right now we are checking whether the plans got updated or not, so for this we are using following query
    SELECT LTrim(RTrim (compile_designator)),data_completion_date,TO_CHAR(data_completion_date ,'DD-MON-YYYY HH24:MI:SS') FROM apps.msc_plans
    WHERE LTrim(RTrim (compile_designator))
    in( 'Plan01,'Plan02','Plan03','Paln04') ORDER BY 2 desc
    from this query we will able to see whether all the plans got updated or not. From all the Four Plans, two plans will get updated as of Sysdate(mm/dd/yyy) ,Timestamp(hh:mm:ss)(for example i.e. Plan01 08/25/2011 11:20:08 PM, Plan02 08/25/2011 11:45:06 PM) and rest two plans get updated on Sysdate+1(mm/dd/yyy), Timestamp(hh:mm:ss)(for example i.e. Plan03 08/26/2011 12:20:05 AM, Plan04 08/26/2011 12:45:08 AM)
    So after checking the plans , we start the Daily Load in DAC manually.
    May I know how should I convert my above sql query which I am using for checking the plans updated or not in informatica, so as to automate the Daily Load in informatica level..
    Need help.

    You cannot replicate what is done with DAC at Informatica level. DAC is a separate Oracle product that orchestrates and manages the ETL load (including Index management, etc). The reason Oracle developed DAC is because it allows you to manage a large scale DW load for a large ERP system. As suggested, you can invoke the DAC execution plan via a command but you cannot replicate everything the DAC does at Informatica level. If this helps, please mark as helpful.

  • I got a iphone 5 but it does not work on my MacBook with Mac OSx 10.5.8  it says i need OSX 10.6.8 but it will not download because I need OSX 10.6 but it would load either. How do I get the older operating system to work with the IPhone5?

    I got a iphone 5 but it does not work on my MacBook with Mac OSx 10.5.8  it says i need OSX 10.6.8 but it will not download because I need OSX 10.6 but it would load either. How do I get the older operating system to work with the IPhone5?

    You don't. Since you have an Intel Mac, buy a Mac OS X 10.6 DVD from the online Apple Store.
    (71894)

  • I need format for data in excel file load into info cube to planning area.

    Hi gurus,
    I need format for data in excel file load into info cube to planning area.
    can you send me what should i maintain header
    i have knowledge on like
    plant,location,customer,product,history qty,calander
    100,delhi,suresh,nokia,250,2011211
    if it is  right or wrong can u explain  and send me about excel file format.
    babu

    Hi Babu,
    The file format should be same as you want to upload. The sequence of File format should be same communication structure.
    Like,
    Initial columns with Characteristics (ex: plant,location,customer,product)
    date column (check for data format) (ex: calander)
    Last columsn with Key figures (history qty)
    Hope this helps.
    Regards,
    Nawanit

  • PC went south. Geeks brought it back. PS elements and premier 11 can't start. Error msg sez configuration incorrect needs to be reinstalled. When I load the disk I get a blank screen. Try to uninstall and can't find apps i control panel. How can I get the

    PC went south. Geeks brought it back. PS elements and premier 11 can't start. Error msg sez configuration incorrect needs to be reinstalled. When I load the disk I get a blank screen. Try to uninstall and can't find apps i control panel. How can I get the apps back?

    adobeamatuer
    Thanks for the reply.
    Although the security of Windows XP SP3 32 bit is compromised by Microsoft no longer supporting XP, if Windows XP was restored as claimed, you should still be able to install/uninstall Premiere Elements versions of it that you did before the Microsoft support removal.
    I think a revisit to the Geeks would be in order. It may be that they could not restore Windows XP because of the Microsoft non support. I would take along the Premiere Elements installation disks so that you do not leave there without actually seeing Premiere Elements (or a non Adobe program) running on your restored Windows XP. What was the other software that you tried to use that did not work?
    Please update us on your progress when you get a chance.
    Best wishes
    Thanks.
    ATR
    Add On...spelling correct 12 03 2014.

  • How is data loaded from Infocube to Planning area - need technical info

    I would like to find out how data is loaded from cube to planning area ,
    I know that CUBE has tables, but how does that get loaded to planning area , where is the mapping from which I can compare
    data in CUBE and the same data that reaches planning area.
    Say for example I have below values in the infocube
    Prod1 --> Loc1 -
    > available provisioning qty
    AAA        AB90             100
    Then where do i check in the planning area tables ( are there any tables mapped) after running the TSINPUT program, i know it can be checked in the planning book , but i want to check in planning area tables if they exi

    Hi ,
    The data is loaded from infocube to planning area using update rules. The issue you have mentioned seems to be two requests are having data for the same CVCs in the cube.
    Example: For the same CVC, two requests avilable in the infocube. When you copy the data using TSCUBE transaction, whatever data avilable in the cube for the CVC gets copied into Planning Area.
    CVC1 - cube - Old Request - 100
    CVC1 - cube - Actual Request - 200
    CVC1 - Planning Area = 300 ( The value is supposed to be 200, but since the old request also contains data in the cube for the cvc, it gets copied as 300)
    Issue : There might two request contains data for the same code
    Solution : 1. Check the data in the cube using transaction LISTCUBE  2.  Delete old request and check the data agian. 3. If it matches with your requirement, run the TSCUBE again.
    Please let me know if you need additional information.
    Thanks,
    Jeysraj

  • JAXB 2.1 API loaded from the bootstrap classloader, but it needs 2.2 API

    I am trying to deploy a Java web service into a Tomcat 5.5.20 server. I have the web service packaged in a .war file in Tomcat's webapps directory, and I can see that the .war file gets extracted when I start Tomcat.
    However, I get the following error when I start Tomcat:
    Apr 22, 2012 5:16:31 AM com.sun.xml.ws.transport.http.servlet.WSServletContextLstener contextInitialized
    INFO: WSSERVLET12: JAX-WS context listener initializing
    Apr 22, 2012 5:16:31 AM com.sun.xml.ws.transport.http.servlet.WSServletContextLstener parseAdaptersAndCreateDelegate
    SEVERE: WSSERVLET11: failed to parse runtime descriptor: java.lang.LinkageError: JAXB 2.1 API is being loaded from the bootstrap classloader, but this RI (from jar:file:/home/username/WebNMS/apache/tomcat/webapps/WebServices/WEB-INF/lib/jaxb-impl.jar!/com/sun/xml/bind/v2/model/impl/ModelBuilder.class) needs 2.2 API. Use the endorsed directory mechanism to place jaxb-api.jar in the bootstrap classloader. (See http://java.sun.com/j2se/1.6.0/docs/guide/standards/)
    java.lang.LinkageError: JAXB 2.1 API is being loaded from the bootstrap classloader, but this RI (from jar:file:/home/username/WebNMS/apache/tomcat/webapps/WebServices/WEB-INF/lib/jaxb-impl.jar!/com/sun/xml/bind/v2/model/impl/ModelBuilder.class) needs 2.2 API. Use the endorsed directory mechanism to place jaxb-api.jar in the bootstrap classloader. (See http://java.sun.com/j2se/1.6.0/docs/guide/standards/)
    at com.sun.xml.bind.v2.model.impl.ModelBuilder.(ModelBuilder.java:178)
    In the /home/username/WebNMS/apache/tomcat/webapps/WebServices/WEB-INF/lib directory is where all the jar files from JAX-WS 2.2.6 are, including jaxb-api.jar.
    I already added "-Djava.endorsed.dirs=/home/username/WebNMS/apache/tomcat/webapps/WebServices/WEB-INF/lib" to the command that starts the WebNMS process that starts Tomcat, but that didn't help.
    Also, I tried adding a symbolic link called "endorsed" in the /home/username/WebNMS/jre/lib directory that points to /home/username/WebNMS/apache/tomcat/webapps/WebServices/WEB-INF/lib, and that didn't help either.
    One interesting thing is that when I do a "find /home/username/WebNMS -name jaxb-api.jar", it only finds the one jaxb-api.jar in the /home/username/WebNMS/apache/tomcat/webapps/WebServices/WEB-INF/lib directory. There are no other jaxb-api.jar files. So I don't know why the error is saying that the JAXB 2.1 API is being loaded, when there's only the JAXB 2.2.6 API jar file. Unless it's finding something outside the /home/username/WebNMS dir, but that shouldn't happen considering I tried 2 different ways to set up the endorsed dir.
    Edited by: sljava on Apr 26, 2012 4:10 PM

    This seems to be the answer: https://jaxb.dev.java.net/guide/Migrating_JAXB_2_0_applications_to_JavaSE_6.html#Using_JAXB_2_1_with_JavaSE_6
    Place the 2.1 jaxb-api.jar into $JRE_HOME/lib/endorsed. This essentially makes your JRE to "JRE 6 + JAXB 2.1". This won't affect any other applications that use this JRE, and it's easy. On the other hand, in various scenarios you may not be able to alter the JRE.

  • My HT BDV-N790W shows "needs network update" also my netflix doesnt load. can i get some help

    My HT BDV-N790W shows "needs network update" also my netflix doesnt load. Can i get some help, please.

    There's a lot there, so I'll start with the parts I can answer quickly.
    The "ACL found but not expected..." messages can be safely ignored, so says this article
    http://docs.info.apple.com/article.html?artnum=306925
    (look below all the "SUID" examples)
    I had changed my Desktop image earlier but when the "Installing 1 item" window came up it changed back to the back ground that you first see on your desktop after installation.
    Leopard installs updates a bit differently. If it's simply an application that does not change system files, it installs them like before, without having to restart. If the update is to the system, then you must immediately "restart," It then goes to that stars and purple screen to perform the installation. Before, it would do the installation while you still had control of the Mac and would prompt you to restart when it finished the installation. This change probably make things more secure and reliable, because you aren't allowed to do other things on the Mac while system updates are being installed.
    Please post back with the remaining point of concern.

  • Invoking SQL Loader from linux - Help Needed

    Hi All,
    When i tried to invoke the sql loader from linux by using following command
    sqlldr username@server/password control=loader.ctl
    But its always throws this message
    Message 2100 not found; No message file for product=RDBMS, facility=ULMessage 2100 not found; No message file for product=RDBMS, facility=UL
    Can somebody help me to fix this issue?

    You may need to set your Oracle environment, try this ($ is the command prompt):
    $ export ORACLE_SID=orcl
    $ . /usr/local/bin/oraenv
    $ sqlldr username@server/password control=loader.ctl:p

  • I am thinking of purchasing used ipod touch 2nd gen, will i be able to load from my macbook?  What do i need to know prior to purchasing used?

    I am thinking of purchasing used ipod touch 2nd gen, will i be able to load from my macbook?  What do i need to know prior to purchasing used?

    Your problem will be that AppleTV only has HDMI and optical output - no analogue out so unless say you had a B&W Zeppelin or similar that has optical in you'd need something esle to decode the audio to ananlogue.
    Some have also reported AppleTV not working for audio when TV is off or in standby.
    You may be better off having both!
    AC

  • HT204382 i need to learn in how to down load music from u tobe.but i need to learn on how to star from the bottom.

    I need to leran in how to dawn load music from you tobe.but I need to start from the bottom can someone help?

    If there is no download button under the video you are looking at, then Youtube's terms forbid downloading someone else's property. Because they forbid it, we would be violating the terms of these forums if we were to try to help - sorry.

  • What type of software do I need to down load from my mac a program from my high definition camcorder the video is 1.5 hours long

    What type of software should I buy to down load from my mac a video from my high def camcorder

    I was only able to find downloads for that camera for Windows.
    No where was I able to find anything for a Mac from Panasonic.
    Allan

  • Chinese characters scrambled when loading from DS to BW

    Hi, I've been pulling my hair out with this issue.
    I have a flat file containing Chinese text. When I load this in BW using 'FLATFILE' as a source system, it works fine. BW shows the correct Chinese characters.
    When I do the same load using BODI, I get funny characters.
    When I use BODI to load from one flat file into another flat file, the Chinese characters remain correct.
    What do I need to do to make sure I get the right Chinese characters in BW when loading from BODI?
    BODI is installed on Unix on Oracle 10.
    I run the jobs as batch processes.
    The dsconfig.txt has got:
    AL_Engine=<default>_<default>.<default>
    There are no locale settings in al_env.sh
    BW target is UTF-8 codepage.
    File codepage is BIG5-HKSCS
    BODI is set up as a Unicode system in SAP BW.
    When loading flat file to flat file, I get a message:
    DATAFLOW: The specified locale <eng_gb.iso-8859-1> has been coerced to <Unicode (UTF-16)
    because the datastore <TWIN_FF_CUSTOMER_LOCAL> obtains data in <BIG5-HKSCS> codepage.
    JOB: Initializing transcoder for datastore <TWIN_FF_CUSTOMER_LOCAL> to transcode between
    engine codepage<Unicode (UTF-16)>  and datastore codepage <BIG5-HKSCS>
    When loading to BW the messages are almost the same, but now the last step in UTF-16 to UTF-8.
    I read the wiki post which definitely helped me to understand the rationale behind code page, but now I ran out of ideas what else to check ( http://wiki.sdn.sap.com/wiki/display/BOBJ/Multiple+Codepages )
    Any help would be greatly appreciated.
    Jan.

    Hi all. Thanks for the Inputs. This is what I got when I clicked on the Details Tab of the Monitor....
    Error when transferring data; communication error when analyzing
    Diagnosis
    Data packages or InfoPackages are missing in BI but there were no apparent processing errors in the source system. It is therefore probable that there was an error in the data transfer.
    The analysis tried to read the ALE outbox of the source system. This lead to error .
    It is possible that there is no connection to the source system.
    Procedure
    Check the TRFC overview in the source system.
    Check the connection to the source system for errors and check the authorizations and profiles of the remote user in both the BI and source systems.
    Check th ALE outbox of the source system for IDocs that have not been updated.

Maybe you are looking for