Oracle 8i import 9i's export file??

I tried to import a 9i export dump file from 8i database, but failed. Is there any way 9i export utility can generate 8i format dump file??

export/import aren't backward compatible. For example, there may be new/changed datatypes with the higher version that the lower version won't understand.
You will need to use "imp" from version 9 connecting to your 8i database, but first run the catexp.sql script from the 9i ~/rdbms/admin.
This is true on all platforms

Similar Messages

  • Can Oracle write out a sorted export file

    I thought I read that a version of exp sorts data using something like an ORDER BY clause. But I can't find any documentation for that. Does anyone know if 9i or 10g does this?
    Thanks,
    Jerie

    http://download-west.oracle.com/docs/cd/B14117_01/server.101/b10825/dp_export.htm#sthref148

  • Oracle 10g import question

    Hi,
    Is it possible to import oracle 7.3.3.5 export file into oracle 10g? I created user tablespaces manually, and then tried to import but I see strange errors.

    Did you read the metalink note specified above?.
    Please read the same and it has the information.
    Example: export from 7.3.4 and import into 11.1.0
    use the 7.3.4 Export client to export the data from the 7.3.4 source database,
    use the 11.1.0 Import client to import the data into the 11.1.0 target database,
    Note that a migration with export FULL=Y & import FULL=Y is not supported.
    that's what mentioned above. Try show=y option and use fromuser/touser
    HTH
    Anantha

  • EXPORT FILE을 SPLIT하여 받는 방법

    제품 : ORACLE SERVER
    작성날짜 : 2002-04-19
    EXPORT FILE을 SPLIT하여 받는 방법
    =================================
    PURPOSE
    이 자료는 export시 2GB이상의 export dump file을 만들지 못하는 제약사항에 대하여 여러 export file로 나누어 받는 방법을 설명한다.
    Explanation
    !!! IMPORTANT: 이 방법은 반드시 KORN SHELL (KSH) 에서 작업해야 한다. !!!
    만일 ksh을 쓰지 않을 경우는 unix prompt에서 ksh라고 치면 변경이 된다.
    unix pipe와 split command를 사용하여 disk에 1024m(약1GB)씩 export file이 생기면서 export된다.
    export나 import시 제공되는 모든 parameter의 추가적인 사용이 가능하다.
    Export command:
    echo|exp file=>(split -b 1024m - expdmp-) userid=scott/tiger tables=X
    사용예> echo|exp file=>(split -b 1024m - expdmp-) userid=scott/tiger log=scott.log
    위와 같이 split하여 export를 받을 경우 file name은 expdmp-aa, expdmp-ab...expdmp-az, expdmp-ba... 으로 생성된다.
    Import command:
    echo|imp file=<(cat expdmp-*) userid=scott/tiger tables=X
    사용예>echo|imp file=<(cat expdmp-*) userid=scott/tiger ignore=y commit=y
    split와 compress를 같이 사용해도 가능하다.
    Export command:
    echo|exp file=>(compress|split -b 1024m - expdmp-) userid=scott/tiger tables=X
    Import command:
    echo|imp file=<(cat expdmp-*|uncompress) userid=scott/tiger tables=X
    *** 위의 작업을 solaris에서 test가 되었다. os 종류에 따라서 shell command는
    달라질 수 있다.
    이 외에도 split command를 사용하지 않고 unix pipe와 compress를 사용하여
    3-step의 작업으로 export file size limit의 회피를 위한 방법도 가능하다.
    Export command:
    1) Make the pipe
    mknod /tmp/exp_pipe p
    2) Compress in background
    compress < /tmp/exp_pipe > export.dmp.Z &
    -or-
    cat p | compress > output.Z &
    -or-
    cat p > output.file & )
    3) Export to the pipe
    exp file=/tmp/exp_pipe userid=scott/tiger tables=X
    Import command:
    1) Make the pipe
    mknod /tmp/imp_pipe p
    2) uncompress in background
    uncompress < export.dmp.Z > /tmp/imp_pipe &
    -or-
    cat output_file > /tmp/imp_pipe &
    3) Import thru the pipe
    imp file=/tmp/imp_pipe userid=scott/tiger tables=X
    Reference Ducumment
    <Note:1057099.6>

  • EXPORT FILE에서 TABLE 생성 SCRIPT를 만드는 방법

    제품 : ORACLE SERVER
    작성날짜 : 2002-04-08
    EXPORT FILE에서 TABLE SCRIPT를 만드는 방법
    ==========================================
    PURPOSE
    다음은 EXPORT FILE에서 TABLE을 생성하는 SCRIPT를 만드는 내용이다.
    Explanation
    $ strings EXPDAT.DMP | grep 'CREATE TABLE' >> tables.sql
    Reference Documents
    --------------------

  • Importing Oracle 10g export file to Oracle 9i

    We have an export file from a 10g database and wanting to import them to 9i database. Is this possible?

    Assuming that they have both 10g and 9i database, there is no reasom why they can't use the 9i export and import utilities to load the data.
    If the dump file came from a 3rd party's database to whcih they don't have access, then obviously they won't be able to load the file into a 9i database.

  • Schema Import failed :IMP-00008: unrecognized statement in the export file:

    Hi ,
    I was running a database schema import from a database DMP file.
    I encountered the following error in the log file that was getting generated :
    IMP-00008: unrecognized statement in the export file:
    All the tables got copied except for one. Now what I have thought of is to import that one table again after taking an export from the prod schema.
    But what about the functions,triggers,procedures ?? How do i bring all of them in the schema ?
    If reimporting the schema again the only option ?
    Thanks
    Kk

    Hello,
    In this order:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/exp_imp.htm#i1023988
    Table Objects: Order of Import
    Table objects are imported as they are read from the export file. The export file contains objects in the following order:
    1. Type definitions
    2. Table definitions
    3.Table data
    4.Table indexes
    5. Integrity constraints, views, procedures, and triggers
    6. Bitmap, function-based, and domain indexes
    The order of import is as follows: new tables are created, data is imported and indexes are built, triggers are imported, integrity constraints are enabled on the new tables, and any bitmap, function-based, and/or domain indexes are built. This sequence prevents data from being rejected due to the order in which tables are imported. This sequence also prevents redundant triggers from firing twice on the same data (once when it is originally inserted and again during the import).
    For example, if the emp table has a referential integrity constraint on the dept table and the emp table is imported first, all emp rows that reference departments that have not yet been imported into dept would be rejected if the constraints were enabled.
    When data is imported into existing tables, however, the order of import can still produce referential integrity failures. In the situation just given, if the emp table already existed and referential integrity constraints were in force, many rows could be rejected.
    A similar situation occurs when a referential integrity constraint on a table references itself. For example, if scott's manager in the emp table is drake, and drake's row has not yet been loaded, scott's row will fail, even though it would be valid at the end of the import.

  • How do you import data base dmp file in oracle 10g

    How do you run data base dmp file in oracle 10g

    Examples..
    Table Exports/Imports
    The TABLES parameter is used to specify the tables that are to be exported. The following is an example of the table export and import syntax:
    expdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=expdpEMP_DEPT.log
    impdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=impdpEMP_DEPT.log
    For example output files see expdpEMP_DEPT.log and impdpEMP_DEPT.log.
    The TABLE_EXISTS_ACTION=APPEND parameter allows data to be imported into existing tables.
    Schema Exports/Imports
    The OWNER parameter of exp has been replaced by the SCHEMAS parameter which is used to specify the schemas to be exported. The following is an example of the schema export and import syntax:
    expdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=expdpSCOTT.log
    impdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=impdpSCOTT.log
    For example output files see expdpSCOTT.log and impdpSCOTT.log.
    Database Exports/Imports
    The FULL parameter indicates that a complete database export is required. The following is an example of the full database export and import syntax:
    expdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=expdpDB10G.log
    impdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=impdpDB10G.log

  • Error when IMPORT using INDEXFILE  IMP-00009: abnormal end of export file

    Hi,
    I met the following error while I am doing IMPORT (creating ddl using INDEXFILE option) as.
    imp system/oracle@hpfw9i file='F:\C2Prop\ProdDump20051109.dmp' fromuser=FWORKSADM touser=FWORKSADM indexfile=ddlfile.sql log=st-imp.log
    . . skipping table "FWDEFECTCOMPONENT_PN21"
    . . skipping table "FWDEFECTCOMPONENT_PN22"
    . . skipping table "FWDEFECTCOMPONENT_PN23"
    . . skipping table "FWDEFECTCOMPONENT_PN24"
    . . skipping table "FWDEFECTCOMPONENT_PN25"
    . . skipping table "FWDEFECTCOMPONENT_PN26"
    . . skipping table "FWEQPATTRIBUTE"
    . . skipping table "FWEQPATTRIBUTEHISTORY"
    IMP-00009: abnormal end of export file
    Import terminated successfully with warnings.
    Have you ever experienced the following error message when you imported the db..?
    Also I could see the import was not done successfully when I compared my ddlfileold.sql which is already done using this same dump file
    My actions to make ddlfile
    - I have tried three times to make ddlfile but I failed all and met the same error message.
    try 1 : using 9210 version
    try 2 : using 9206 version
    try 3 : using 9206 version at other machine.
    I need your advice and help.
    Thanks,
    Riaz.

    This means the export dump file is corrupted.
    In UNIX see this command to see whether the dump file is complete
    $ tail expdat.dmp
    It should have EXIT in the last line.

  • Import export file from hands-on training session

    I have download the required files from the Forms hands-on training session and want to install the database. After a succesfull ftp upload of the export file (binary method) to a HP-UX system, I import the file as indicated in section 7 of the installation instructions.
    I then receive several kind of the following messages:
    Import: Release 8.0.5.0.0 - Production on Mon Aug 14 19:38:29 2000
    (c) Copyright 1998 Oracle Corporation. All rights reserved.
    Connected to: Oracle8 Enterprise Edition Release 8.0.5.0.0 - Production
    PL/SQL Release 8.0.5.0.0 - Production
    Export file created by EXPORT:V08.01.05 via conventional path
    IMP-00008: unrecognized statement in the export file:
    AD 6U
    IMP-00008: unrecognized statement in the export file:
    %G6BYI2m"<9lza`k)@Q'UQIf5{$>8@?`c=@
    IMP-00008: unrecognized statement in the export file:
    9
    IMP-00008: unrecognized statement in the export file:
    Kz`
    IMP-00008: unrecognized statement in the export file:
    Is it because of the import against a 8.0.5 database or is perhaps the export file corrupt?
    I hope you can help me.
    Best regards,
    Erika van der Aar
    E-mail: [email protected]

    Hi,
    Please go through the below blog:
    How to Export/Import and activate .sca files in SAP Composition Environment - CE local development
    Hope this helps!!!
    BR,
    Anurag

  • IMP-00008: unrecognized statement in the export file, oracle 11gr2 on redhat 5

    I am using Oracle 11g R2 on Radhat 5 linux to import(imp) a dmp file with a table with blob data type. I got the following errors with binary non-ascii on the screen and failed imp at that table:
    IMP-00008: unrecognized statement in the export file: (a lot of non-ascii characters followed)
    How do that happen and how do we handle it?
    -Henry

    Hello,
    IMP-00008 may due to several reasons.
    The Dump may be corrupted, you may also hit a Bug and so on, ...
    Is it the only error you got or do you have other error message (for instance IMP-00032) ?
    Else, I don't know why you use EXP/IMP in 11.2, the Original Export/Import is not recommended. You should use DATAPUMP which is much more powerful.
    Please, find enclosed a link about DATAPUMP:
    http://www.oracle-base.com/articles/10g/oracle-data-pump-10g.php
    Hope this help.
    Best Regards,
    Jean-Valentin Lubiez

  • How import 10g,11g dump file in oracle 9 and oracle 8

    Dear all
    I import dump file exported from oracle 9 to oracle 10g and 11g now i want exported dump file from oracle 10g/11g to import in oracle 9 (lower version).
    How said job will be done.
    Thanks

    I've already tried your method, but it fails when you import the dmp exported from lower version.
    To import Oracle 11g user to Oracle 10g, the following method works fine:
    It is assumed that both 11g and 10g servers are on same LAN.
    Make sure that 11g sqlplus connects to your 10g server.
    Step 1. Export the 11g user from 11g machine.
    Step 2.Import the dmp file created in step 1 into 10g server from 11g machine itself.
    The 11g exp/import utility should be used for both export and import operations.
    Only source and destination servers will be different.
    Pramod Dubey

  • Import utility IMP-00009: abnormal end of export file.

    IMP-00009: abnormal end of export file.
    I have received a 34 GB dmp file exported using exp utility 9.2. and i am importing it into 10.2.0.1.0
    1) Not sure wheher its exported from Unix or windows.. how to make out?
    2)I imported using ...BIN>imp user1/pwd FILE=C:\exp.dmp
    SHOW=y fromuser=user2 touser=user1 ROWS=Y IGNORE=y GRANTS=y Constraints=
    y log=C:\exp.log
    Note my login user and my to user are same and i have grant DBA to user1.
    3)When i import, after an hour+ it terminates saying abruprt end of export file.
    4)I am not aware of the command used for export whether its FULL DB or only user etc.... how to find out? from show = y i selected 1 username and used it as from user.
    5)This file was sent to me through a FTP server from where i downloaded.
    Plz help i need to import urgently, what should i be doing?

    I also read that FULL=Y is not supported when i import 9i dmp into 10g dmp. Is it true?False
    It is an export of the Backup it seems. What difference does it make if we export from DB Backup and export from DB itself?There is nothing called export of a backup.The dump is created by an oracle binary called EXPORT.
    You can execute this command against an oracle database
    exp username/pwd@hoststring file=c:\oracle\bk\test.dmp fully=y....and so on

  • Import from export files problem

    Hi,
    I am a new user. I installed oracle 10g. I took an export one schema and I want to import back. But when I put "import to export files" , it says "the page cannot be displayed." and I installed another machine, it says same thing. What am I do wrong?

    Did you try to run export/import from commands? or some kinda GUI tool?
    If you use import/export, you can find them from Oracle syntax.
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14215/toc.htm

  • I am trying to import BPM Project.zip file into Oracle enterpriserepository

    I am trying to import BPM Project.zip file into Oracle enterpriserepository from admin tab.
    I am getting the following exception. please help if any one know the solution.
    Performing import...
    Import Failed: Error [100]: An unknown server-side error occurred. Please record stack trace (if available) and contact technical support.
    com.flashline.exception.LoggableException: trouble parsing file in import bundle: SampleWScall/activityGuide.agdl
         at com.flashline.cmee.openapi.service.subsystem.impexp.XMLTranslator.decode(XMLTranslator.java:157)
         at com.flashline.cmee.openapi.service.subsystem.impexp.ImportJob.doJob(ImportJob.java:74)
         at com.flashline.cmee.openapi.service.subsystem.impexp.AbstractJob.perform(AbstractJob.java:75)
         at com.flashline.cmee.openapi.service.subsystem.impexp.JobThread.run(JobThread.java:41)
    Audit results stored in:
    C:\Users\AVINAS~1.YEL\AppData\Local\Temp\import-4705112223687937017.log
    Audit for [Import job.] created on [2012-09-24 11:53:59 IST].
    2012-09-24 11:53:59 IST - Adding Import job with ID=[50403] to job queue.
    Thanks in Advance.

    Hi
    Why are you trying to import BPM zip file are you trying to configure the out of the box workflows?
    They are something that need to be deployed from the process admin on BPM.
    There would be the .exp file you would need as its BPM 10g that you would need to use.

Maybe you are looking for

  • A few keys are not working

    A few keys were a sticky so when I would press it would give a sticky effect. So I got a tissue and wet it and then applied it onto those keys. Then those keys weren't sticky anymore. But soon a few of those keys stopped working. These keys are "brig

  • Clarification needed on where to start using the Wizard

    I need some clarification about at what point start using the Maintenance Wizard in the R12 upgrade process. Having done this manually before I need direction on what steps need to be done before letting the Wizard take over the process. I realize th

  • Exception: java.security.AccessControlException

    hi, im writing a swing applet that uses a gif in a toolbar. it works fine in the appletviewer but when i try and run it in IE i get the following message: Exception: java.security.AccessControlException: access denied(java.io.FilePermission new.gif r

  • After Effects - UK Version vs German Version

    I got a AE project from US. The problem is that after the conversion, the project doesn't run, because some effects weren't known correctls. Is it possible to run the German und UK version simultaneously on my PC?

  • No Move Command in Photoshop?

    Hello, I am trying to move a selection a certain distance (over and over again), but it seems you can't just access a move dialogue in PS (like in Illus. or InDesign) or add to a number in the Transform palette. Pls someone tell me I am wrong... Or t