Import/Export problems- Auto Resizing?

Among other things, I use Aperture to manage my iPhone wallpapers (It's convenient since I also have albums of vacation photos that sync to my phone through aperture.) When I download them, they are the correct size for the iPhone (320x480). When I import them, either by dragging and dropping or with the import tool, the metadata says the image is 320x480. Everything seems fine.
However, when looking at the wallpapers on my iPhone, everything is extremely pixelated. I wondered why, and then tried dragging one of the wallpapers from it's home in Aperture to my desktop, and it's somehow now 160x240. It's doing the same thing to my iPhone, making all the wallpapers pixelated.
So essentially, 320x480 picture goes into Aperture, Aperture registers it as being 320x480 in metadata, but then spits out a 160x240 version into Finder and on my iPhone.
Why is it doing this?

Because you're not using the actual photos:
and then tried dragging one of the wallpapers from it's home in Aperture to my desktop, and it's somehow now 160x240. It's doing the same thing to my iPhone, making all the wallpapers pixelated.
When you drag a photo to the desktop from the Aperture WIndow what you get is the Preview of the file, not the file.
It's doing the same thing to my iPhone, making all the wallpapers pixelated.
Are you syncing them via iTunes? That also only uses the Preview.
To get the actual file you'll need to export it (File -> Export) or use better quality Previews.
Regards
TD

Similar Messages

  • Import/Export wizard auto-generates all columns as DATE

    Hi
    I'm trying to use the Import/Export Wizard as I used to, as a handy tool to figure out what a series of T-SQL statements (in an SSIS package) is doing - or, if I'm lucky, what on earth the original dev
    intended them to do.
    Version: SQL 2014 64-bit running on Win 7 64-bit
    The code is pretty dreadful:
    SELECT DISTINCT on one set of column names,
    join this set to another table but not on exactly the same set of column names,
    embedded (SELECT MAX(bla) FROM SameTable WHERE [match to outer set on another set of columns] GROUP BY [hey, yet another set of columns!]) inside the SELECT column list...
    and it all goes to a nasty #Tmp, which is then abused with further bad code further down.
    Imp/Exp is always handy to quickly get the intermediate results into an auto-created real table, so I can figure out exactly what the effect of this is.  I use it to export from the database back to the same database, but to a persisted table.
    This time (first time with SQL2014) it's not working.  The source is "write a query" (paste the actual query).  The destination I set to a new table.  The auto-generation of the new table creates every column as type
    date.  Not surprisingly, this doesn't work, as the original data is mostly not of
    date time.
    Looks like a bug.  Any idea of a workaround or fix?
    thanks!

    Sorry, but I think you're still not getting what I'm saying.
    This is not a production SSIS package design, but a quick'n'nasty diagnosis technique I'm used to using:
    - Find some SQL in an existing query/script that I'm trying to debug
    - Paste it into Import/Export wizard as a source
    - Wizard creates a new table for the result - I then have the results persisted for examination, comparison with the results from refactored code, etc.
    And I can't even put suitable CAST/CONVERT statements in, because the wizard is mis-identifying the
    input column data types, with no way to change them.   It's somehow thinking that every column in the input (the SQL query) is of type
    date(500), when the columns are obviously not of this type.

  • IMPORT/EXPORT problem.

    Hi,
    I am using a import export statement in my program.
    REPORT  ZKATEST.
    data : w_test type c value '1'.
    data : w_test1 type c.
    export w_test to memory id 'ZKAPIL'.
    import w_test1 from memory id 'ZKAPIL'.
    write : w_test1.
    Here the value gets exported to memory, but while importing its not getting populated (w_test1 is blank).
    Please suggest the solution.
    Thanks
    Kapil

    Hi kapil,
    1.  This kind of problems happen
        because the variable name,
        for export
        and import are different.
    2.  While exporting,
        Under memory id ZKAPIL,
        Value of W_TEST is stored with the name W_TEST.
    3. From the syntax,
        <b>import w_test1 from memory id 'ZKAPIL'</b>
       while importing,  from memory id ZKAPIL,
        the sysetm will , by default,
        try to search the value stored under name W_TEST1.
    (But it won't be found, because the orignal value is stored
      under the name W_TEST and not W_TEST1)
    <b>4. So just modify the syntax with this, and it will work fine.</b>
    <b>import W_TEST = w_test1 from memory id 'ZKAPIL'.</b>
    regards,
    amit m.

  • Import / Export problems

    Hi team.
    I have a 4.6 C version an the import / export works fine.
    But in the SAP ERP Central Component 5.0
    I do the Export.
    Review the abap memory and se the areas, but empty.
    And when I do the import the data are clear.
    Do you have any idea.
    And i can't change for a SET parameter Id, becuase the data are numeric.
    Thanks

    Hi David, could you please post the a sample of the code that is not working?
    Best regards
    Edited by: Fernando Ariel Villa on May 17, 2011 11:05 PM

  • Import , Export problem in Internal table

    Hi all,
    I am using ver 4.6C.
    I have 2 programs  namely X an Y.
    X is main program  and Y is having some Internal table with data. I want to use Y internal table in X program.
    In X program.
    I used SUBmit to call Y program . After Submit  I used Import as follows.
    Import Itab from memory id 'ABC'.
    In y program  used Export as follows
    Export itab from memory id 'ABC'.
    When I put break-point and check ITAB in X program it is empty.
    Anyone help me or send code will be appreciated.
    Thanks
    Rathnam

    Hi Stalin,
    i did it the following way:
    CONSTANTS: memid_zfo0consu_upl(13) TYPE c VALUE 'ZFO0CONSU_UPL'.
    TYPES: BEGIN OF t_zfo0consu_upl,
             zfo0consu type /bic/oizfo0consu.
    TYPES: END OF t_zfo0consu_upl.
    DATA: it_zfo0consu_upl     TYPE STANDARD TABLE OF t_zfo0consu_upl
                                                   WITH DEFAULT KEY.
    *&...Gesellschaft exportieren
            EXPORT zfo0consu_upl = it_zfo0consu_upl TO MEMORY ID
                                                  memid_zfo0consu_upl.
    and then the import.
      CONSTANTS: memid_zfo0consu_upl(13) TYPE c VALUE 'ZFO0CONSU_UPL'.
      DATA: BEGIN OF it_zfo0consu_upl OCCURS 0,
               zfo0consu_upl TYPE /bic/oizfo0consu.
      DATA: END   OF it_zfo0consu_upl.
    *&...Import der Upzuloadenden Gesellschaft
      IMPORT zfo0consu_upl = it_zfo0consu_upl
                              FROM MEMORY ID memid_zfo0consu_upl.
    <b>Reward if useful.</b>
    Kind regards
    Henner

  • Portal Import/Export problems and questions

    I recently tried to promote our dev stuff to the prod using both the exp/imp scripts (following the Imp/Exp whitepaper) and the built-in application export. The first time went without a hitch; however, after a few report updates in dev, I tried it again, and now I can't even get the Welcome page to appear. (Yes, I did import that page). The page finishes loading but nothing shows up on screen. I can login in to the change the DADs but nill to Portal. Any ideas how to even get in to see if the stuff imported?
    Along those lines, after searching through these threads, and reading the documentation, I get the general feel that imp/exp are not at 100%. So what would be the procedure to do production promotions? Do I have to delete stuff (apps & pages) on the PROD server, and then import? If so what (apps?, security?, login server?) do I delete?
    Rich

    Thanks for the post Indira. Here are the answers to the questions.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>>What version of the Oracle Portal are you using?<HR></BLOCKQUOTE>
    I am using Oracle Portal version 3.0.6.3.3
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>>Did you make any changes to the Welcome page when you imported it?<HR></BLOCKQUOTE>
    No, I did not make any changes to the Welcome page when I imported it.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>>When you say that the page comes up blank, did you check the HTML source to see if there is anything in there?<HR></BLOCKQUOTE>
    Yes, and there is something in there. Its the W3C tag and <HTML></HTML>. That's it. (more on this below)
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>>What kind of portlets are in the page that you had imported?<HR></BLOCKQUOTE>
    I imported one application (with a combination of Reports, Forms, Dyn Pages, and LOV's), 7 pages with portlets based on all those components in tabbed interfaces on each page. For example, each page has 4 tabs with one portlet (running one of the reports) on each tab.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>>Are you able to get to the pages that you imported, through the Navigator. Can you edit/customize the page?<HR></BLOCKQUOTE>
    Well this is funny, since I couldn't get to anything, I thought I was a goner since I couldn't log in to get to the main page and fix all this, not to mention to see if the app imported at all. So, I went to my DEV box, found out what the page_id was for the out-of-the-box default page, typed it into the URL and I got the Login link. I logged in and I can see that the app imported. I can also see the pages, but with no portlets. When I try to add portlets, I get USER DEFINED ERRORS galore. So I have to recreate the pages from scratch (not a very good thing to be doing in PROD)
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>>Try creating another page in your new prod instance and making that your default home page. Please can you check if that is working.<HR></BLOCKQUOTE>
    As I mentioned above, this is basically what I had to do. I did another promotion last night, and since the pages are what I thought the trouble was, I didn't import them. I just imported sso, sec, and the app. To my dismay, the same thing happened. I call portal home and I get a blank screen (empty HTML tags). So there I was, well into the night, creating pages in PROD so that we could have a site to show today.
    Since someone else gave me the CD to install, I wasn't aware of the version I had and its bugs/issues. I have started the process of upgrading versions, but would like to get a solid idea of whats going with promotions before I do.
    Thanks,
    Rich
    null

  • Windows 7 WMV Import / Export problems

    Greetings,
    Due to nature of CS4 having it's own rendering engine, current codec changes mis-effects it a lot.
    For instance, a clean install on a clean install Windows 7 RC....
    WMV files just can not be converted:
    If you play/preview them inside Premiere CS4, you will see video struttering, jerky playback.
    If you just try to convert them by AME, you will get following error: "Error Compiling Movie Unknown Error"
    I wonder if it is a known bug or subject to change with next update or something extra that should be done. Just wanted to let you know.
    Here are computer specs:
    Intel Core2Quad Q6600 @ 2.4 Ghz
    nVidia 8800 GTS 512mb
    4 GB RAM
    Windows 7 RC Build 7100 x64
    Premiere CS4 (Updated via auto-updates)
    This is about all WMV's I've tested so far. My main encoding target was F4V. I've tried anything such as Installing Windows 7 and without installing any further codecs, just installing CS4 OR clean install Windows 7 and codecs after and after CS4. Result did not change.
    My latest test wmv: http://download.intel.com/pressroom/kits/sot/Star_Global.wmv
    Finally I'm guessing that has to do with either codec change in Media Player 12 but then I thought, it does have nothing to do with CS4 engine itself. Quicktime movies converts and loads just fine for instance.
    So did anyone experience such issue or any work-around or any fix on the way?

    Description of you is Beta,
    RC is release candidate and it is almost as equal to Final Release unless there is a critical bug in Operating System itself to stop it work. It is too late for 3rd party programs checking which MS is not responsible off for compability.
    Second, ofcourse, noone expecting a W7 certification from Adobe CS4 product. Adobe often release new pack with every OS rather than converting old products compability for "financial" reasons.
    Now off the codec issue:
    WMV playback is perfectly fine with every single other player without any 3rd party codec installation just like Vista, Vista x64 per se... I said in my first post, I've tried it without any 3rd party codecs (WMV is default codec already for Windows you know, you dont need any codecs for it normally) and there appears the problem, you can't play WMV files INSIDE PPro and get "Unknown Error" messages along with AME.
    So here is final check list
    1. Without any 3rd party codecs or filters installed, WMV plays just fine on WMP, Media Players, etc. Not in CS4
    2. With 3rd party codecs and filters installed, WMV plays just as fine on WMP, Media players etc. Not in CS4
    3. I dont know if MS did anything inside OS or actually WMV format, but nothing indicates remotely about that, it is STILL WMP9
    And wine snob, "Getting official certified" logo is one thing, writing a code that works globally on NT kernel is another. I've got editing and image processing software last updated at year 2001 that works in x64 Windows 7 without any problems... You'd expect better from Adobe... At least an update or workaround till they acquire a computer that has a Windows 7 RC on it (hey, it is released you know, you could always ask to MS for a free copy) I mean a software company should not be that alien on changes on platforms they sell their product and prepare for full release, no? As I said, I lost my hope on x64 Flash Player already after 2 years of same topic "Coming soon" on Knowledge base...

  • Import/Export problems after patching oracle from 9.2.0.1 to 9.2.0.5

    Hi, After I applied the 5 patch to oracle 9201 on Win XP the export utility has started to complain about
    EXP-00008: ORACLE error 942 encountered
    ORA-00942: table or view does not exist
    EXP-00024: Export views not installed, please notify your DBA
    EXP-00000: Export terminated unsuccessfully
    And after I applied catexp.sql script, it didn't fix the issue with export, the error message has become like this:
    EXP-00056: ORACLE error 31600 encountered
    ORA-31600: invalid input value EMIT_SCHEMA for parameter NAME in function SET_TRANSFORM_PARAM
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "SYS.DBMS_METADATA_INT", line 3926
    ORA-06512: at "SYS.DBMS_METADATA_INT", line 4050
    ORA-06512: at "SYS.DBMS_METADATA", line 836
    ORA-06512: at line 1
    EXP-00000: Export terminated unsuccessfully
    Can someone advise, what's wrong with it? With oracle 9.2.0.1 export worked fine, after upgrade to 9.2.0.5 it fails every time it gets to the table data export stage.
    Thanks in advise

    It seems that you have found an answer in other forum :
    Imp/Exp problems after patching oracle to 9205
    Nicolas.

  • Azure storage import/export problem

    I have sent a set of files up as part of an import job to our Azure Storage.  These are fixed-size VHDs of Hyper-V virtual machines that we want to relocate to Azure.  I followed all of the instructions correctly yet they are showing up as Block
    Blobs and not Page Blobs so they are useless to us.  What needs to be done to get them changed to Page Blobs?  What am I doing wrong when getting the files added to the drive that is making them show up as block blobs?  I was able to get this
    to work a year ago for different VHDs on a different account, what do I need to do this time?

    Hi Alouis,
    Please make sure you are specifying the BlobType parameter while copying. This specifies the blob type for the destination blobs (values are:
    BlockBlob and PageBlob. )
    If no value is specified, the default is BlockBlob.
    Please refer:
    https://msdn.microsoft.com/en-us/library/dn529089.aspx
    Regards,
    Manu

  • The BIG thread of how to handle import/export 2011-12-06

    I have used Captivate since its birth!
    There have always been some issues with import/export.
    I am now using version 5.0.1.625 and still suffer from import/export problems. Actually those problems drive me crazy!
    I want this community to rise and demand some changes when it comes to big scale usability.
    First demand,
    One should be able to export captions from several captivate files at the same time, There should be a possibility to "batch export" a whole folder with subfolders of files.
    Second demand,
    Use common standards and let us choose among standards, in this case I am talking about the XML that is almost right.
    http://forums.adobe.com/thread/871079
    Who?, that works with translation companies uses word today? And even if one did, then there still should be a batch function to export everything at the same time.
    Let us talk about the word "translation"... how come it exports the colour and style... we use both white and black captions which gives black and white text
    Imagine white text on white background in word.
    Please stand with me and demand an update of the import/export function or a batch tool, by writing a message to the captivate team here.
    // Daniel

    The proper place to ask for these things is in the Bug/Enhancement form that Adobe provides on this forum: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=5
    If you have a vision for how you'd like Captivate to work, that where you need to lay it all out.
    ...and a word to the wise...I would avoid the word "demand".  It's not going to get you anywhere but could even backfire on you.

  • In iPhoto how do I stop files from auto resizing as they import? I don't want my files reduced to 72. The option to choose size on the export menu not suitable for up sizing, as you can't restore the quality removed?

    in iPhoto how do I stop files from auto resizing as they import? I don't want my files reduced to 72. The option to choose size on the export menu not suitable for up sizing, as you can't restore the quality removed.

    Short answer: They are not resizing, there is no quality lost. The dpi is only set when you decide what size you're printing at
    Longer answer:  Dpi means nothing in the digital world of your computer. There are no "inches" to have "dots per..." Size is measured in pixels. That's the same on your camera. It doesn't take 10 x 8 or 6 x 4 shots. It takes shots measured in megapixels. For instance 4,000 x 3,000 is a 12 megapixel camera.
    Using that example, that shot from that camera has 12 million pixels. So that's how many "Dots" there are. To decide the ratio of dots per inch, you now need to decide the "inches" part. And that's printing. Print at 10 x 8 and the dpi will be 4,000/10 or about 400 dpi. At 6 x 4 then it's 4,000/6 or 660 dpi. Work the other way: Print at 300 dpi and the resulting image will be about 13 inches on the longer side.
    So, your photo as a fixed number of pixels. Changing the dimensions of the print will vary the dpi, changing the dpi will vary the dimensions of the print.
    For more see http://www.rideau-info.com/photos/mythdpi.html
    Regards
    TD

  • Problem of Data Import/Export after migration of Oracle DB 9i to 10g

    We have encountered the following problem after the migration of Oracle DB 9i to 10g R1 and ESRI ArcSDE 8.3 to 9.1.
    In our development server, a view was created by joining of one feature class (point feature), two attribute tables and one F table. We have to perform a process to export all the features in that particular view from the development server and then import them to the production server. In total, there should be about 60,000 points.
    Form our past experience (using Oracle DB 9i and ESRI ArcSDE 8.3); we spent about 15-20 minutes to complete the import-export procedure. However, after the system migration, the speed of the import-export procedures is extremely slow, which is talking about 2 hours for ONLY EXPORTING 5MB data.
    We would like to seek advice in solving the above problems. THANKS!

    Try to delete old stats, then gather new stats on the schema and try the export again.

  • Export/Import Project problems

    I have two machines: a PowerMac (G5) and a MacBook Pro (Intel Dual Core). Both 2GB RAM, running OS X v10.5.6 and Aperture 2.1.2. (More tech spec info available if anyone thinks it relevant).
    I have built up a project on the MacBook Pro, creating albums, creating stacks and making picks within the stacks, making adjustments to each of the picks and then creating a book.
    I now want the project on the PowerMac G5, which is my master machine and contains all my other projects.
    On the MacBook Pro I exported the project and then copied the resulting .approject file to the PowerMac. I then imported the project into Aperture from there. On a cursory scan, everything seems fine and in the Projects Inspector it shows 1376 images against the project on both machines. However, if I look more closely, I've lost all my picks. I.e. I need to go through every stack again and reselect my picks (very boring).
    It gets worse when I look at the Book within the project - it's lost the positionings (i.e. I double clicked on the image and moved it around slightly to get the best crop for the selected box shape). And then I did a Close All Stacks and it deleted every picture from the book so all 60 pages were empty again and the images were all back down in the film strip!
    At this point, my immediate thought was the .approject file got corrupted during the copy, but I've done a recursive diff (diff -qr fileA fileB) between the file on the MacBook Pro and the file on the PowerMac and it reported no differences at all.
    Has anybody else had similar problems? Is the project import/export known to be flakey? Better yet, anybody know of any workarounds?
    Thanks in advance for any help anyone can offer.
    Darren

    OK - I've tried eliminating some of the variables and it turns out the two-machines-issue is a bit of a red herring and this is a straightforward Export/Import bug in Aperture.
    On a single machine (2.16GHz Intel Core Duo MacBook Pro with 2GB RAM, running OS X 10.5.6 and Aperture 2.1.2 (build 3G13)) I have a project with many images. I create versions of these images and apply adjustments (Sharpness, Monochrome Mixer, Exposure, Enhance, etc.). I then make the adjusted version the Pick and I've created a 62 page book from these Picks.
    Now I export the project (i.e. in the Project Inspector I right-click the project and choose Export > Project). I export the project to a file on the desktop and rename the existing project in Aperture. I now import the saved .approject file and I find that all my (long and carefully chosen) Picks are no longer Picks. (I've tried this a few times and ruled out the possibility of a corrupt export file).
    As a result, when I select the Book I get the "Non-Pick Images" dialog with the dreaded "One or more placed items are no longer the pick of a stack." message.
    I have two options at this point: "Use Current Pick" ruins the book - I have to go through and work out all the picks again (and also re-pan all the images within the Photo Boxes as this data has also been lost).
    Or I can choose "Create new Version", which appears to preserve my book's original look (I haven't looked in too much detail yet), but my project now contains a couple of hundred more images than it used to (or at least extra versions which, whilst I know these are relatively 'cheap', are still unnecessary) and this still doesn't help with my other albums and light tables, which still have incorrect images shown as the Picks.
    I'm finding this quite a worry - I originally hesitated to move my photo library into Aperture due to the thought of losing the metadata one day if I moved from Aperture to something else, but in the end I decided to trust that something as simple-to-test as Export/Import would get properly implemented - now I'm beginning to fear that it doesn't even within the same version of Aperture, never mind different versions of Aperture or (heaven forbid) different applications altogether

  • JTable in JScrollPane auto resize refresh problem

    Hello,
    I have a JTable in a JScrollPane. Number of rows is changing.
    I'm using the following to auto-resize JScrollPane.
    public Dimension getPreferredSize() {
                  Dimension size = super.getPreferredSize();
                  size.height -= getViewport().getPreferredSize().height;
                  Component view = getViewport().getView();
                  if(view != null)
                  size.height += view.getPreferredSize().height;
                  return size;
             }There is a JButton, which adds an empty row to the JTable. It all works fine, except the auto-resize when a new row is added. I want all rows of JTable to be visible, with no scrollbars present. I tried repaint(), revalidate(), addNotify(). What should I do?
    Thanks.

    Sure
    DefaultTableModel dtm = new DefaultTableModel(vec, header);
              jt0 = new JTable(dtm);
              jt0.getTableHeader().setReorderingAllowed(false);
              jt0.setFont(new Font("Tahoma", Font.PLAIN, 12));
              jt0.getTableHeader().setFont(new java.awt.Font("Tahoma", java.awt.Font.BOLD, 12));
              jt0.setRowHeight(18);
            jt0.setPreferredScrollableViewportSize(new Dimension(500, jt0.getRowCount() * jt0.getRowHeight()));
            jt0.setFillsViewportHeight(false);
              jsp0 = new JScrollPane(jt0);
    GridBagConstraints gbc = new GridBagConstraints(); 
            gbc.insets = new Insets(2,1,2,1); 
            gbc.weightx = 1.0; 
            gbc.weighty = 1.0; 
            JPanel p0 = new JPanel(new GridBagLayout()); 
            gbc.fill = gbc.HORIZONTAL;
            p0.add(jsp0, gbc);
              JButton jb1 = new JButton("add row");
              jb1.setSize(40, 18);
    jb1.addActionListener(new java.awt.event.ActionListener() {
                   public void actionPerformed(java.awt.event.ActionEvent e) {
                        dtm.addRow(new Object[]{....});
    //                    jt0.scrollRectToVisible(jt0.getCellRect(jt0.getModel().getRowCount()-1, 1, false));
    //                    jt0.setRowSelectionInterval(jt0.getModel().getRowCount()-1, jt0.getModel().getRowCount()-1);
        public class SizeX extends JScrollPane {
             public Dimension getPreferredSize() {
                  Dimension size = super.getPreferredSize();
                  size.height -= getViewport().getPreferredSize().height;
                  Component view = getViewport().getView();
                  if(view != null)
                  size.height += view.getPreferredSize().height;
                  return size;
        }

  • Getting problem in Import/export of data

    Hi,
    I have just cloned my database to an another machine. Everything is ok with the database.But when I try to import/export the data from that new database I get these error messages,
    Exp 00056 - Oracle error 1403 encountered
    ORA-01403 - No data found
    Exp - 00000 - Export terminated unsuccessfully
    santosh
    [email protected]

    hi
    Examples of Using Different Releases of Export and Import
    Table 19-7 shows some examples of which Export and Import releases to use when moving data between different releases of the Oracle database.
    Table 19-7 Using Different Releases of Export and Import
    Export from->Import to Use Export Release Use Import Release
    8.1.6 -> 8.1.6 8.1.6 8.1.6
    8.1.5 -> 8.0.6 8.0.6 8.0.6
    8.1.7 -> 8.1.6 8.1.6 8.1.6
    9.0.1 -> 8.1.6 8.1.6 8.1.6
    9.0.1 -> 9.0.2 9.0.1 9.0.2
    9.0.2 -> 10.1.0 9.0.2 10.1.0
    10.1.0 -> 9.0.2 9.0.2 9.0.2
    Restrictions When Using Different Releases and Versions of Export and Import
    The following restrictions apply when you are using different releases of Export and Import:
    1.Export dump files can be read only by the Import utility because they are stored in a special binary format.
    2.Any export dump file can be imported into a later release of the Oracle database.
    3.The Import utility cannot read export dump files created by the Export utility of a later maintenance release or version. For example, a release 9.2 export dump file cannot be imported by a release 9.0.1 Import utility.
    4.Whenever a lower version of the Export utility runs with a later version of the Oracle database, categories of database objects that did not exist in the earlier version are excluded from the export.
    5.Export files generated by Oracle9i Export, either direct path or conventional path, are incompatible with earlier releases of Import and can be imported only with Oracle9i Import. When backward compatibility is an issue, use the earlier release or version of the Export utility against the Oracle9i database.
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14215/exp_imp.htm#i1013164i hope it will help u.
    regards
    Mohammadi52
    Message was edited by:
    Mohammadi52

Maybe you are looking for

  • OS 10.4.9 and iTunes 7.1

    Okay everyone. I updated to OS 10.4.9 today. I had updated iTunes on 3-5-07. It worked fine. However, now that I'm running the new OS and I've tried burning my first CD, it looks like I may have another problem, Houston. The very first track to burn

  • Country of origin field?

    Dear Gurus, can we make only 'country of origin' field manadatory in me11 and me12? if yes, how? If No, why? pls help........

  • Why no Acrobat Pro 9 trial versions for Mac

    I received my upgrade box for CS5 and the instructions said to delete (uninstall) Acrobat Pro 9 and then re-install it from the included disk. No big deal, I installed CS5 then uninstalled Acrobat as instructed, popped in the DVD of the new Acrobat P

  • JAXRPCSERVLET.28:Missing port information

    All, I have exposed JCD as webservice in 513. When client try to invoke my webservice, they get JAXRPCSERVLET.28:Missing port information error and I have checked the server.log and I have find out below error. Please help. [#|2007-07-05T10:54:02.419

  • Error in Production Backflush entry

    I am trying to create a backflush for reporting point 2 from SCM for a planned order. Reporting Point 1 has already been confirmed. But, while creating production backflush entry from APO (when I click on Goods Movements), I am getting an error of 'S