Import from full export

Dears
i have dmp file exported by command: exp system/pass@dbname file=exp_full_ORCL.dmp full=y log=exp_full_ORCL.log.
its exported from Oracle 10.2.0.3 running on Redhat Enterprise Linux ver 5 with multiple Schemas and users
then i did install Oracle Linux Ver 5 OS and install Oracle 10.2.0.1
then i want to import full database on it im using dbca to create instance then im using below command:
imp system/pass@dbname file=exp_full_ORCL.dmp full=y log=exp_full_ORCL.log
but always i found errors for tablespaces users , undo, temp, SYSAUX already exists i did try ignore=y and remove existing tablespace and alter users table to read only but problem never solved please help me

913935 wrote:
Dears Thank you very much for your support:
below is log file
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
Export file created by EXPORT:V10.02.01 via conventional path
import done in US7ASCII character set and AL16UTF16 NCHAR character set
import server uses AR8ISO8859P6 character set (possible charset conversion)
export client uses AR8ISO8859P6 character set (possible charset conversion)Pay heed to the above messages - what is NLS_LANG set to when performing the import ?
. importing SYSTEM's objects into SYSTEM
IMP-00015: following statement failed because the object already exists:
"CREATE UNDO TABLESPACE "UNDOTBS1" BLOCKSIZE 8192 DATAFILE '/oracle/product"
"/10.2.0/db_1/oradata/ICCSOL/undotbs01.dbf' SIZE 32767M EXTENT MANAGEM"
"ENT LOCAL "
IMP-00015: following statement failed because the object already exists:
"CREATE TABLESPACE "SYSAUX" BLOCKSIZE 8192 DATAFILE '/oracle/product/10.2.0"
"/db_1/oradata/ICCSOL/sysaux01.dbf' SIZE 419430400 AUTOEXTEND ON NEXT "
"10485760 MAXSIZE 32767M EXTENT MANAGEMENT LOCAL AUTOALLOCATE ONLINE PERM"
"ANENT SEGMENT SPACE MANAGEMENT AUTO"
IMP-00015: following statement failed because the object already exists:
"CREATE TEMPORARY TABLESPACE "TEMP" BLOCKSIZE 8192 TEMPFILE '/oracle/produc"
"t/10.2.0/db_1/oradata/ICCSOL/temp01.dbf' SIZE 1350M AUTOEXTEND ON NEX"
"T 655360 MAXSIZE 32767M EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1048576"
IMP-00015: following statement failed because the object already exists:
"CREATE TABLESPACE "USERS" BLOCKSIZE 8192 DATAFILE '/oracle/product/10.2.0/"
"db_1/oradata/ICCSOL/users01.dbf' SIZE 5242880 AUTOEXTEND ON NEXT 1310"
"720 MAXSIZE 32767M EXTENT MANAGEMENT LOCAL AUTOALLOCATE ONLINE PERMANENT"
" SEGMENT SPACE MANAGEMENT AUTO"You can ignore the above errors since the import is trying to create tablespaces that already exist.
IMP-00017: following statement failed with ORACLE error 1119:
"CREATE TABLESPACE "CWMLITE" BLOCKSIZE 8192 DATAFILE '/oracle/product/10.2."
"0/db_1/oradata/ICCSOL/cwmlite.dbf' SIZE 104857600 AUTOEXTEND ON NEXT "
"20971520 MAXSIZE 32767M EXTENT MANAGEMENT LOCAL AUTOALLOCATE ONLINE PERM"
"ANENT SEGMENT SPACE MANAGEMENT AUTO"
IMP-00003: ORACLE error 1119 encountered
ORA-01119: error in creating database file '/oracle/product/10.2.0/db_1/oradata/ICCSOL/cwmlite.dbf'
ORA-27040: file create error, unable to create file
Linux-x86_64 Error: 2: No such file or directory
IMP-00017: following statement failed with ORACLE error 1119:
"CREATE TABLESPACE "DRSYS" BLOCKSIZE 8192 DATAFILE '/oracle/product/10.2.0/"
"db_1/oradata/ICCSOL/drsys.dbf' SIZE 104857600 AUTOEXTEND ON NEXT 2097"
"1520 MAXSIZE 32767M EXTENT MANAGEMENT LOCAL AUTOALLOCATE ONLINE PERMANEN"
"T SEGMENT SPACE MANAGEMENT AUTO"
IMP-00003: ORACLE error 1119 encountered
ORA-01119: error in creating database file '/oracle/product/10.2.0/db_1/oradata/ICCSOL/drsys.dbf'
ORA-27040: file create error, unable to create file
Linux-x86_64 Error: 2: No such file or directoryimp is trying to create these tablespaces (CWMLITE and DRSYS) because they do not exist - but is unable to create them, most likely because the directory paths on the target are different than the source. Pre-create theses tablespaces manually as needed before performing the import.
HTH
Srini

Similar Messages

  • Import of Table data only from Full export Dump

    I want to import data inot specified tables of a databse only. Is it possible to do this from a dump file which is the full export of the another database. The database i want to import into is the mirror of the database whose export dump i want to use. Let me know if this is possible and if yes then how i could do this.
    Thanking in advance.

    Please check the following link for full instructions:
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96652/part1.htm#435787
    If on another release, the same documentation is available for it on OTN as well.
    Thanks!

  • Imp table from full export

    TABLE NAME = CM_BEN
    DB version = Oracle 9i ( 9.2.0.8 )
    C:\oracle9i\ora92\bin\imp system/****@connstrng file=Jun17.dmp log=Jun17_imp.log fromuser=sa touser=sa tables=cm_beneficiaries_bk
    note:- 'cm_beneficiaries_bk' IS NEW TABLE STRUCTURE CREATED SAME AS 'CM_BEN'
    How do i imp table (cm_ben) from full exp Jun17.dmp?
    When i use the above command, following are the details.
    ========================================================================
    Import: Release 9.2.0.8.0 - Production on Sun Jun 19 12:32:32 2011
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP and Oracle Data Mining op
    tions
    JServer Release 9.2.0.8.0 - Production
    Export file created by EXPORT:V09.02.00 via conventional path
    import done in AR8ISO8859P6 character set and AL16UTF16 NCHAR character set
    . importing SA's objects into SA
    C:\>
    C:\>
    ======================================================================================
    Also, wen i open log file, it is blank. Kindly help me to solve the issue.
    Thank you,

    I need to imp table CM_BEN from yesterdays EXP, for that i had created temp table structure same as CM_BEN i.e; cm_beneficiaries_bk and used the command
    C:\oracle9i\ora92\bin\imp system/****@connstrng file=Jun17.dmp log=Jun17_imp.log fromuser=sa touser=sa tables=cm_beneficiaries_bk
    Also
    C:\oracle9i\ora92\bin\imp system/****@connstrng file=Jun17.dmp log=Jun17_imp.log fromuser=sa touser=sa tables=cm_beneficiaries_bk ignore=yif this dump is DATA PUMP, then you can use REMAP_TABLE.
    Instead of that import the table CM_BENEFICIARIES_BK, then create a new table "CM_BEN" form "CM_BENEFICIARIES_BK" as
    create table CM_BEN as select from CM_BENEFICIARIES_BK;*

  • Importing only tables from full export

    hi,
    our database is going to get live..
    Oracle 10GR2
    Windows 2003.
    i have full expdp dump file...
    i just want to import only tables from that dumpfile..
    how can i do that..
    there are around 1059 tables...
    searched over the net but did not find anythiing..
    your help is needed....
    thank you ..
    wating for your

    thnks for the replay..
    the schema is different in which the tables needs to be imported.
    but this schema in which tables needs to b imported contains the same number of tables with same strutures.
    thanks.

  • Importing a user table from full export

    if i prefer full exoprt with the command given below
    exp "'/ as sysdba'" file=aaa.dmp full=y compress=y log=aaa.log
    how can i import a table T under a given user schema U?

    use parameters
    - fromuser=U, touser=<yourschema> to indicate the schema
    - tables=T

  • Images imported from QT exported image sequence have jagged edges

    Hi
    I've come across something strange which I'd like to resolve.
    I export an image sequence from QuickTime.
    I then import this into Aperture.
    But the images imported into Aperture now have jagged edges where there has been any movement in the original footage.
    The images originally exported from QuickTime look absolutely fine when viewed with preview, they have the expected blurring on moving objects, but no jaggedness.
    Now, a bit more detail.
    The footage I'm exporting from was shot by me and came from a Final Cut Pro edit.
    The codec in the QT movie is Apple Intermediate Codec and this is interlaced.
    The jagged edges on movement look to me like the problem of interlaced not being converted to progressive.
    However the exported images from QuickTime don't display this when viewed in Preview, it is only when viewed in Aperture that the jagged edges become apparent.
    I have tried exporting from QuickTime to jpg, png and psd, but the problem is identical no matter which format I use.
    I really want to now use Aperture to improve these exported images, but with this jagged edge problem I can't.

    Hi JNorris--
    Sounds like you need to apply the deinterlace filter (Effects tab: video filters: video: deinterlace) to the stills your exporting.
    See if that makes a difference to start.
    T.

  • Importing from Windows - Exporting to Unix

    Hello Guys,
    I have this situation where the initial developement was done on a Windows box, but then the staging and production environments have been set up on unix servers.
    Q1: Is it possible to migrate the mappings created on Dev (windows) effectively to unix without needing re-work?
    Q2: What is the approach to go about this migration, if any?
    Q3: Do the OWB versions matter while import/export?
    Has anyone been through this problem before?
    Any help will be appreciated... Just give me your piece of mind on this...!!

    Hi ,
    You can do the following to export OWB metadata into mdl file .
    1. Login to OWB Client
    2. Goto Design
    3. Export
    4. Warehouse Builder Metadata
    You can specify the file location details .
    In order to Import OWB metadata from mdl file
    1. Login to OWB Client
    2. Goto Design
    3. Import
    4. Warehouse Builder Metadata
    It will ask for the mdl file location details
    Thanks,
    Sutirtha

  • SLTOOLS.SAR error when importing from JAVA export

    I have done a standard system copy JAVA Export from a NW 7.01 EHP1 going to a new target system that is identical to the source.  I then moved the export files to the target and am running the import. 
    I am now getting an error stating: "error opening X:\EPD_EXPORT\JAVA/TOOLS/SLTOOLS.SAR (error 6). The system cannot find the path specified". 
    This TOOLS folder and SLTOOLS.SAR file does not exist because it was not created when I did the export from the source system.  Any idea why this was not created during the export?  Also, how can I obtain SLTOOLS.SAR?  Thanks in advance.

    Hi,
    Did you check "DB specic tools" during the export ? if not, try that option and export it.
    SLtools should be under $SAPGlobalDir/sltools - (Please check whether your SOURCE system has it)
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/743fd6e5-0d01-0010-a2b5-e85339108ee9?QuickLink=events&overridelayout=true
    Regards,
    Arjun

  • Import from tablespace export

    Dear Experts,
    Oracle 10g, Windows 2003.
    I have exported users tablespace by using following command : exp system/password file='D:\userstablespace.dmp' tablespace=users.
    Now I want to export all objects in users tablespace to a user or object of a particular user to some other user ? is it possible ?
    Thanks&Regards
    Sunil Kumar

    Hi,
    Now I want to export all objects in users tablespace to a user or object of a particular user to some other user ? is it possible ?Not very clear with the question, but if you want user A's object in user B , export using owner=A and import using fromuser=A touser=B
    exp file= log= owner=A feedback=10000 buffer=3000000
    imp file= log= fromuser=A touser=B feedback=10000 buffer=3000000 commit=n
    Anand

  • Importing from wordpress export..

    I have a wordpress site that I exported.   I went to import it and the File/Import XML is not active.  Is this something I can even do?  The export is an xml document.
    Thanks!

    You might get better response if you posted this question on the Wordpress forums...
    Having said that:
    1) did you use the built-in Wordpress export under Tools in the WP backend?
    2) to import the xml file, you must first install the wordpress importer plugin. Did you install it?
    3) after installing the plugin, you must run the importer (WP should do this right after you installed the WP importer plugin), choose the file, and click on the button "Upload file and import".
    So, is this the answer you were looking for?

  • Import a single view from a full export

    Good Morning
    How can I extract a single view from a export file?
    I can restore a single table no problem
    or the whole export file, but i just need one
    view out of it
    Thanks
    David

    Hi David & Reza,
    There is a way where you can extract a single view from the export file.
    01. Do the import process with show=y, that will show all the DDL syntaxes including views.
    02 Spool or redirect the output to a file.
    03.Get the view syntax and recreate it.
    Cheers,
    Kamalesh JK

  • Full Import from 8.1.5 to 9.2 errors

    Hi Guys
    We are running with WinNT SP6, I created a 9.2 database, carried out a full import from a 8.1.5 database, no problems.
    When I try to do a full import again into the 9.2 database, I get
    IMP-00019: row rejected due to ORACLE error 1
    IMP-00003: Oracle error 1 encountered
    ORA-00001: unique constraint (gs.table_name) violated
    I'm using FULL=Y IGNORE=Y DESTROY=N (as I did with the original successful full import into the same 9.2 database)
    I just want to be able to update the entire database with a more recent version of the data on the 8.1.5 database.
    What do I need to set to avoid these errors and import the new dmp file successfully?
    Can I just re-run the full import again on top of the 9.2 database after the unsuccessful full import?
    Many thanks in advance for any speedy responses!
    Cheers
    Ciaran

    The unique constraint violation happens because you have data in your 9.2 database. You are attempting to insert the same records again from your new export.
    To refresh the data in your 9.2 instance with more recent data from the 8.1 instance, you will need to truncate (or drop) all of the tables in the 9.2 instance before doing your import. I would also suggest that if you truncate the tables, you also drop all indexes, constraints and triggers. These can be re-built by the import, or manually from scripts after the import.
    TTFN
    John

  • Full Export/Import Errors with Queue tables and ApEx

    I'm trying to take a full export of an existing database in order to build an identical copy in another database instance, but the import is failing each time and causing problems with queue tables and Apex tables.
    I have used both the export utility and Data Pump (both with partial and full exports) and the same problems are occurring.
    After import, queue tables in my schema are unstable. They cannot be dropped using the queue admin packages as they throw ORA-24002: QUEUE_TABLE <table> does not exist exceptions. Trying to drop the tables causes the ORA-24005: must use DBMS_AQADM.DROP_QUEUE_TABLE to drop queue tables error
    As a result, the schema cannot be dropped at all unless manual data dictionary clean up steps (as per metalink) are done.
    The Apex import fails when creating foreign keys to WWV_FLOW_FILE_OBJECTS$PART. It creates the table ok, but for some reason the characters after the $ are missing so the referencing tables try to refer to WWV_FLOW_FILE_OBJECTS$ only.
    I am exporting from Enterprise Edition 10.2.0.1 and importing into Standard edition 10.2.0.1, but we are not using any of the features not available in standard, and I doubt this would cause the issues I'm getting.
    Can anyone offer any advice on how I can resolve these problems so a full import will work reliably?

    Thanks for the lead!
    After digging around MetaLink some more, it sounds like I'm running into Bug 5875568 (MetaLink Note:5875568.8) which is in fact related to the multibyte character set. The bug is fixed in the server patch set 10.2.0.4 or release 11.1.0.6.

  • Missing grant with full export/full import.

    We have the following problem which is unexplained:
    Using Oracle 9.0.1.4 we full export a database and we import it in full mode in another database which is also running Oracle 9.0.1.4. The database has 1 application schema which owns a lot of PL/SQL object packages and triggers.
    In the source database, all objects are valid and schema owner has SELECT privileges on V$SESSION and execute permission on DBMS_ALERT and DBMS_PIPE.
    I cannot tell you if these privileges have been granted directly or with a role.
    In the target database, package bodys and triggers using V$SESSION and DBMS_ALERT/DBMS_PIPE are invalid because schema owner has not the corresponding privileges.
    Schema owner already existed in the target database. Is it normal than the corresponding privileges have not been imported ?
    I cannot give you the exp/imp command lines but I'm sure full export/full import have been run (I've checked the import log).
    Thanks.
    Message was edited by:
    Pierre Forstmann

    See MetaLink Note:97902.1
    When performing a full export of a database, both objects belonging to SYS and object privileges on SYS's objects (e.g. admin views such as DBA_SEGMENTS, etc.) are not exported.
    To generate the missing privileges you can use the follwing script
    Connect to the original database (the one full export was done from) as SYSTEM using sqlplus and run this script:
    set hea off
    set pagesize 0
    set feedback off
    spool objs_upg.sql
    select 'grant '||privilege||' on '||owner||'.'||
    table_name||' to '||grantee||' '||
    decode(grantable,'YES','WITH Grant option')||';'
    from dba_tab_privs
    where owner = 'SYS'
    select 'grant '||privilege||' ('||column_name||') '||
    ' on '||owner||'.'||table_name||' to '||grantee||' '||
    decode(grantable,'YES','WITH Grant option')||';'
    from dba_col_privs
    where owner = 'SYS'
    spool off

  • Export / Import with FULL=Y

    Hello DBA's,
    after consulting several thread on exp/imp with the option full=y the doubt that I have left is when using imp with full=y ignore=y in a new data base, the data base obtained will be equal to the data base from which export with full=y became. Thanks for its answers.

    export full=y
    will export all the user ,roles,tablespace creation scripts,tables all the datadictionary views
    for example if u connect the databse with single user try to get the privileges from the existing Db and then
    create the database in the new server
    create users and grant privileges before import;
    then import with fromuser= ,touser
    if you issues FULL=y
    it will start creating all the system ,index and all the other tablespaces provided it should have the same directories as it is in current DB
    to avoid create the dataabse ,tablespace users then import with fromuser,touser option
    thanks

Maybe you are looking for

  • I want add a Coustomer Field in PO at item level

    Dear Gurus ,                      I am having a requirement at the clients place  . In purchase order creation we need one customer field for select customer & reflect it in GR. They want it at the item level . So Can somebody help me how to do that

  • Yosemite won't install

    I downloaded the installer - run it - does what it should do to the point the iMac reboots. After reboot it just returns to logon screen - nothing installed - no messages. Disconnected all external disks /cables etc. No difference. I am currently run

  • Unable to burn CD but succeeding with DVD

    My Lappy Model : HP Pavilion 3050tx It's having a hp cd-dvd writable drive, Firmware : TS-L633N I'M UNABLE TO WRITE CD  CD burning task completes successfully but when i reinsert that cd it again shows a blank disk. I use Nero & Power2go With DVD ev

  • Itunes and ipad not working

    After installing Itunes 10.5, it shuts down when I plug in my ipad. My iphone is working fine, but not my ipad. I need to update the IOS on my ipad and must do this through itunes. Can somebody help me with this?

  • Imovie not playing sound after recording

    I recorded a video using imovie and when I play it back there is no sound. I have adjusted all the volumes etc and nothing seems to be working.