<?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: RAW Device Backup in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-backup/m-p/2435226#M768239</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;sounds to me a little bit strange.&lt;BR /&gt;If you have a raw device ie. /dev/vg01/lvol1&lt;BR /&gt;then you don't have any files on it - raw devices are used in full capacity without any filesystem structure.&lt;BR /&gt;So dd would be the best to backup but with the raw device file ie:&lt;BR /&gt;dd if=/dev/vg01/rlovol1 of=&lt;FILE&gt; bs=64k&lt;BR /&gt;If you have a filesystem on it and mounted dd is not a good choice. A tar backup is the better thing but remember to shut down your oracle application before backup.&lt;BR /&gt;Of course when you stop oracle and umount the filesystem you could do a dd but i think this is not a good idea.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Andrew&lt;BR /&gt;&lt;/FILE&gt;</description>
    <pubDate>Tue, 08 Aug 2000 06:14:43 GMT</pubDate>
    <dc:creator>Andreas Voss</dc:creator>
    <dc:date>2000-08-08T06:14:43Z</dc:date>
    <item>
      <title>RAW Device Backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-backup/m-p/2435224#M768237</link>
      <description>We are having RAW Device installtion of ORACLE 8.0.4. data files.  We are using DD for cold backup of datafiles.&lt;BR /&gt;&lt;BR /&gt;Is it ok to take DD of RAW device into a mounted files system with sepcified name ?&lt;BR /&gt;&lt;BR /&gt;Example :&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/vg03/pro1.data1.dbf of=/oracle/cold/data1.dbf&lt;BR /&gt;&lt;BR /&gt;If so, what about restoration ? Is the following method is ok ?&lt;BR /&gt;dd if=/oracle/cold/data1.dbf of=/dev/vg03/pro1.data1.dbf &lt;BR /&gt;&lt;BR /&gt;2. Can we take TAR backup of all files created by the above DD comands in mounted file system, i.e.,&lt;BR /&gt;&lt;BR /&gt;tar -cv /pro1backup/cold/*&lt;BR /&gt;&lt;BR /&gt;Will it work properly. Is anyone using the said method ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanx&lt;BR /&gt;&lt;BR /&gt;With Rgds&lt;BR /&gt;RMAHA&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Aug 2000 05:31:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-backup/m-p/2435224#M768237</guid>
      <dc:creator>R.MAHENDRAN</dc:creator>
      <dc:date>2000-08-08T05:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: RAW Device Backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-backup/m-p/2435225#M768238</link>
      <description>dd is fine. I would recommend, using the 'bs' option. Maybe 'bs=64k' or higher. It should speed things up.&lt;BR /&gt;&lt;BR /&gt;You might want to look at something like HP's Omniback. It can backup filesystems and raw devices to the same tape etc. It's a very good tools for such things. That way, you won't have to dd the raw data to filesystems and then back it up.</description>
      <pubDate>Tue, 08 Aug 2000 06:09:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-backup/m-p/2435225#M768238</guid>
      <dc:creator>Andy Monks</dc:creator>
      <dc:date>2000-08-08T06:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: RAW Device Backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-backup/m-p/2435226#M768239</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;sounds to me a little bit strange.&lt;BR /&gt;If you have a raw device ie. /dev/vg01/lvol1&lt;BR /&gt;then you don't have any files on it - raw devices are used in full capacity without any filesystem structure.&lt;BR /&gt;So dd would be the best to backup but with the raw device file ie:&lt;BR /&gt;dd if=/dev/vg01/rlovol1 of=&lt;FILE&gt; bs=64k&lt;BR /&gt;If you have a filesystem on it and mounted dd is not a good choice. A tar backup is the better thing but remember to shut down your oracle application before backup.&lt;BR /&gt;Of course when you stop oracle and umount the filesystem you could do a dd but i think this is not a good idea.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Andrew&lt;BR /&gt;&lt;/FILE&gt;</description>
      <pubDate>Tue, 08 Aug 2000 06:14:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-backup/m-p/2435226#M768239</guid>
      <dc:creator>Andreas Voss</dc:creator>
      <dc:date>2000-08-08T06:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: RAW Device Backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-backup/m-p/2435227#M768240</link>
      <description>&lt;BR /&gt; Thanks for every One.&lt;BR /&gt;&lt;BR /&gt;This worked!!!!,&lt;BR /&gt;&lt;BR /&gt;  We created dummy tablespace with a raw&lt;BR /&gt; datafile &amp;amp; we took the dd backup on &lt;BR /&gt; mounted file system,&amp;amp; tar backup of the&lt;BR /&gt; same taken.&lt;BR /&gt;&lt;BR /&gt; Then we removed the raw filesystem &amp;amp; recreated,from the tape the dd file restored&lt;BR /&gt;back to the mounted directory,&amp;amp; through&lt;BR /&gt;dd copied back as the original raw datafile.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; Database came up with out any table loss.&lt;BR /&gt;&lt;BR /&gt; Thanks &amp;amp; Regards&lt;BR /&gt; R.Mahendran.</description>
      <pubDate>Tue, 08 Aug 2000 10:51:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/raw-device-backup/m-p/2435227#M768240</guid>
      <dc:creator>R.MAHENDRAN</dc:creator>
      <dc:date>2000-08-08T10:51:00Z</dc:date>
    </item>
  </channel>
</rss>

