Import from .dmp.Z file

Hi Gurus...
I have one dmp file but its in compressed format that is xyz.dmp.Z
Now I have to run the import from this file. I wanted to know can I run the import directly from .dmp.Z file or do I need to de-compress it first ? As its a big file (size of around 20 GB), so it will take loads of space when de-compressed.
Thanks...
Sidhu

This is the script that I have written
export ORACLE_SID=CONRCC
export ORACLE_HOME=/home/oracle/product/10.1.0/db_1
mknod /tmp/imp_pipe p
uncompress /home/USB/backups/exp_MDRRCC_20070511_125155.dmp.Z >/tmp/imp_pipe &
imp file=/tmp/imp_pipe show=y full=y log=/home/oracle/MDRRCC/MDRRCC_import.logit seems that first its de-compressing the file as it has made a file with the same name (of size 37 GB as of now & in ps -ef its showing uncompress as running). so is it going to uncompress the file first ? if yes then whats the advantage of using pipe ? its as good as de-compressing the file first and then running the import.
any points
Sidhu

Similar Messages

  • Importing from .dmp.gz file

    Hi,
    I have a mydb_071202.dmp.gz sitting on the mount along with some .log files. Need to import that into my db instance.
    I've never done this before, what are the steps I need to take? Do I need the .log files? Do I run command(s) in the shell or SQL*Plus (or both)?
    Thank you,
    Message was edited by:
    vi2167
    Message was edited by:
    vi2167

    Hi
    you have never mentioned any info about the export file/version/os
    What was the command used to export the DB
    is it exported with full=y option
    It is Export file created and compressed with the gunzip or compressed on the fly
    1.Frist you have to uncompress it gunzip <filename.dmp.gz>
    This will extract int filname.dmp
    Now you have create a database and need to precreate the tablespace if you or else you have to have a similiar file struture so that the required tablespaces will be created automaticalyy by importing the file
    Once the DB has been created you can use the import utility to run against the DB

  • Problem in importing from dmp file

    Hi ,
    I am facing problem while importing from dmp file on unix server
    Error is as follows :
    Export file created by EXPORT:V08.01.07 via conventional path
    IMP-00013: only a DBA can import a file exported by another DBA
    IMP-00000: Import terminated unsuccessfully
    Export taken was with user xxx@yyy
    import command is : imp xxx/ppp file=abc.dmp TABLES=xxx.table1 ignore=y feedback=500
    please help me out.
    Atul Chougule

    I tried with FROM USER / TO USER , but the result is same.
    $ imp uuu/ppp file=aaa.dmp fromuser=uuu touser=uuu ignore=Y
    Import: Release 8.1.7.3.0 - Production on Thu Jun 15 06:44:49 2006
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Connected to: Oracle8i Enterprise Edition Release 8.1.7.3.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.3.0 - Production
    Export file created by EXPORT:V08.01.07 via conventional path
    IMP-00013: only a DBA can import a file exported by another DBA
    IMP-00000: Import terminated unsuccessfully
    I am stucked up ,Dont know what to do .

  • How to find out what was imported from a dump file

    Hi.
    I got the dump file from a group and they told me to import it. Import job went successfully without errors as following:
    Import: Release 9.2.0.6.0 - Production on Mon Oct 16 20:53:12 2006
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.6.0 - Production
    Export file created by EXPORT:V09.02.00 via conventional path
    Warning: the objects were exported by OPS$ORACLETS, not by you
    import done in US7ASCII character set and UTF8 NCHAR character set
    import server uses WE8ISO8859P1 character set (possible charset conversion)
    export server uses AL16UTF16 NCHAR character set (possible ncharset conversion)
    . importing OPS$ORACLETS's objects into SYS
    . importing BDS_APP's objects into BDS_APP
    Import terminated successfully without warnings.
    How do i find out what was imported from a dump file?

    another way would be to just list the contents of the dump file
    imp user/pass file=dumpfile show=Y

  • PL/SQL Package importing from Flat Data files

    Looking for sample PL/SQL package in importing data from flat data files into Oracle. Possible using the UTL_FILE.FOPEN and UTL_FILE.GET_LINE functions ?

    SQL Loader is tailor-made for importing data from flat-files.
    There's way less code to write and it is usually faster than coded approach so this may be better solution for you, depending on details of your situation.
    See docs: http://otn.oracle.com/docs/products/oracle8i/doc_library/817_doc/server.817/a76955/ch03.htm#2436

  • Trying to import from different csv files into multiple JTables

    This might seem like something that isn't commonly done, but I'll see if anyone has done this before anyways.
    I currently have a JTable (tab #1) and it successfully reads in the data from a CSV file to populate the cells. Now, I am looking into making 3 more JTables. I can tab between the four different tables, but I can't seem to figure out how to get the data to go to the correct JTable. Tab #1 = table, Tab #2 = table2, Tab #3 = table3, Tab #4 = table4.
    Thanks.
            try
                FileInputStream fileInput = new FileInputStream ("upcoming.csv");
                BufferedReader InputCSV = new BufferedReader (new InputStreamReader (fileInput));
                line = InputCSV.readLine(); //start reading into the records.
                    //Create data for the table.
                    //the row variable = starting row
                int row = 0;
                while(line != null)
                    tmp = line.split(",");
                    for (int col = 0; col < columnNames.length; ++col)
                        data[row][col] = tmp[col]; //store cells' data to the 2-dimensional array.
                    row++;
                    line = InputCSV.readLine();
                }//end of WHILE-statement.
            } //END of TRY-statement.
            catch(Exception e)
                System.out.println(e);
            }

    I have been successful in my quest to get 4 different datasets into 4 different JTables. The previous posters suggestion to use the Table model led me to this page:
    http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/table/TableModel.html
            TableModel myData = new MyTableModel();
            JTable table = new JTable(myData);I had some very similar code in my program. I use the DefaultTableModel and the SortFilterModel before having 4 different JTables.
            DefaultTableModel model = new DefaultTableModel(data, columnNames);
            DefaultTableModel model2 = new DefaultTableModel(data2, columnNames);
            DefaultTableModel model3 = new DefaultTableModel(data3, columnNames);
            DefaultTableModel model4 = new DefaultTableModel(data4, columnNames);I use the code in the first post 4 times, and only change the filename and the data#.
    I also have some code that counts the number of lines that will be needed.
    Thanks.

  • Search whole table (imported from an excel file) for those matching substring (this is an input from user) in project siena

    Im trying to search my entire table (data is imported using an excel file - containing 2 cols, description and image url) for those that match the substring entered by the user into an inputText within project siena. I have 2 screens within the project,
    the first screen shows all the data in a gallery, the second screen will allow the user to search for those that match the word he/she has enter. The entered word is only a sub string, and I want to search all rows which match that sub string.. Help would
    be appreciated as im a newbie to making windows apps!!

    Lest say you have 'Gallery1' in screen1 and 'Gallery2' in screen2. your Excel input table is called 'table1' and your input text box is called 'inputText1'.
    If you have bound 'table1' to your 'Gallery1', then you can accomplish what you are trying to do by using this rule on Items property of Gallery2: "Filter(Gallery1!AllItems, InputText1!Text in Description)"
    The above formula will filter out rows that have description containing the input text.

  • Multiple imports from same dump file

    Hi,
    I have to import multiple related schemas - to avoid having to create multiple dump files can I just export them into one dump file (owner= a,b,c etc) and then run
    simultaneous imports
    like : export <dba_user> owner=a,b,c file=all.dmp
    --in newdb
    nohup import <dba_user> fromuser=a touser=a file=all.dmp &
    nohup import <dba_user> fromuser=b touser=b file=all.dmp &
    nohup import <dba_user> fromuser=c touser=d file=all.dmp &
    my doubt is - if the 3 import processes simultaneously read from teh file, can there be some issue?
    thanks

    Hi,
    Why not try
    import <dba_user> fromuser=a,b,c touser=a,b,d file=all.dmp &Regards
    Anurag

  • Illustrator breaks text at a point when importing from an EPS file?

    I am importing an EPS file from a statistical software. All text strings that belong together are in brackets ( ), so the EPS file is OK. When AI creates the chart it happens that the last glyph is a new and independent text string (text at a point).
    Is it possible to force AI to respect the structure of the EPS file.
    Thanks,
    Daniel

    No.
    You can only fix it afterwards.

  • Import from DVDxDV created file into imovie HD with scene breaks

    I purchased the DVDxDV program and it is working fine importing files from my Sony mini-dvd handycam. When I import the movie file created by DVDxDV into imovie 08, the program seems to automatically create scene breaks (which I want it to do!) However, I would really prefer to use imovie. When I import the DVDxDV created movie file into imovie HD, it comes in as one big video file. I need many, little clips out of this one big file. Is there a way to either import it through DVDxDV with the original scene breaks? Or can I configure imovie HD to behave like imovie 08 and break this big file up? Any help is really appreciated.

    My guess is you'll see the same artifacts using other applications. I do recommend, however, MPEG Streamclip and Miraizon's Cinematize. Those let you select the portions of a video you want to convert so you save a lot of time and hard drive space.
    Also, recent versions of Toast (I don't know if this is true for Toast 7) can export individual chapters from a video DVD or VIDEO_TS folder as separate files. This is done via the Toast Media Browser. Put the VIDEO_TS folder on the desktop or insert the DVD, choose DVD with the top button of the Media Browser. When the item appears in the browser window use the button beneath "DVD" to access the chapter level. Select the chapters you want and drag them to the Video window with DVD video selected as the format. After Toast extracts the split MPEG files you can select them and export them to other formats. It's possible, though, that Toast 7 doesn't have the ability to access the chapter levels.

  • Data Import from XML Format file

    I want to import data  from XML file format.Can i do it ? If yes then please give me more details in the step.

    Pl read the below link.
    It will be helpful.
    SAP Business One Application
    Jeyakanthan

  • Unexpected Quits while trying to import from a .xls file

    When I decided to purchase Iworks I was under the impression that numbers was capable of importing documents that had been created in excel. I have now tried to do so a number of different times with different files (all with the file extension .xls). Each time, I get an error message that says the following:
    The application Numbers quit unexpectedly. The problem may have been caused by the LSCompatibility plug-in.
    I am a rooking Mac user and any help you can provide would be appreciated.

    As far as I know, iWork (without a s) was never depicted as opening _"all Excel documents"_ but as _"opening Exel documents"_ which means that it open _many of them but not all_ .
    Is it surprising that it is unable to open documents created with an Excel version introduced after the Numbers creation ?
    To get it able to open them, you will have to wait for the next major version.
    Yvan KOENIG (from FRANCE lundi 20 octobre 2008 17:16:32)

  • Xml import from mutlitple xml files

    Is it possible to import different xml files for different locations within the same InDesign document?
    For example a single page has two text boxes. Text Box 1 needs to import data from File1.xml, Text Box 2 needs to import data from File2.xml, etc. Is this possible or will File1.xml and File2.xml need to be merged into one xml file?

    TurtleCruiser,
    One of the problems I have had is that I want the data to update through linking, but I've only managed to get one text box to update while the data in the other box disappeared. Since posting I have managed to achieve the desired result using InDesign Tagged Text. Ideally, I would like to use xml so I will see if I can achieve the same result with your method.
    Many thanks for your reply.

  • Video import from HandiCam = no file created

    I’m trying to import some footage that was recorded on a Sony 8mm Handicam ( model DCR-TRV330  NTSC)  into iMovie (version 10.0.6).  I’ve got the camera hooked up via firewire. I can select ‘import video’ from the iMovie window.  iMovie is able to control the transport of the camera and I can see playback in the iMovie window. 
    I click on “import”,   the video plays and it shows “recording….” in the top left of the import window.  It also says “No Data from Device” in the top right of the window.  When I’m done importing there is no data file created in the selected library.   In short, everything seems to be working as I’d expect, but there is no video file being saved!
    What to do?

    Use iMovie HD 06 or iMovie 11. (My favorite is iMovie HD 06.)  Both are readily available on Amazon as part of iLife 06 or iLife 11.  These versions happily work with FireWire.
    Also, Apple has removed the ability to set chapter markers with iMovie 10.   With iMovie HD 06 or iMovie 11 one click will set your chapter markers. These markers are automatically recognized by iDVD.
    http://www.amazon.com/Apple-iLife-Mac-DVD-VERSION/dp/B0007LW22G/ref=sr_1_1?ie=UT F8&qid=1424968719&sr=8-1&keywords=iLife+06

  • How to import from DVD (VOB files)

    I have PP CS4 version 4.2.1 and am using it on a Windows 7 - 64 bit machine.  I have tried several different ways to import the VOB files in order to edit.  I am able to view each of the VOB files in the Source Monitor, but I can't seem to put them together.  That is, the video I want to edit is found on four of the VOB files.
    I have also used AVS Video Converter 6 to rip the VOB files into one AVI file, but when I import the AVI file the video plays at what looks like about double speed and gets way out of sync with the audio.
    I am a Premiere Pro newbie, but have lots of experience with Dreamweaver and creating websites.  In fact, the final product will be a Flash video.
    Any help will be appreciated.

    What is the CODEC you used when converting?
    Use the free http://www.headbands.com/gspot/ to find out
    Some other reading...
    I have NOT used those products, I only forward due to other mentions
    Convert http://premierepro.wikia.com/wiki/FAQ:How_do_I_convert_my_files%3F
    Edit Vob http://premierepro.wikia.com/wiki/FAQ:How_do_I_import_VOB_files_/_edit_a_DVD%3F
    $99 http://www.corel.com/servlet/Satellite/us/en/Product/1175714228541#tabview=tab0
    $99 http://www.womble.com/products/mvw.html
    $80 http://www.nchsoftware.com/prism/index.html
    $75 http://www.videoredo.com/en/index.htm
    $75 http://www.magix.com/us/movie-edit-pro/
    $70 http://www.nchsoftware.com/prism/index.html Converter
    $40 http://www.daniusoft.com/dvd-ripper.html#135
    $40 http://www.deskshare.com/dmc.aspx Digital Media Converter
    $00 http://www.squared5.com/ MPEG Streamclip Converter
    $00 http://www.erightsoft.com/SUPER.html Multi-Converter
    $00 http://www.virtualdub.org/ Mpeg to AVI Converter

Maybe you are looking for

  • Problem in web application deployment in weblogic 8.1

    hiiiiiiiii freinds! i am a newcomer in the field of servlets and JSPs.Me and my freinds are developing a client/server chat application but i am facing a problem in transferring the control from one JSP to another JSP.I am using Oracle 10g and weblog

  • Preparing Balance sheet by using profit centers only for BS Items

    Dear Experts, could you please help me out regarding the following issue. business area wise we can get the balance sheet but i want to know is there any possibility to get the BS by using profit centers only for BS Items or can we assign biasness ar

  • Import itunes music back into itunes help help help help!!!

    I lost all of the music that i had purchased through itunes from my pc when it crashed. Now I have all those songs (3000+) on dvd, how do i import those songs off the disk into itunes? I've tried drag and drop and I get nothing i've tried impoting bu

  • Blurred pictures

    Hi, I'm quite new to illustrator and I am trying to make a company catalogue. On screen the pictures look ok and they are high res.  When I print A3 the pictures print perfectly but when I print in an A4 booklet they are really blurrey. Does anyone k

  • Can't add Buddy

    When I try to add a buddy, the name stays on my list for about five seconds, then it just disappears, like I removed it... anyone know what could be causing this? thanks