<?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: Using the split command for Oracle export files in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706415#M59386</link>
    <description>The "name" actually refers to the the filename before the appended extension. For example :-&lt;BR /&gt;&lt;BR /&gt;# split -l 500 myfile newfile&lt;BR /&gt;&lt;BR /&gt;will get files as such "newfileaa , newfileab, nefileac .. and so on".&lt;BR /&gt;&lt;BR /&gt;Take note , the limit of after processed files = 676 files</description>
    <pubDate>Thu, 18 Apr 2002 16:09:07 GMT</pubDate>
    <dc:creator>S.K. Chan</dc:creator>
    <dc:date>2002-04-18T16:09:07Z</dc:date>
    <item>
      <title>Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706411#M59382</link>
      <description>Because Oracle does not support export files greater than 2 GB, I am trying to split up my export in 2000M chunks using pipes and the split command.  But I would like to specify more meaningful output names instead of the default xaa, xab, xac from the split command.  Does anyone know how to do this?  I talked with HP Support and was told that it cannot be done because of limitations of the split command. But I see in the man pages for split that there is a name option there but I have been unable to get it to work.  Thanks</description>
      <pubDate>Thu, 18 Apr 2002 15:58:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706411#M59382</guid>
      <dc:creator>Morris Makuch</dc:creator>
      <dc:date>2002-04-18T15:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706412#M59383</link>
      <description>Morris,&lt;BR /&gt;&lt;BR /&gt;Did you try this:&lt;BR /&gt;&lt;BR /&gt;whatever | split -l 5000 -a 6 - expfile&lt;BR /&gt;&lt;BR /&gt;the -l (el) 5000 tells it to split on every 5000 lines&lt;BR /&gt;&lt;BR /&gt;The -a 6 tells it to use a 6 digit suffix appended to "expfile" name, ie: expfile.000001, expfile.000002, ...&lt;BR /&gt;&lt;BR /&gt;the dash "-" says sepect input from STDIN&lt;BR /&gt;&lt;BR /&gt;and the "expfile" is the output file name PREFIX, ie expfile.000001&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Thu, 18 Apr 2002 16:03:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706412#M59383</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-04-18T16:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706413#M59384</link>
      <description>Morris,&lt;BR /&gt;&lt;BR /&gt;Have you tried to export to a pipe and then dd it to a tape???&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Thu, 18 Apr 2002 16:05:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706413#M59384</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-04-18T16:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706414#M59385</link>
      <description>As Harry stated you could use a pipe.  As well as dd to a tape, you could also gzip the file through the pipe.&lt;BR /&gt;&lt;BR /&gt;...jcd...</description>
      <pubDate>Thu, 18 Apr 2002 16:08:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706414#M59385</guid>
      <dc:creator>Joseph C. Denman</dc:creator>
      <dc:date>2002-04-18T16:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706415#M59386</link>
      <description>The "name" actually refers to the the filename before the appended extension. For example :-&lt;BR /&gt;&lt;BR /&gt;# split -l 500 myfile newfile&lt;BR /&gt;&lt;BR /&gt;will get files as such "newfileaa , newfileab, nefileac .. and so on".&lt;BR /&gt;&lt;BR /&gt;Take note , the limit of after processed files = 676 files</description>
      <pubDate>Thu, 18 Apr 2002 16:09:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706415#M59386</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-04-18T16:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706416#M59387</link>
      <description>Morris,&lt;BR /&gt;&lt;BR /&gt;If you use the Oracle 8i, you can in the command exp specify more than one file in the paramater file.&lt;BR /&gt;&lt;BR /&gt;e.g. exp user/password file=file1.exp,file2.exp,... full=y&lt;BR /&gt;&lt;BR /&gt;Of course this functionality is only available on the version 8.1.x or later&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Xavier.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Apr 2002 12:41:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706416#M59387</guid>
      <dc:creator>Urbain Xavier</dc:creator>
      <dc:date>2002-04-19T12:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706417#M59388</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;From 8.1.x onwards the 2GB limit shouldn't be an issue.&lt;BR /&gt;&lt;BR /&gt;On 8.0.5 and 8.0.6 you have to apply an Oracle patch to fix this.&lt;BR /&gt;&lt;BR /&gt;Check the following matrix:&lt;BR /&gt;If you have problems with files &amp;gt;2GB see the following matrix:&lt;BR /&gt;Limits apply to HPUX 10.20 and 11.0 except where noted otherwise.&lt;BR /&gt;&lt;BR /&gt;  Max Datafile Size&lt;BR /&gt;  File  Raw   Async  Export/   SQL*Loader&lt;BR /&gt;Release         System Device   I/O  Import**  (see **)&lt;BR /&gt;===========================================================================&lt;BR /&gt;  8.1.7.x         64Gb  64Gb      raw only      &amp;gt;2Gb        &amp;gt;2Gb&lt;BR /&gt;  8.1.6.x         64Gb  64Gb      raw only      &amp;gt;2Gb        &amp;gt;2Gb&lt;BR /&gt;  8.0.6.x         64Gb  64Gb      raw only      See*1       See*2&lt;BR /&gt;  8.0.5.x       64Gb 64Gb   raw only See*1     &amp;lt;2Gb&lt;BR /&gt;  8.0.4.x      64Gb 64Gb   raw only SIL     HPUX10.20 &amp;gt; 2Gb&lt;BR /&gt;                                                            HPUX-11 &amp;lt;2Gb&lt;BR /&gt;  8.0.3.x         &amp;lt;2Gb &amp;lt;2Gb   raw only 2Gb     2Gb&lt;BR /&gt;  7.3.4.x         64Gb 64Gb     raw only SIL     2Gb&lt;BR /&gt;&amp;gt;=7.3.3.4.1    64Gb 64Gb   raw only SIL     2Gb&lt;BR /&gt;  7.3.2.3         &amp;lt;2Gb  &amp;lt;2Gb   raw only 2Gb     2Gb&lt;BR /&gt;  7.1.6          &amp;lt;2Gb  &amp;lt;2Gb   raw only 2Gb     2Gb&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; SIL = System Imposed Limit&lt;BR /&gt;              Always test on the actual system to ensure large files can be&lt;BR /&gt;              read / written.&lt;BR /&gt;&lt;BR /&gt;        *1 =  HPUX 10.20 requires a patch to create &amp;gt;2Gb export files:&lt;BR /&gt;                8.0.5.0 to 8.0.5.2 inclusive - Get the patch for Bug:872947&lt;BR /&gt;                8.0.6.0 to 8.0.6.1 inclusive - Get the patch for Bug:1330994&lt;BR /&gt;              HPUX 11 can export &amp;gt;2Gb on these RDBMS releases.&lt;BR /&gt;&lt;BR /&gt;        *2 =  HPUX 10.20 requires a patch for &amp;gt; 2Gb SQL Loader files:&lt;BR /&gt;                8.0.6 - Get the patch for Bug:1344224&lt;BR /&gt;              HPUX 11 can SQLLoader can read &amp;gt;2Gb files as standard.&lt;BR /&gt;&lt;BR /&gt;        ** Exp/Imp/Loader &lt;BR /&gt;              The above matrix indicates the maximum file size&lt;BR /&gt;              which can be directly handled by exp/imp/loader.&lt;BR /&gt;              However, it is possible to read/write files &amp;gt;2Gb&lt;BR /&gt;              using the OS commands.&lt;BR /&gt;&lt;BR /&gt;Andreas</description>
      <pubDate>Fri, 19 Apr 2002 12:55:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706417#M59388</guid>
      <dc:creator>Andreas D. Skjervold</dc:creator>
      <dc:date>2002-04-19T12:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706418#M59389</link>
      <description>Ooops, what gibberish...&lt;BR /&gt;Have attached the matrix instead.&lt;BR /&gt;&lt;BR /&gt;Andreas</description>
      <pubDate>Fri, 19 Apr 2002 12:58:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706418#M59389</guid>
      <dc:creator>Andreas D. Skjervold</dc:creator>
      <dc:date>2002-04-19T12:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706419#M59390</link>
      <description>Thanks for the replies, but I am using Oracle7 and am trying to incorporate this in the following:&lt;BR /&gt;&lt;BR /&gt;mknod exportpipe p&lt;BR /&gt;split -b2000m &amp;lt; exportpipe &amp;amp;&lt;BR /&gt;exp system/manager file=exportpipe full=y&lt;BR /&gt;&lt;BR /&gt;So somehow in the split command, I am trying to specify meanigful file names instead of the default xaa, xab, xac, etc., that come out.</description>
      <pubDate>Fri, 19 Apr 2002 14:52:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706419#M59390</guid>
      <dc:creator>Morris Makuch</dc:creator>
      <dc:date>2002-04-19T14:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706420#M59391</link>
      <description>Morris,&lt;BR /&gt;&lt;BR /&gt;I've taken your fifo and integrated it into what Harry suggested above...&lt;BR /&gt;&lt;BR /&gt;split -l 5000 -a 6 - exportpipe &amp;amp;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Tom&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Apr 2002 16:10:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706420#M59391</guid>
      <dc:creator>Tom Dawson</dc:creator>
      <dc:date>2002-04-19T16:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706421#M59392</link>
      <description>Something like this for the gzip example.&lt;BR /&gt;&lt;BR /&gt;mknod orapipe p&lt;BR /&gt;/usr/contrib/bin/gzip &amp;lt; orapipe &amp;gt; oracle_export.gz &amp;amp;&lt;BR /&gt;exp username/password file=./orapipe full=y log=export.log&lt;BR /&gt;rm orapipe&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;...jcd...</description>
      <pubDate>Fri, 19 Apr 2002 17:46:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706421#M59392</guid>
      <dc:creator>Joseph C. Denman</dc:creator>
      <dc:date>2002-04-19T17:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706422#M59393</link>
      <description>Morris,&lt;BR /&gt;&lt;BR /&gt;Sorry about the first posts, I was confusing csplit with split - I need a drink!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;mknod exportpipe p &lt;BR /&gt;split -b2000m -a4 - expfiles_ &amp;lt; exportpipe &amp;amp; &lt;BR /&gt;exp system/manager file=exportpipe full=y &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;THe output file names will be&lt;BR /&gt;&lt;BR /&gt;expfiles_aaaa&lt;BR /&gt;expfiles_aaab&lt;BR /&gt;expfiles_aaac&lt;BR /&gt;...&lt;BR /&gt;expfiles_zzzz&lt;BR /&gt;&lt;BR /&gt;I tested the above and it worked for me - although I didn't test an export, but I did use the pipe and split command as shown.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Fri, 19 Apr 2002 18:00:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706422#M59393</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-04-19T18:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using the split command for Oracle export files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706423#M59394</link>
      <description>Harry, thanks a lot.  That is precisely what I wanted to do.  It tested it and it works great.  Thanks again for your help.&lt;BR /&gt;&lt;BR /&gt;Morris</description>
      <pubDate>Fri, 19 Apr 2002 18:19:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-the-split-command-for-oracle-export-files/m-p/2706423#M59394</guid>
      <dc:creator>Morris Makuch</dc:creator>
      <dc:date>2002-04-19T18:19:55Z</dc:date>
    </item>
  </channel>
</rss>

