<?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: where is my problem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/where-is-my-problem/m-p/2416520#M765030</link>
    <description>Hi ,&lt;BR /&gt;Iam sorry i obviously missed when i did a cut and paste.&lt;BR /&gt;The commands will look as follow&lt;BR /&gt;compress&lt;SESHAPIPE&gt;compresssesha.Z &amp;amp;&lt;BR /&gt;dd if=/oracle/dbfile/user_2_file of=/user/backup/seshapipe bs=1048576&lt;BR /&gt;if test $? -ne 0 ; then echo "ERROR in backing up the datafile to destination &lt;BR /&gt;directory "&lt;BR /&gt;&lt;BR /&gt;Here seshapipe is an unix pipe created using the command&lt;BR /&gt;mknod seshapipe p&lt;BR /&gt;What i try to acheive by using this command is to compress the file online &lt;BR /&gt;while taking backup.(these are oracle datafiles).The file iam trying to backup &lt;BR /&gt;is 2Gb and attimes the compressed file is 140 bytes or so which is really &lt;BR /&gt;weird.I donot get the same file back when i try to uncompress this 140 bytes &lt;BR /&gt;file.&lt;BR /&gt;So iam wondering if there are any bugs with unix pipes&lt;BR /&gt;when i get this 140 bytes compress file the $? is 0 which is successful &lt;BR /&gt;completion of dd and iam not able to get the return value for compress as it &lt;BR /&gt;runs in background&lt;BR /&gt;&lt;BR /&gt;Thanks for correcting me&lt;BR /&gt;Any help will be greatly appreciated&lt;BR /&gt;Seshadri&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SESHAPIPE&gt;</description>
    <pubDate>Mon, 06 Dec 1999 19:51:03 GMT</pubDate>
    <dc:creator>Seshadri Dehalisan</dc:creator>
    <dc:date>1999-12-06T19:51:03Z</dc:date>
    <item>
      <title>where is my problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-is-my-problem/m-p/2416518#M765028</link>
      <description>Hi all,&lt;BR /&gt;My machine is HP-UX B.10.20 C 9000/869 running HP-UX 10.20 .&lt;BR /&gt;I am having problem with the following commands though iam not able to isolate &lt;BR /&gt;where the problem is &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;compresssesha.Z &amp;amp;&lt;BR /&gt;dd if=/oracle/dbfile/user_2_file of=/user/backup/seshapipe bs=1048576&lt;BR /&gt;if test $? -ne 0        ; then echo "ERROR in backing up the database to &lt;BR /&gt;destination directory "&lt;BR /&gt;&lt;BR /&gt;where /user/backup/seshapipe is an unix pipe created with command mknod p &lt;BR /&gt;/user/backup/seshapipe&lt;BR /&gt;&lt;BR /&gt;Basically what iam trying to do is to compress the file in fly .&lt;BR /&gt;&lt;BR /&gt;All my files are 2G.&lt;BR /&gt;&lt;BR /&gt;Many times when i try to compress these files iam getting the compressed file &lt;BR /&gt;which is &lt;BR /&gt;150 bytes or so and when i try to uncompress iam not getting my file back.&lt;BR /&gt;&lt;BR /&gt;Am i missing anything or iam hitting some bug&lt;BR /&gt;&lt;BR /&gt;Any help will be greatly appreciated&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Seshadri&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Dec 1999 13:14:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-is-my-problem/m-p/2416518#M765028</guid>
      <dc:creator>Seshadri Dehalisan</dc:creator>
      <dc:date>1999-12-06T13:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: where is my problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-is-my-problem/m-p/2416519#M765029</link>
      <description>What is "compresssesha.Z" ? Is there supposed to be a space there? Is this part &lt;BR /&gt;of the script, or is it the name of it? Normally you don't compress a file that &lt;BR /&gt;already has a .Z extension.&lt;BR /&gt;&lt;BR /&gt;Where/what does the "seshapipe" point to?</description>
      <pubDate>Mon, 06 Dec 1999 16:55:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-is-my-problem/m-p/2416519#M765029</guid>
      <dc:creator>Dan Hull</dc:creator>
      <dc:date>1999-12-06T16:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: where is my problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-is-my-problem/m-p/2416520#M765030</link>
      <description>Hi ,&lt;BR /&gt;Iam sorry i obviously missed when i did a cut and paste.&lt;BR /&gt;The commands will look as follow&lt;BR /&gt;compress&lt;SESHAPIPE&gt;compresssesha.Z &amp;amp;&lt;BR /&gt;dd if=/oracle/dbfile/user_2_file of=/user/backup/seshapipe bs=1048576&lt;BR /&gt;if test $? -ne 0 ; then echo "ERROR in backing up the datafile to destination &lt;BR /&gt;directory "&lt;BR /&gt;&lt;BR /&gt;Here seshapipe is an unix pipe created using the command&lt;BR /&gt;mknod seshapipe p&lt;BR /&gt;What i try to acheive by using this command is to compress the file online &lt;BR /&gt;while taking backup.(these are oracle datafiles).The file iam trying to backup &lt;BR /&gt;is 2Gb and attimes the compressed file is 140 bytes or so which is really &lt;BR /&gt;weird.I donot get the same file back when i try to uncompress this 140 bytes &lt;BR /&gt;file.&lt;BR /&gt;So iam wondering if there are any bugs with unix pipes&lt;BR /&gt;when i get this 140 bytes compress file the $? is 0 which is successful &lt;BR /&gt;completion of dd and iam not able to get the return value for compress as it &lt;BR /&gt;runs in background&lt;BR /&gt;&lt;BR /&gt;Thanks for correcting me&lt;BR /&gt;Any help will be greatly appreciated&lt;BR /&gt;Seshadri&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SESHAPIPE&gt;</description>
      <pubDate>Mon, 06 Dec 1999 19:51:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-is-my-problem/m-p/2416520#M765030</guid>
      <dc:creator>Seshadri Dehalisan</dc:creator>
      <dc:date>1999-12-06T19:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: where is my problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-is-my-problem/m-p/2416521#M765031</link>
      <description>Hi&lt;BR /&gt;I have the same question, what is meant by first line and are you trying to &lt;BR /&gt;compress an already copressed file or does the script start with dd command.&lt;BR /&gt;Thanks</description>
      <pubDate>Tue, 07 Dec 1999 11:45:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-is-my-problem/m-p/2416521#M765031</guid>
      <dc:creator>Asad Malik_1</dc:creator>
      <dc:date>1999-12-07T11:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: where is my problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/where-is-my-problem/m-p/2416522#M765032</link>
      <description>Hi ,&lt;BR /&gt;I am sorry for reasons unknown few characters are not getting printed .i typed &lt;BR /&gt;output  and input redirection symbols and it's not getting printed in this &lt;BR /&gt;forum.so i have attached it as a text.&lt;BR /&gt;anyway iam not trying to compress a file that has been already compressed .my &lt;BR /&gt;first line is simply this&lt;BR /&gt;compress"&amp;lt;"seshapipe"&amp;gt;"sesha.Z &amp;amp;&lt;BR /&gt;please read with the double quotes removed.&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;any help will be appreciated&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Seshadri</description>
      <pubDate>Tue, 07 Dec 1999 13:47:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/where-is-my-problem/m-p/2416522#M765032</guid>
      <dc:creator>Seshadri Dehalisan</dc:creator>
      <dc:date>1999-12-07T13:47:05Z</dc:date>
    </item>
  </channel>
</rss>

