<?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: Moving datafiles from non-stripped to stripped logical volumes in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292400#M673041</link>
    <description>Thanks Tim and Others.&lt;BR /&gt;Surely I will give the updates after the change.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Srini</description>
    <pubDate>Fri, 24 Oct 2008 08:00:00 GMT</pubDate>
    <dc:creator>Srinikalyan</dc:creator>
    <dc:date>2008-10-24T08:00:00Z</dc:date>
    <item>
      <title>Moving datafiles from non-stripped to stripped logical volumes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292392#M673033</link>
      <description>Hi,&lt;BR /&gt;We are in the process of moving the Oracle datafiles from non-stripped logical volumes to stripped volumes. I need to know which will be the best way to do this. If we do just the copy cp and dd command, will that helps in performance and will that the data move as per the stripe unit? Or do we require any Oracle way of re-creating the data files in the new stripped volumes?&lt;BR /&gt;Thanks,&lt;BR /&gt;Srini</description>
      <pubDate>Wed, 22 Oct 2008 16:04:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292392#M673033</guid>
      <dc:creator>Srinikalyan</dc:creator>
      <dc:date>2008-10-22T16:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Moving datafiles from non-stripped to stripped logical volumes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292393#M673034</link>
      <description>Without more background info I will assume the following.&lt;BR /&gt;&lt;BR /&gt;You are using LVM and the physical devices are either striped on a disk array or LVM striping is used.  You are also using vxfs filesystems and not raw disk.&lt;BR /&gt;&lt;BR /&gt;This that said, simply copy the data or restore from a backup means of your choice(certainly while the application is down).&lt;BR /&gt;&lt;BR /&gt;Using LVM and vxfs you do not have any real control of the data layout.&lt;BR /&gt;&lt;BR /&gt;If you are NOT using LVM and/or vxfs then please fill provide some more specifics.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Oct 2008 17:27:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292393#M673034</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-10-22T17:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Moving datafiles from non-stripped to stripped logical volumes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292394#M673035</link>
      <description>We are already using the XP array level striping RAID 5 and after further analysis we decided to use LVM striping as well for the Oracle datafiles. Is the cp command the best way to move the files from LVM non-striped to LVM striped logical volumes?&lt;BR /&gt;Thanks,&lt;BR /&gt;Srini</description>
      <pubDate>Thu, 23 Oct 2008 08:39:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292394#M673035</guid>
      <dc:creator>Srinikalyan</dc:creator>
      <dc:date>2008-10-23T08:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: Moving datafiles from non-stripped to stripped logical volumes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292395#M673036</link>
      <description>There are different simple way to do this:&lt;BR /&gt;&lt;BR /&gt;Local copy:&lt;BR /&gt;tar cf - * | ( cd /target; tar xfp -)&lt;BR /&gt;( cd SOURCEDIR &amp;amp;&amp;amp; tar cf - . ) | (cd DESTDIR &amp;amp;&amp;amp; tar xvpf - )&lt;BR /&gt;find . -print -depth | cpio -pvdum /data/my_data&lt;BR /&gt;&lt;BR /&gt;Remote:&lt;BR /&gt;( cd SOURCEDIR &amp;amp;&amp;amp; tar cf - . ) | ssh target_address "(cd DESTDIR &amp;amp;&amp;amp; tar xvpf - )"&lt;BR /&gt;&lt;BR /&gt;For local copy i would use the find command it seems to be a little bit faster (in some cases).&lt;BR /&gt;&lt;BR /&gt;Links:&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=778077" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=778077&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1115722" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1115722&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1082336" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1082336&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1065155" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1065155&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=81120" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=81120&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This link is fun reading:&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=850008" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=850008&lt;/A&gt;</description>
      <pubDate>Thu, 23 Oct 2008 10:34:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292395#M673036</guid>
      <dc:creator>Jannik</dc:creator>
      <dc:date>2008-10-23T10:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Moving datafiles from non-stripped to stripped logical volumes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292396#M673037</link>
      <description>What HP-UX version? What toools?&lt;BR /&gt;&lt;BR /&gt;dd is the easy way to go, if you can tolerate the down time on that part of the db, no need to shut down oracle or hpux.&lt;BR /&gt;Eventually you'll need to tell Oracle where the new datafile lives directly (alter database...), or with smoke and mirrors... soft link from old location.&lt;BR /&gt;&lt;BR /&gt;Speaking of mirroring, with the right tools and lvm command you can potential turn the original LV into a mirror, adding the new LVM striped disks. This will transparently make a copy. You can then reduce or split away the original and have no downtime (but a lot of homework and testing!).&lt;BR /&gt;&lt;BR /&gt;Best i know, you used to be able only to mirror on exetend-based stripes (which may well be optimal), not on 'block striped. But there are patches ( PHCO_36746  ) which can make this happen also, for hpux 11.23.&lt;BR /&gt;Carefully read: &lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1197798" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1197798&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Other topics describe these suggestion in various levels of detail. Google for +lvm +strip +mirror. Toss in 'pvg' or 'split' as needed.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps some,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Thu, 23 Oct 2008 11:03:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292396#M673037</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2008-10-23T11:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Moving datafiles from non-stripped to stripped logical volumes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292397#M673038</link>
      <description>another option is to use cpio.&lt;BR /&gt;cd olddir&lt;BR /&gt;find . -depth -print | cpio newdir&lt;BR /&gt;&lt;BR /&gt;Just keep in mind to if you are planning to change your mount names then you will need to rename your datafiles in Oracle.&lt;BR /&gt;&lt;BR /&gt;You can mount the new striped mount points to a temporary name, copy the data, unmount the old mount points and then remount the new mount using the old name.</description>
      <pubDate>Thu, 23 Oct 2008 13:48:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292397#M673038</guid>
      <dc:creator>John Brooks_1</dc:creator>
      <dc:date>2008-10-23T13:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Moving datafiles from non-stripped to stripped logical volumes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292398#M673039</link>
      <description>Thanks All. Will that the data moves to the disks as per the stripe unit by using all the mentioned methods?&lt;BR /&gt;Note:HP-UX version 11i v2&lt;BR /&gt;Thanks,&lt;BR /&gt;Srini</description>
      <pubDate>Thu, 23 Oct 2008 15:18:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292398#M673039</guid>
      <dc:creator>Srinikalyan</dc:creator>
      <dc:date>2008-10-23T15:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Moving datafiles from non-stripped to stripped logical volumes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292399#M673040</link>
      <description>&amp;gt;&amp;gt;We are already using the XP array level striping RAID 5 and after further analysis we decided to use LVM striping as well for the Oracle datafiles. Is the cp command the best way to move the files from LVM non-striped to LVM striped logical volumes?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you are striping a stripe ( I call it plaiding ). Then the stripe size and data layout is controlled by how you created the lvol ( e.g. -i 8,16,64 etc.. )&lt;BR /&gt;&lt;BR /&gt;The method of copy does not matter.&lt;BR /&gt;&lt;BR /&gt;Please post your results, there has been great debate on "plaiding".  &lt;BR /&gt;In some instances LVM striping an array stripe may disable or hinder the array's ability to optimize prefetch and cache.&lt;BR /&gt;&lt;BR /&gt;In other cases people have experienced benefits.&lt;BR /&gt;&lt;BR /&gt;The current word is "test it in your environment and use what works best for you"&lt;BR /&gt;&lt;BR /&gt;I think it would be great to hear your results.&lt;BR /&gt;</description>
      <pubDate>Thu, 23 Oct 2008 15:26:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292399#M673040</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-10-23T15:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: Moving datafiles from non-stripped to stripped logical volumes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292400#M673041</link>
      <description>Thanks Tim and Others.&lt;BR /&gt;Surely I will give the updates after the change.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Srini</description>
      <pubDate>Fri, 24 Oct 2008 08:00:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-datafiles-from-non-stripped-to-stripped-logical-volumes/m-p/4292400#M673041</guid>
      <dc:creator>Srinikalyan</dc:creator>
      <dc:date>2008-10-24T08:00:00Z</dc:date>
    </item>
  </channel>
</rss>

