Export from one version and import into another version

We have a customer database that accidently got updated to 10.2.x but our application only supports 10.1.5 What we are wondering can we export the 10.2 database and import it into a new system that is at our supported version of 10.1.0.5?
Will the import even work or will it fail with unsupported version? Any other things we should be aware of?

ro**** wrote:
We have a customer database that accidently got updated to 10.2.x but our application only supports 10.1.5 What we are wondering can we export the 10.2 database and import it into a new system that is at our supported version of 10.1.0.5?
Will the import even work or will it fail with unsupported version? Any other things we should be aware of?between versions export MUST ALWAYS be done with lowest version of export utility!

Similar Messages

  • How to get the data from one table and insert into another table

    Hi,
    We have requirement to build OA page with the data needs to be populated from one table and on save data into another table.
    For the above requirement what the best way to implement in OAF.
    I understand that if we attach VO object instance to region/page, we only can pull and put data in to only one table.
    Thanks

    You can achieve this in many different ways, one is
    1. Create another VO based on the EO which is based on the dest table.
    2. At save, copy the contents of the source VO into the dest VO (see copy routine in dev guide).
    3. commiting the transaction will push the data into the dest table on which the dest VO is based.
    I understand that if we attach VO object instance to region/page, we only can pull and put data in to only one table.
    if by table you mean a DB table, then no, you can have a VO based on multiple EOs which will do DMLs accordingly.Thanks
    Tapash

  • How to read from one file and write into another file?

    Hi,
    I am trying to read a File and write into another file.This is the code that i am using.But what happens is last line is only getting written..How to resolve this.the code is as follows,
    public String get() {
         FileReader fr;
         try {
              fr = new FileReader(f);
              String str;
              BufferedReader br = new BufferedReader(fr);
              try {
                   while((str= br.readLine())!=null){
                   generate=str;     
              } catch (IOException e1) {
                   e1.printStackTrace();
              } }catch (FileNotFoundException e) {
                   e.printStackTrace();
         return generate;
    where generate is a string declared globally.
    how to go about it?
    Thanks for your reply in advance

    If you want to copy files as fast as possible, without processing them (as the DOS "copy" or the Unix "cp" command), you can try the java.nio.channels package.
    import java.nio.*;
    import java.nio.channels.*;
    import java.io.*;
    import java.util.*;
    import java.text.*;
    class Kopy {
         * @param args [0] = source filename
         *        args [1] = destination filename
        public static void main(String[] args) throws Exception {
            if (args.length != 2) {
                System.err.println ("Syntax: java -cp . Kopy source destination");
                System.exit(1);
            File in = new File(args[0]);
            long fileLength = in.length();
            long t = System.currentTimeMillis();
            FileInputStream fis = new FileInputStream (in);
            FileOutputStream fos = new FileOutputStream (args[1]);
            FileChannel fci = fis.getChannel();
            FileChannel fco = fos.getChannel();
            fco.transferFrom(fci, 0, fileLength);
            fis.close();
            fos.close();
            t = System.currentTimeMillis() - t;
            NumberFormat nf = new DecimalFormat("#,##0.00");
            System.out.print (nf.format(fileLength/1024.0) + "kB copied");
            if (t > 0) {
                System.out.println (" in " + t + "ms: " + nf.format(fileLength / 1.024 / t) + " kB/s");
    }

  • Copying from one arrangement and pasting into another arrangement

    Hi, I'm using Logic Express 8.
    I'm wondering if there is a way to copy several tracks from one arrangement window into another. I've tried to do this simply by copying and pasting, but when I paste into the new arrangement window I get error messages and the tracks pasted into the new window have a speaker icon with an "X" through it - and obviously no sound.
    Am I missing something, or perhaps this is simply a limitation that exists with using express instead of pro?
    Thanks a lot.

    You can do this by simply importing the data from one project to your new one. Check it out here.

  • How to read LONG RAW data from one  table and insert into another table

    Hello EVERYBODY
    I have a table called sound with the following attributes. in the music attribute i have stored some messages in the different language like hindi, english etc. i want to concatinate all hindi messages and store in the another table with only one attribute of type LONG RAW.and this attribute is attached with the sound item.
    when i click the play button of sound item the all the messages recorded in hindi will play one by one automatically. for that i'm doing the following.
    i have written the following when button pressed trigger which will concatinate all the messages of any selected language from the sound table, and store in another table called temp.
    and then sound will be played from the temp table.
    declare
         tmp sound.music%type;
         temp1 sound.music%type;
         item_id ITEM;
    cursor c1
    is select music
    from sound
    where lang=:LIST10;
    begin
         open c1;
         loop
              fetch c1 into tmp; //THIS LINE GENERATES THE ERROR
              temp1:=temp1||tmp;
              exit when c1%notfound;
         end loop;
    CLOSE C1;
    insert into temp values(temp1);
    item_id:=Find_Item('Music');
    go_item('music');
    play_sound(item_id);
    end;
    but when i'm clicking the button it generates the following error.
    WHEN-BUTTON-PRESSED TRIGGER RAISED UNHANDLED EXCEPTION ORA-06502.
    ORA-06502: PL/SQL: numeric or value error
    SQL> desc sound;
    Name Null? Type
    SL_NO NUMBER(2)
    MUSIC LONG RAW
    LANG CHAR(10)
    IF MY PROCESS TO SOLVE THE ABOVE PROBLEM IS OK THEN PLESE TELL ME THE SOLUTION FOR THE ERROR. OTHER WISE PLEASE SUGGEST ME,IF ANY OTHER WAY IS THERE TO SOLVE THE ABOVE PROBLEM.
    THANKS IN ADVANCE.
    D. Prasad

    You can achieve this in many different ways, one is
    1. Create another VO based on the EO which is based on the dest table.
    2. At save, copy the contents of the source VO into the dest VO (see copy routine in dev guide).
    3. commiting the transaction will push the data into the dest table on which the dest VO is based.
    I understand that if we attach VO object instance to region/page, we only can pull and put data in to only one table.
    if by table you mean a DB table, then no, you can have a VO based on multiple EOs which will do DMLs accordingly.Thanks
    Tapash

  • How do I move all my files from one User Profile (account) into another? I needed to create a new account and want all of my files accessible in the new one.

    How do I move all my files from one User Profile (account) into another?
    I needed to create a new account and want all of my files accessible in the new one.

    ok, what you're learning right now is 101 unix, which is good. Unix is a good thing
    now: the way unix works, and macos (which uses unix underneath) the files and folders work like a hierarchy.
    the start of that tree is /
    so, if you were to do:
    cd /
    (cd means change directory)
    it will bring you at the highest branch of the file system.
    cd /Users
    will bring you to where all the users are.
    to see whats in /Users you can use your friend ls command
    ls means list files/directories
    so:
    cd /Users
    ls -la
    (the -la here means show all (even hidden) and long format (very verbose))  this flag is very optional.
    you will see
    fred
    user2
    for example.
    if you want to see the desktop of user2 you would change directory to it then list the files.
    for example:
    cd /Users/user2/Desktop
    Note that the files and directory are case sensitive, so, desktop is NOT the same as Desktop, or DESKTOP
    ls -la
    you should then be able to see everything in users2 desktop
    you could have done as well the same thing in smaller steps, for example:
    cd /
    cd Users
    cd user2
    cd Desktop
    this is the equivalent of cd /Users/user2/Desktop
    So, for your file, i don't know where it was, but know that if you log in as user2, it will directly put you in
    /Users/user2
    which most likely the file you had created from the other user was in /Users/user1
    if you copied all the files from /Users/original_user to /Users/secondUser
    most likely yes, all your mail, bookmarks etc would be copied over.
    so in your case.
    sudo chown -R seconduser:staff /Users/secondUser
    should work
    Remember that if you start a path with the character /  it means start from the root of the file system, at the highest top you can ever get.
    so
    cd /Users/fred
    is not the same as
    cd Users/fred
    unless you were in / already
    i know it may be confusing at first but it's actually very logical if you play with it.
    to simplify, think of it that / means C:\  on windows
    you can't go any higher than C:\  (in a way)
    if you're unsure which directory you're currently in, you can always type:
    pwd
    it will tell you where you are.
    for example:
    cd /
    pwd
    this shows  /
    cd Users
    pwd
    this now shows /Users
    cd /System/Library
    pwd will show /System/Library
    cd /
    cd /Users
    cd fred
    cd Library
    pwd will show /Users/fred/Library
    unix can look very scary but it's actually vital and very necessary to do tasks sometimes that would take for ever to do via the windows. This is good learning.
    so for the myfile you had created, i can't tell you where it is, at the time you created, if you can do a pwd command you'll know the path,
    ls -la  (this shows all the files where you are)
    if you see myfile in the list
    do a pwd
    whatever is return, the real location of the file would be:
    whatever pwd returned / myfile
    I hope that makes sense.

  • How do you take pictures from one library and put in another library??

    How do you take pictures from one library and put in another library??

    Options:
    1. Export from iPhoto A to the Finder, then import to iPhoto B
    This gets the photo over, but no versions, no edit history and not all the metadata
    2. Use iPhoto Library Manager
    This gets everything: versions, edit history and all the metadata.
    Regards
    TD

  • Hi, extract data from xml file and insert into another exiting xml file

    i am searching code to extract data from xml file and insert into another exiting xml file by a java program. I understood it is easy to extract data from a xml file, and how ever without creating another xml file. We want to insert the extracted data into another exiting xml file. Suggestions?
    1st xml file which has two lines(text1.xml)
    <?xml version="1.0" encoding="iso-8859-1"?>
    <xs:PrintDataRequest xmlns:xs="http://com.unisys.com/Anid"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://com.unisys.com/Anid file:ANIDWS.xsd">
    <xs:Person>
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://com.unisys.com/Anid file:ANIDWS.xsd">
    These two lines has to be inserted in the existing another xml(text 2.xml) file(at line 3 and 4)
    Regards,
    bubbly

    Jadz_Core wrote:
    RandomAccessFile? If you know where you want to insert it.Are you sure about this? If using this, the receiving file would have to have bytes inserted that exactly match the number of bytes replaced. I'm thinking that you'll likely have to stream through the second XML with a SAX parser and copy information (or insert new information) as you stream with an XML writer of some sort.

  • Extract data from xml file and insert into another exiting xml fil

    hello,
    i am searching extract data from xml file and insert into another exiting xml file by a java program. I understood it is easy to extract data from a xml file, and how ever without creating another xml file. We want to insert the extracted data into another exiting xml file. Suggestions?
    Regards,
    Zhuozhi

    If the files are small, you can load the target file in a DOM document, insert the data from the source file and persist the DOM.
    If the files are large, you probably want to use a StAX or SAX.

  • Ideas on how to export from Oracle (11g) for import into a MSSQL server?

    Hi folks,
    Crazy question yes...but I have some devs that are needing to export some schemas/tables from Oracle to somehow import into MSSQL.
    Are there any utilities our there, hopefully from Oracle that would allow for this? So far, all I can think of are to generate the DDL from the Oracle instance, and then do some scripts to output the data in a cvs type format....
    Anything better than this?
    Any links or suggestions greatly appreciated.
    Thank you in advance,
    cayenne

    cayenne wrote:
    EdStevens wrote:
    cayenne wrote:
    sybrand_b wrote:
    Heterogeneous Services using ODBC or OLEDB.
    No need for stupid csv files.
    Sybrand Bakker
    Senior Oracle DBAThank you for the prompt reply. I'm looking into this and am finding some Oracle documentation, but just off the top of my head, this approach seems to assume the 2 database servers can see or talk to each other.
    What if the oracle box is on one network...that cannot connect to the network that the MSSQL box is on. For example..running off some test data from one company to another company with networks that do not cross?Assuming some acceptable export/import utility, how do you plan on getting the file from the source to the target if the two servers are on networks that cannot talk to each other?Well, I'm still trying to gather facts, this is just a question coming in from some developers.
    From what it may be, is that the can scp from site to site, but no direct connectivity between the database servers on the sites...isolated, maybe a DMZ...I dunno everything yet.Well, you either have connectivity between the two machines or you don't. Binary decision tree.
    IF  net_connectivity_exists
         you can use oracle sqlnet enabled capabilities
         OR
         you can transfer an export file via ftp, sftp, scp, etc.
    ELSE
         you have to transfer an export file via sneakernet
    END-IF

  • Copying from one photo to paste into another

    I need to copy two people from one photo and paste them into a group picture in another photo. I understand this is not something Aperture can do. I need something like Photoshop. However, since I seldom do this type of copying and pasting, is there a less expensive photo editor that will let me do this? Will Photoshop Elements suffice? Or is there a free application like Picasa that will do the job?
    TIA!!

    In order of price here are some suggestions:
    Seashore (free)
    _[The Gimp|http://www.gimp.org/macintosh>_ also free
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    [Pixelmator|http://www.pixelmator.com> ($60 approx.)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate.
    Regards
    TD

  • Want too uninstall from one computer and reinstall on another

    want too uninstall from one computer and reinstall on another

    Jackhne2004 which Adobe software or service are you trying to install on the other computer?

  • Anyone has tried export Portal from 9.0.4 version and import into 10.1.2

    Anyone has tried doing that?
    I failed in checking of version compatibility when doing import.
    But I think 10.1.2 is higher version, why cannot accept data from 9.0.4?
    Rgds,
    Joe

    We were not even successful doing an import with in 9.0.4 versions. When we tried importing from 9.0.4.99 to 9.0.4.120 (?), it failed the version compatibility check. Is there any way to verify what versions can be successfully imported and then bypass the version check?
    Rgds/Mark M.

  • Export mailbox from 2010 (sp3) and import into 2007 Sp3 rollup 10

    I have no issue exporting the mailbox from 2010.  
    The issue is importing into 2007.  I have a 2003 32 bit server with outlook 2003 sp2 running etc.  Every time I try to import I get the below error.  Is this even supported?
    I've scoured the web, tried fixmapi, added permissions, different switches, etc.  The pst attaches fine to the mailbox without issues.
    [5/15/2014 8:15:51 AM] [0] [2007import2] Opening Exchange mailbox.
    [5/15/2014 8:15:51 AM] [0] [ERROR] Error was found for 2007import2 ([email protected]) because: Error occurred in the step: Approving object. An unknown error has occurred., error code: -2147221219
    [5/15/2014 8:15:51 AM] [0] [2007import2] The operation has finished.
    Any help or sugesstions would be great!

    Steve I see that Belinda suggests that this may be a bug and that you are on SP3, however it may be that you need to update your systems completely to see if the issue is resolved.  To be able to find the actual patch level you are on you would need
    to follow the steps below.  Once you know your actual patch level you can either just update to the latest and greatest and try again OR read through the various fixes for each patch newer then what you have applied
    1.    This is the link for the Exchange Server Build #'s including Service Packs 
    http://social.technet.microsoft.com/wiki/contents/articles/240.exchange-server-and-update-rollups-builds-numbers.aspx
    a.    Only thing you will not find in this list are the IU (Interim Update #’s) because they are unofficial patches to fix specific issues and then must be uninstalled before moving on to the next RU, CU or SP.
    2.    To find the SP, RU, CU level that your server is on use this Powershell command.  
    GCM exsetup |%{$_.Fileversioninfo}
    EXAMPLE 1:  Below is the result from a server with 2010 SP1 RU6 installed and you will see this referenced in the above link
    Product Version         File Version          File Name
    14.01.0355.002           14.01.0355.002   C:\Program Files\Microsoft\Exchange Server\V14\bin\ExSetup.exe
    EXAMPLE 2:  Below is the result from a server with 2010 SP1 RU6 installed WITH an IU from MS and you will not see this version referenced in the above link but it is sequential, i.e. SP1 RU6 is .002 and the IU is 003.  So in short by looking at this
    and the above link you could easily infer that this system has SP1 RU6 with some type of IU installed.
    ProductVersion   FileVersion      FileName
    14.01.0355.003   14.01.0355.003   C:\Program Files\Microsoft\Exchange
    Search, Recover, & Extract Mailboxes, Folders, & Email Items from Offline Exchange Mailbox and Public Folder EDB's and Live Exchange Servers or Import/Migrate direct from Offline EDB to Any Production Exchange Server, even cross version i.e. 2003 -->
    2007 --> 2010 --> 2013 with Lucid8's
    DigiScope

  • Export from one oracle datasbase server to another  for version: 9.2.0.1.0

    Hi All,
    I know this is an elementory thread , however i would like to know the process of import and export of database in detail.
    I need to copy the entire database from a existing prodcution server having oracle 9.2 as its version to another server with same oracle version .
    Kindly mention the process to be carried out .
    Thanx in advance

    I need to copy the entire database from a existing prodcution server having oracle 9.2 as its version to another server with same oracle version .Its better to take a hotbackup/coldbackup or RMAN backup depending on the environment. Exp/Imp will be time consuming.
    For exp/imp;
    http://www.orafaq.com/wiki/Import_Export_FAQ
    For full export-import, you need to do is take an exp backup from source DB. Create same tablespace that of source DB and import from the dump file.
    exp system/manager full=y buffer=100000 feedback=10000 recordlength=64000
    imp system/manager full=y buffer=100000 feedback=10000 recordlength=64000

Maybe you are looking for

  • Replacing non-ASCII characters with HTML charcter references

    Hi All, In Oracle 10g or greater is there a built-in function that will convert a string with non-ASCII characters like this a b č 뮼 into an ASCII string with HTML character references like this? a b & # x 0 1 0 D ; & # x B B B C ; (note I had to inc

  • Unexpectedly quit on export

    Mac G5 dual 2.7 4 GB RAM Nvidia Gforce 68000 Motion 2 Okay, I just want to export my motion project back to FCP. So, I set my playback range, then go to export, and the application unexpectedly quits. I'm just trying to export about five clips, each

  • MBP Core Duo 2.16Ghz Display Problem

    After watching an hour of steve jobs and bill gates D5, my MBP display now doesn't display normally anymore. The display is discolored, the color is all whacked out. I don't know what happen, i ran the hardware test and it found nothing. I suspect th

  • File transaction

    Using the File transactions   Posted: Sep 30, 2008 11:55 AM       E-mail this message      Reply  Hi, While creating a logical file, and uploading it in the Development system using the transaction 'FILE', I am getting a pop up to create a request, w

  • Modes in Sequential files?

    hi,      what are the modes in sequential files and give brief description.