<?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 uncompress problem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/uncompress-problem/m-p/2581805#M924451</link>
    <description>Hi all.&lt;BR /&gt;&lt;BR /&gt;To backup my oracle DB I do the following:&lt;BR /&gt;&lt;BR /&gt;alter tablespace xxx begin backup&lt;BR /&gt;host cp /d1/datafile1 /d2/datafile1&lt;BR /&gt;host cp /d1/datafile2 /d2/datafile2&lt;BR /&gt;alter tablespace xxx end backup&lt;BR /&gt;compress -f /d2/datafile1&lt;BR /&gt;compress -f /d2/datafile2&lt;BR /&gt;&lt;BR /&gt;... another tablespaces.&lt;BR /&gt;&lt;BR /&gt;Now I?m going to test this backup trying to restore it in another box.&lt;BR /&gt;&lt;BR /&gt;uncompress /d2/datafile1&lt;BR /&gt;uncompress /d2/datafile1&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;but with some files (not all of them) uncompress says&lt;BR /&gt;&lt;BR /&gt;uncompress: corrupt input&lt;BR /&gt; &lt;BR /&gt;the same occurs trying uncompress on the original box (so it isn?t a copy between machines problem).&lt;BR /&gt;&lt;BR /&gt;The backup process log say?s nothing about problems with compress&lt;BR /&gt;&lt;BR /&gt;#which compress&lt;BR /&gt;/usr/bin/compress:&lt;BR /&gt;         $Revision: 82.1.1.2 $&lt;BR /&gt;         PATCH_11_00: compress.o 99/09/03&lt;BR /&gt;&lt;BR /&gt;Thank you in advance.&lt;BR /&gt;</description>
    <pubDate>Wed, 19 Sep 2001 15:42:14 GMT</pubDate>
    <dc:creator>Lukas Grijander</dc:creator>
    <dc:date>2001-09-19T15:42:14Z</dc:date>
    <item>
      <title>uncompress problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uncompress-problem/m-p/2581805#M924451</link>
      <description>Hi all.&lt;BR /&gt;&lt;BR /&gt;To backup my oracle DB I do the following:&lt;BR /&gt;&lt;BR /&gt;alter tablespace xxx begin backup&lt;BR /&gt;host cp /d1/datafile1 /d2/datafile1&lt;BR /&gt;host cp /d1/datafile2 /d2/datafile2&lt;BR /&gt;alter tablespace xxx end backup&lt;BR /&gt;compress -f /d2/datafile1&lt;BR /&gt;compress -f /d2/datafile2&lt;BR /&gt;&lt;BR /&gt;... another tablespaces.&lt;BR /&gt;&lt;BR /&gt;Now I?m going to test this backup trying to restore it in another box.&lt;BR /&gt;&lt;BR /&gt;uncompress /d2/datafile1&lt;BR /&gt;uncompress /d2/datafile1&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;but with some files (not all of them) uncompress says&lt;BR /&gt;&lt;BR /&gt;uncompress: corrupt input&lt;BR /&gt; &lt;BR /&gt;the same occurs trying uncompress on the original box (so it isn?t a copy between machines problem).&lt;BR /&gt;&lt;BR /&gt;The backup process log say?s nothing about problems with compress&lt;BR /&gt;&lt;BR /&gt;#which compress&lt;BR /&gt;/usr/bin/compress:&lt;BR /&gt;         $Revision: 82.1.1.2 $&lt;BR /&gt;         PATCH_11_00: compress.o 99/09/03&lt;BR /&gt;&lt;BR /&gt;Thank you in advance.&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Sep 2001 15:42:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uncompress-problem/m-p/2581805#M924451</guid>
      <dc:creator>Lukas Grijander</dc:creator>
      <dc:date>2001-09-19T15:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: uncompress problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uncompress-problem/m-p/2581806#M924452</link>
      <description>Slightly off topic...how about using gzip instead of compress...it generally get better compression than does compress.&lt;BR /&gt;&lt;BR /&gt;Also, instead of cp'ing how about doing something like gzip -c /d1/datafile1 &amp;gt; /d2/datafile1.gz, which would compress on the fly thus reducing space requirements on /d2.&lt;BR /&gt;&lt;BR /&gt;-Santosh</description>
      <pubDate>Wed, 19 Sep 2001 16:27:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uncompress-problem/m-p/2581806#M924452</guid>
      <dc:creator>Santosh Nair_1</dc:creator>
      <dc:date>2001-09-19T16:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: uncompress problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uncompress-problem/m-p/2581807#M924453</link>
      <description>Are the datafiles bigger than 2GB? If yes, try gzip.&lt;BR /&gt;&lt;BR /&gt;Ovidiu</description>
      <pubDate>Thu, 20 Sep 2001 01:37:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uncompress-problem/m-p/2581807#M924453</guid>
      <dc:creator>Ovidiu D. Raita</dc:creator>
      <dc:date>2001-09-20T01:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: uncompress problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/uncompress-problem/m-p/2581808#M924454</link>
      <description>Thank's all&lt;BR /&gt;&lt;BR /&gt;I'll try gzip, but with --fast option because before using compress I was using gzip -&amp;gt; better compression ratio but worst times (cp+compress 4 hours, cp+gzip 12 hours ...)&lt;BR /&gt;&lt;BR /&gt;Rafa</description>
      <pubDate>Thu, 20 Sep 2001 16:02:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/uncompress-problem/m-p/2581808#M924454</guid>
      <dc:creator>Lukas Grijander</dc:creator>
      <dc:date>2001-09-20T16:02:52Z</dc:date>
    </item>
  </channel>
</rss>

