One little endian - Windows to AIX possible?

Hello all,
I'm trying to find out if it is possible to use Oracle 11g RMAN to copy/convert an existing database on a Windows 64bit platform to AIX 6.1 platform.
Per the10g document below, it seems the restriction is based on the endian order (32 bit, 64 bit, etc.).
http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/dbxptrn.htm#CHDCFFDI
The principal restriction on cross-platform transportable database
is that the source and destination platform must share the same
endian format.
For example, while you can transport a database from Microsoft
Windows to Linux for x86 (both little-endian), or from HP-UX to AIX
(both big-endian), you cannot transport a whole database from
HP_UX to Linux for x86 using this feature.So: is it true if the Windows database is on a 32 bit platform, then RMAN cannot copy/convert the database from the windows platform to the AIX platform
And by contrast, is it true that it would be possible for RMAN to copy/convert the database from Windows to AIX if the Windows platform were 64 bit?
Also, it seems there are still files that would have to be recreated manually (redo logs, controlfiles, spfile, etc.).

MOS Doc 733205.1 (Migration of Oracle Database Instances Across OS Platforms) may help
Srini

Similar Messages

  • What does Little Endian and Floating Point actually do?

    Exporting audio to video using Linear PCM format brings along two mysterios options called "Little Endian" and "Floating Point". I did my research but all I could dig out was that the first one, Little Endian, has to do with addressing subcomponents of a file etc.
    Does anyone know what these two actually mean in terms of exporting audio and why do I only see them in logic and not in Protools for example?
    Thanks...

    Big Endian is most significant byte (bit) first, Little Endian is most significant byte (bit) last. When we write down a number, we use big endian: one million threehundred and twentyfivethousand ninehundred and fiftyfour we'd write as 1 325 954. in little endian notation that would be 459 523 1.
    I don't know why they show up when exporting audio to video, maybe it is to adaprt the audio to some other (older?) formats?

  • Help: Any one can advice, CVI software is using Big or little endian?

    Help: Any one can advice, CVI is using Big or little endian? 
    or is depend on the processors my HW is using?

    The correct answer it the third one: CVI adapts to the hardware architecture you are running on. In the Programmer's Toolbox you have functions to detect the hardware architecture: HostIsBigEndian and HostIsLittleEndian. In the group you have functions to convert data between architectures.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • How to extract a double from a little endian stream?

    I want to support Java 1.3.1, which means that I cannot use class ByteBuffer.
    I would need ByteBuffer with the methods order and getDouble.
    I read the socket in little endian format (thus I cannot use the getDouble method of the class DataInputStream). Is there any solution in Java 1.3.1 to extract a double from 8 bytes?
    In other words, if I want to keep my code compatiple with Java 1.3.1, do I have to change the order of the bytes manually and then also extract the double value manually (extracting the sign-bit, the exponent and significant to calculate the double value is possible but quite stupid if there is another way...)
    It would also help to have the release notes for Java 1.4.2. ( the link on the SUN pages points to nowhere). I am especially interested in the history of the development of ByteBuffer. Did the functionality of order (LITTLE_ENDIAN / BIG_ENDIAN) exist in any other way in Java 1.3.1?
    Ps. I put another case to this Forum earlier today, and even added it to my watch list, and even got an answer BUT after relogin there was not even a sign of that case... I sent feedback to SUN but I'm sorry for not being able to get back to the person who answered my case.

    Thank you for your help, meloro77!
    I modified your masks and shifts and then finally created the proper method for the double values.
    There was one more trick needed: each byte MUST be converted into a long value before running the shift! The byte and the result is otherwise treated as int (32 bytes and any bytes higher than this would be discarded.
    For your and everybody else's fun and joy, I include here the code which I used:
    byte []   doubleData = new byte[8];
                 reading the bytes
          double myDouble = 0.0;
          // Create a long value of the bytes
          long doublebits;
          short MASK_TO_BYTE = 0xFF;
          doublebits = ((long)doubleData[7] & MASK_TO_BYTE)
                      | ((long)(doubleData[6] & MASK_TO_BYTE) << 8)
                      | ((long)(doubleData[5] & MASK_TO_BYTE) << 16)
                      | ((long)(doubleData[4] & MASK_TO_BYTE) << 24)
                      | ((long)(doubleData[3] & MASK_TO_BYTE) << 32)
                      | ((long)(doubleData[2] & MASK_TO_BYTE) << 40)
                      | ((long)(doubleData[1] & MASK_TO_BYTE) << 48)
                      | ((long)(doubleData[0] & MASK_TO_BYTE) << 56);
           * Let method Double.longBitsToDouble convert the value to a double
          myDouble = Double.longBitsToDouble(doublebits);

  • Any need for conversation from big endian and little endian?

    Hi,
    I am planning to migrate an Oracle 9i Database on AIX 5.3 to Oracle 11g R2 Windows 2008, and have planned to use transportable tablespace. But prior to that task is the conversation required from big endian and little endian using RMAN?
    Appreciate any suggestions, comments and hints
    Thanks

    Hi,
    Check V$TRANSPORTABLE_PLATFORM, it shows the ending for each supported platform. Given the results on my 11g, I suspect that you'll have to convert the tablespaces...
    SYSTEM@oracle11 SQL>select *
      2   from V$TRANSPORTABLE_PLATFORM
      3  ;
    PLATFORM_ID PLATFORM_NAME                                                                                         ENDIAN_FORMAT
              7 Microsoft Windows IA (32-bit)                                                                         Little
              6 AIX-Based Systems (64-bit)                                                                            Big
              8 Microsoft Windows IA (64-bit)                                                                         Little
             12 Microsoft Windows x86 64-bit                                                                          LittleHtH
    Johan

  • Converting 'little endian bytes' to short

    i need to convert to bytes in little endian format (low order byte first) into a short. i wrote an algorithm that i thought would solve this problem. it seems to work most of the time, however occassionally it does produce the wrong value. i was hoping someone out there could help me solve this problem
    public static short ByteToShort(byte one, byte two)
    // little endian format
    // remember LO then HO bytes
    short result = 0;
    result = (short) ((two << 8) + one);
    return result;
    }

    byte one and two are converted to int in the operation (before reconverted to short in the assignment).
    We must be extra careful here with possible signed bytes.
    public static short ByteToShort(byte one, byte two)
      // little endian format
      // remember LO then HO bytes
      short result = 0;
      result = (short) (((two << 8) & 0xFF00) | (one & 0x00FF));
      return result;

  • Linear PCM - Big Little Endian

    Sorry - I'm at a loss.
    Assumptions:
    Linear PCM is the correct format for exporting audio for FCP - ie Lossless
    Ok...
    Big Endian seems to be a default with Little Endian wanting a checkbox.
    IS there a reason FCP wouldn't accept one or the other?
    CaptM

    Drew13 had this to say:
    Little Endian and Big Endian is how the data is stored with the most signifcant byte on one end or the other (taken from Gulliver's Travels and how the egg should be cracked.(ETA) One of the conflicts in the book is between people who preferred cracking open their soft-boiled eggs from the little end, and the people who preferred the big end.). For the most part you do not need to concern yourself with this (unless you like finding out about those things more) it is transparent in your workflow on the Mac using these apps.(FCP, FCE etc.)
    PPC Mac > Big Endian (default)
    WIndows PC > Little Endian (default)
    • Endianness
    This is all well and good except when it comes to the Intel Macs and Dolby AC3 creation with Compressor.
    At the moment there's a byte-order compatability Problem mixing UB versions of AC3 with PPC versions of AC3 within the same DVD SP 4.1 project.
    Read this:
    http://discussions.apple.com/thread.jspa?messageID=3130608&#3130608
    MaxR says:
    Apple's developer site specifically cites byte-order as a concern for developers of Universal binaries, but seems to have let this slip out anyway. Shame, shame, Apple.
    G5 1.8 DP (PCI-X)   Mac OS X (10.4.8)   ATI X800 XT, 4GB RAM, 20" & 23" ACDs, M-Audio Revolution 5.1, Fostex D15 DAT

  • Little endian

    Dear forum members. I connect one device with RS232 port to computer. The commands of Visa Write will be " 0x01 0x80 0x58 0x84 0x0c 0x10 0x0a " (7 byte). These are Hex digits and already little endian. How can I write in Labview?  0x no need?
    Can you attach the simple example... How I will operate the device with this command?
    Please help me..
    Thanks in advise..
    Sincerely Harutyun Melikyan!
    I used Labview 8.0. 

    You are still confusing a formatted hex string, consisting exclusively of the letters 0..F when the string indicator is set to normal display (2 characters per byte), and a binary string (consisting of possible bytes from 00 to FF, 1 character per byte)  that shows the desired pattern when set to HEX display.
    You need to understand the difference and you need to know what you want.
    The attached example shows both possible implementations.
    Message Edited by altenbach on 09-11-2007 06:22 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    HexMOD.vi ‏11 KB
    HexMOD.png ‏7 KB

  • Using 2 ipods on one computer with Windows XP

    Is it possible to have two iTunes accounts on one computer with Windows XP? My brother already had an iTunes account on this computer and then I got an iPod too. I just loaded his music onto my iPod at the time, but I want to delete all of the music he gave me and start over. I want my own iTunes account so I can load my own songs. He's afraid that if I erase all of the songs from my iPod and reload from his iTunes it will mess up his iPod as well. What should I do?

    The following link should help you out & explain all of your options.
    http://docs.info.apple.com/article.html?artnum=300432

  • How to edit multiple regions in one Piano Roll window

    I edit multiple regions in one Piano Roll window at the same time. (It is very handy way of editing especially in huge orchestra projects.)
    I can see midi contents of all selected regions in Piano Roll at the same time.
    1) But how to choose certain one region of many selected to edit it?
    2) And how to edit all at once?
    Hope the questions are clear enough.
    Thanks.
    Dmitriy.
    iMac (27-inch, Mid 2011) 2,7 GHz Intel Core i5. 16 GB 1333 MHz DDR3.
    OS X 10.10.2

    First of all, the Piano Roll has two mechansim, of what it is displaying.
    Selected Track: This displays all the Regions that you select in the Tracks Window
    One Track: Selecting one Region in the Track Area displays all the Regions of tha tTrack in the Piano Roll. If you select multiple Regions in the Tracks Window, then the last selected Regions counts.
    Whatever Regions are now displayed in the Piano Roll Editor can be edited. Select the MIDI Events and apply the command.
    You can also apply edits directly to the selected Regions in the Tracks Window.
    I explain all those little details in my graphically enhanced manuals ("Logic Pro X - How it Works")
    One thing to be clear about:
    Tracks Window: Any edit is applied to the selected Regions
    Piano Roll Editor: Ay edit is applied to the selected Events
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com/Manuals/
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • Using "Save As" execCommand in IE8 to save XML file in ANSI format instead of UCS2-Little Endian

    I am currently trying to save an XML data using "SaveAs" execCommand  from Javascript in Internet Explorer 8 only.I am using document.write(xml) to write the xml content after i open a window.The document object in IE8 uses a saveAs Exec
    Command to allow the user to save the xml file in the local folder.The XML file is generated but it doesnt set the encoding to my preferred type  for a different interface where i need to send this XML which is ANSI/UTF-8   encoding.I can only save
    the XML in UCS2 little Endian encoding format.Below is the code i am using.
         var location = "D:\\export_to_MCT"+dateTime+".xml";
            var xml = tmpSelectedConfigurationXML.transformNode(xslDoc);// XML Is generated here
           alert(xml);
             **var testlink = window.open  ("about:blank","_blank","toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,left=10000, top=10000, width=10, height=10, visible=none");
             testlink.document.write(xml); //fileData has contents for the file
        testlink.document.close();
        testlink.document.execCommand('SaveAs', false, location);**
        testlink.close();
    My purpose is to save the xml  in ANSI/UTF-8 encoding without BOM format.I cant use Scripting.FileSystemObject method of ActiveX object.Please suggest

    @panda Boy--
    But my intention isnt that .I need to download the xml in ANSI format

  • Using one copy of Windows to install via boot camp and on a virtual machine?

    I have a copy on windows 7 coming in the post and I was wondering if it is possible to install windows 7 via boot camp when I want to do something more memory intensive such as gaming and also install it on a virtual machine such as virtual box just for other regular stuff. Also would this be possible using one copy of windows and one licence key?

    Then you need Parallels or Fusion to link to a native Windows partition.
    Comparison of VMware Fusion Parallels VirtualBox

  • Is there a way to view just one open Finder window (without any other Finder or other application windows coming into view) from a Desktop hot corner in Yosemite?

    I just upgraded to Yosemite from Snow Leopard on a MacBook Pro. Previously, I could view just one open Finder window by viewing the Desktop via a hot corner and then selecting Finder from the Dock. This would pull only the top Finder winder into view, without showing any other open Finder windows, and most importantly, any other open application windows. I could then easily drag files/folder from my Desktop into the Finder window (which I do A LOT). Since upgrading to Yosemite, whenever I use the Desktop hot corner and select Finder from the Dock, it pulls every open application and Finder window back into view, putting Finder in front.
    Is there any way to view just one already open Finder window (or all Finder windows for that matter) without seeing all other open applications, without having to Hide the other applications or using Spaces?

    Yes I've created an Automator Application that does the job, but the "watch me do" function that does the Mail Merge is a rather Clunkey work around, as the mouse moves all over the place, thats the part i want to remove and replace with a script, or work out a different way around it that avoids the "watch me do" function.
    Is this Possible? or where/who is there i can ask to write me a script, im not a novice to scripting, but i am a novice to Applescript.

  • Firefox not responding, seems like other browser is hijacking inquiry, will not let me reset, states cannot reset because one or more windows are open

    when i type in a search, firefox says it's not responding. Although firefox still showing not responding I am taken to websites that I did not request. I tried to reset firefox but it said there is a problem because one or more windows tabs are open even though they are not.
    What is cloudnet? just one of the items that pops up on the bottom right of the screen during my search

    Getting redirected to unwanted websites can be caused by an add-on, or by external malware, or by a change to your connection settings.
    (1) Check Extensions
    (A) In Firefox:
    Try disabling ALL nonessential or unrecognized extensions on the Add-ons page. Either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, if in doubt, disable. Or if it's clearly crap, remove.
    Usually a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    (B) In the Windows Control Panel
    If there is no remove button on the Add-ons page, typically the extension was installed externally and can be removed through the Windows Control Panel, Uninstall a Program.
    If you click the "Installed on" column heading to group the entries by date, you may find some undisclosed bundle items that snuck in with some free software. Take out as much trash as possible.
    (2) Malware scans
    Our support article lists free tools other Firefox users have found helpful: [[Troubleshoot Firefox issues caused by malware]]. If you notice a pattern of search engine result links being diverted to unrelated pages, this can be a stubborn infection involving a rootkit, so try the TDSS Killer first.
    (3) Connection settings
    Normally Firefox piggybacks on your IE connection settings. You can change that (or malware might have changed it). To view and modify:
    "3-bar" menu button (or Tools menu) > Options > Advanced > Network mini-tab > "Settings" button
    Change to "No proxy" and see whether that makes any difference.

  • The pointer sets itself in the little search window

    1) When I'm on a new page on the internet and I want to go down on the page, I can't because the pointer will automatically put itself in the beginning in the little search window that many sites have which means when I click the down button, instead of going down, I see all the words I put previously (weeks, months ago) in the search window. I need to click somewhere on the page, nothing in particular, to release the pointer. This is very annoying since it happens every time I click on a new page.
    How can I disable this ?
    2) This is unrelated I guess but since I'm on this forum:
    On some sites that I visit, the up or down button of my keyboard doesn't work
    and the up and down arrow on the right of the page doesn't work either or is very unresponsive (slow. hesitant).
    On other sites everything works fine.
    It also works fine in Text Edit so I rule out a keyboard problem.

    1. you'll need an add-on (like [pithHelmet|http://culater.net/software/PithHelmet/PithHelmet.php]) to disable this in safari. it is possible to disable this directly in firefox/camino.
    alternatively, you can create a "focus page" keyboard shortcut through a bookmarklet. this won't be automatic, but will mean you won't have to reach for the mouse.
    2. we need more info here (like a specific url), but you're bound to run into slowly responding sites if you're really using a 400mhz computer.

Maybe you are looking for

  • Problem to send mails

    I've installed the OCS R1 Singlebox on a windows 2000 server. But now I have the problem to send Email. The "Mailer-Daemon" send me the following message back. Von: "Mail Delivery Subsystem" <[email protected]> An: <fritz.muster@h

  • Problem with 6071E to write data on file?

    Hi, I would like to save my value from analog input of my 6071E card on a text file, I've only on channel selected but when I run my program I've an error. I'm in continuous mode but over than 10kHz and 10000 samples the program doesn't work, and I n

  • Upload Signaute in SAp

    Hi All, i have to upload signature in SAP fo purchase order. I try to upload signature in SAP by usnig program RSTXLDMC but it gives me following error. TIFF format error: No baseline TIFF 6.0 file  Please help me to find out the solution. Thanks Piy

  • AIR-CAP3702E unable to change to autonomous firmware.

    Resently bought 2 new AIR-CAP3702E-A-K9's and I am unable to log into the product to change the firmware to ap3g2-k9w7-tar.152-2.JA.tar. Tried following many manuals and videos including https://www.youtube.com/watch?v=QQ_NuxdRhQ4 https://www.youtube

  • Fix for proximity sensor on my iPhone 4

    When talking on my iphone4, I continually push buttons on my phone with my face.  I've learned it,s a problem with the proximity sensor.  Is there a fix for this problem.