<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: importing a split export file in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/importing-a-split-export-file/m-p/2963745#M814864</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You could do this way as well.&lt;BR /&gt;EXPORT:-&lt;BR /&gt;I guess you had exported into split files using the UNIX split and compress commands Example:- &lt;BR /&gt;&lt;BR /&gt;mknod compress_pipe p &lt;BR /&gt;mknod split_pipe p &lt;BR /&gt;&lt;BR /&gt;chmod g+w compress_pipe &lt;BR /&gt;chmod g+w split_pipe &lt;BR /&gt;&lt;BR /&gt;Submitted the export using a parameter file&lt;BR /&gt;file=compress_pipe &lt;BR /&gt;tables=(table_name1, table_name2,???..) or owner= &lt;BR /&gt;buffer=1024000 &lt;BR /&gt;log=exp_ ddmmyyy.log &lt;BR /&gt;&lt;BR /&gt;Also run : &lt;BR /&gt;nohup split -b500m &amp;lt; split_pipe &amp;gt; glsp.dmp &amp;amp; &lt;BR /&gt;nohup compress &amp;lt; compress_pipe &amp;gt; split &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;IMPORT&lt;BR /&gt;Uncompressed the split file using the command : &lt;BR /&gt;nohup uncompress &amp;lt; split &amp;gt; compress_pipe &amp;amp;&lt;BR /&gt;Now create an import parameter file &lt;BR /&gt;file=compress_pipe &lt;BR /&gt;buffer=1024000 &lt;BR /&gt;log=imp_ddmmyyy.log &lt;BR /&gt;fromuser=&lt;SCHEMA_NAME&gt;  touser=&lt;SCHEMA_NAME&gt; &lt;BR /&gt;&lt;BR /&gt;Submitt the import  as: &lt;BR /&gt;nohup imp username/passwd parfile=import.par &amp;amp; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SCHEMA_NAME&gt;&lt;/SCHEMA_NAME&gt;</description>
    <pubDate>Fri, 02 May 2003 04:57:59 GMT</pubDate>
    <dc:creator>Indira Aramandla</dc:creator>
    <dc:date>2003-05-02T04:57:59Z</dc:date>
    <item>
      <title>importing a split export file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/importing-a-split-export-file/m-p/2963742#M814861</link>
      <description>I am trying to import a split exp. file that I have taken.  I needed to split it because it was greater than 2gig and i am on 8.0.4.  Can anyone help me on how to do this import.  Thanks</description>
      <pubDate>Thu, 01 May 2003 14:53:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/importing-a-split-export-file/m-p/2963742#M814861</guid>
      <dc:creator>Derek Baxter_1</dc:creator>
      <dc:date>2003-05-01T14:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: importing a split export file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/importing-a-split-export-file/m-p/2963743#M814862</link>
      <description>mknod cat_pipe p&lt;BR /&gt;&lt;BR /&gt;cat expdumpaa expdumpab expdumpac &amp;gt; cat_pipe &amp;amp;&lt;BR /&gt;&lt;BR /&gt;imp userid=user/pass file=cat_pipe full=y &lt;BR /&gt;-------------&lt;BR /&gt;This should import the file.  If you compressed the file with the export, you will need to do the following:&lt;BR /&gt;-------------&lt;BR /&gt;mknod cat_pipe p&lt;BR /&gt;mkdir imp_pipe p&lt;BR /&gt;&lt;BR /&gt;cat expdumpaa expdumpab expdumpac &amp;gt; cat_pipe &amp;amp;&lt;BR /&gt;gunzip &amp;lt; cat_pipe &amp;gt; imp_pipe &amp;amp;&lt;BR /&gt;&lt;BR /&gt;imp userid=user/pass file=imp_pipe full=y&lt;BR /&gt;-------------&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;&lt;BR /&gt;Brian &lt;BR /&gt;</description>
      <pubDate>Thu, 01 May 2003 21:09:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/importing-a-split-export-file/m-p/2963743#M814862</guid>
      <dc:creator>Brian Crabtree</dc:creator>
      <dc:date>2003-05-01T21:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: importing a split export file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/importing-a-split-export-file/m-p/2963744#M814863</link>
      <description>Hi,&lt;BR /&gt;  what can you do is to export it to the tape using below command :&lt;BR /&gt;&lt;BR /&gt;Exporting to tape via unix named pipes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   Note: 'dd' for tape devices may need 'bs=8k' or similar depending on tape   &lt;BR /&gt;% mknod /tmp/exp_pipe p        &lt;BR /&gt;# Make the pipe    &lt;BR /&gt;% dd if=/tmp/exp_pipe of=&lt;TAPE device=""&gt; &amp;amp;    &lt;BR /&gt;# Write from pipe to tape   &lt;BR /&gt;% exp file=/tmp/exp_pipe &lt;OTHER options=""&gt;    &lt;BR /&gt;# Export to the pipe &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and below are the command to import from the tape :&lt;BR /&gt;&lt;BR /&gt;Importing from tape via unix named pipes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   &lt;BR /&gt;% mknod /tmp/imp_pipe p        &lt;BR /&gt;# Make the pipe    &lt;BR /&gt;% dd of=/tmp/imp_pipe if=&lt;TAPE device=""&gt; &amp;amp;    &lt;BR /&gt;# Write from tape to pipe   &lt;BR /&gt;% imp file=/tmp/imp_pipe &lt;OTHER options=""&gt;    &lt;BR /&gt;# Import from the pipe     &lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;I plus this one from metalink.There are lot of arcticles in Metalink on 2G file.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;mB&lt;BR /&gt;&lt;/OTHER&gt;&lt;/TAPE&gt;&lt;/OTHER&gt;&lt;/TAPE&gt;</description>
      <pubDate>Thu, 01 May 2003 23:16:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/importing-a-split-export-file/m-p/2963744#M814863</guid>
      <dc:creator>malay boy</dc:creator>
      <dc:date>2003-05-01T23:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: importing a split export file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/importing-a-split-export-file/m-p/2963745#M814864</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You could do this way as well.&lt;BR /&gt;EXPORT:-&lt;BR /&gt;I guess you had exported into split files using the UNIX split and compress commands Example:- &lt;BR /&gt;&lt;BR /&gt;mknod compress_pipe p &lt;BR /&gt;mknod split_pipe p &lt;BR /&gt;&lt;BR /&gt;chmod g+w compress_pipe &lt;BR /&gt;chmod g+w split_pipe &lt;BR /&gt;&lt;BR /&gt;Submitted the export using a parameter file&lt;BR /&gt;file=compress_pipe &lt;BR /&gt;tables=(table_name1, table_name2,???..) or owner= &lt;BR /&gt;buffer=1024000 &lt;BR /&gt;log=exp_ ddmmyyy.log &lt;BR /&gt;&lt;BR /&gt;Also run : &lt;BR /&gt;nohup split -b500m &amp;lt; split_pipe &amp;gt; glsp.dmp &amp;amp; &lt;BR /&gt;nohup compress &amp;lt; compress_pipe &amp;gt; split &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;IMPORT&lt;BR /&gt;Uncompressed the split file using the command : &lt;BR /&gt;nohup uncompress &amp;lt; split &amp;gt; compress_pipe &amp;amp;&lt;BR /&gt;Now create an import parameter file &lt;BR /&gt;file=compress_pipe &lt;BR /&gt;buffer=1024000 &lt;BR /&gt;log=imp_ddmmyyy.log &lt;BR /&gt;fromuser=&lt;SCHEMA_NAME&gt;  touser=&lt;SCHEMA_NAME&gt; &lt;BR /&gt;&lt;BR /&gt;Submitt the import  as: &lt;BR /&gt;nohup imp username/passwd parfile=import.par &amp;amp; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SCHEMA_NAME&gt;&lt;/SCHEMA_NAME&gt;</description>
      <pubDate>Fri, 02 May 2003 04:57:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/importing-a-split-export-file/m-p/2963745#M814864</guid>
      <dc:creator>Indira Aramandla</dc:creator>
      <dc:date>2003-05-02T04:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: importing a split export file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/importing-a-split-export-file/m-p/2963746#M814865</link>
      <description>Thanks Brian, It worked perfectly. &lt;BR /&gt;Malay and Indira, thanks also, I may try your way later just to check it out.</description>
      <pubDate>Fri, 02 May 2003 20:24:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/importing-a-split-export-file/m-p/2963746#M814865</guid>
      <dc:creator>Derek Baxter_1</dc:creator>
      <dc:date>2003-05-02T20:24:14Z</dc:date>
    </item>
  </channel>
</rss>

