<?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: doubt in after creating ASM disks in oracle 10g in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/doubt-in-after-creating-asm-disks-in-oracle-10g/m-p/4081961#M309163</link>
    <description>&amp;gt;&amp;gt; how list out disk information using os commands.&lt;BR /&gt;&lt;BR /&gt;What kind of information?&lt;BR /&gt;&lt;BR /&gt;Once you give a disk to Oracle ASM it is owned by, and managed by, Oracle.&lt;BR /&gt;&lt;BR /&gt;Any information, other then its size, can only come from Oracle after that point.&lt;BR /&gt;For example /etc/init.d/oracleasm scandisks &lt;BR /&gt;&lt;BR /&gt;And with everytign operational use SQLplsu commands like:&lt;BR /&gt;SQL&amp;gt; show parameter diskgroup&lt;BR /&gt;SQL&amp;gt;  select name,total_mb from v$asm_diskgroup;&lt;BR /&gt;:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The  createdisk  command writes the tag  "ORCLDISK" to the raw devive. I suppose you can 'see' that with dd and/or od, but why bother?&lt;BR /&gt;&lt;BR /&gt;A google for "oracleasm createdisk" will of course reveal several reference. One I though was interesting is:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.oracle.com/technology/tech/linux/asmlib/raw_migration.html" target="_blank"&gt;http://www.oracle.com/technology/tech/linux/asmlib/raw_migration.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
    <pubDate>Fri, 05 Oct 2007 11:22:49 GMT</pubDate>
    <dc:creator>Hein van den Heuvel</dc:creator>
    <dc:date>2007-10-05T11:22:49Z</dc:date>
    <item>
      <title>doubt in after creating ASM disks in oracle 10g</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/doubt-in-after-creating-asm-disks-in-oracle-10g/m-p/4081959#M309161</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;     i have created volumes for ASM disks in oracle 10g using the following command&lt;BR /&gt;&lt;BR /&gt;   /etc/init.d/oracleasm createdisk vol1 /dev/sdf1&lt;BR /&gt;&lt;BR /&gt;MY Question:&lt;BR /&gt;   After creating a volume for ASM disk how list out disk information using os commands.&lt;BR /&gt;&lt;BR /&gt;  kindly help me out.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Nirmal.&lt;BR /&gt;&lt;BR /&gt;   &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Oct 2007 10:59:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/doubt-in-after-creating-asm-disks-in-oracle-10g/m-p/4081959#M309161</guid>
      <dc:creator>Nirmalkumar</dc:creator>
      <dc:date>2007-10-05T10:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in after creating ASM disks in oracle 10g</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/doubt-in-after-creating-asm-disks-in-oracle-10g/m-p/4081960#M309162</link>
      <description>Hello Nirmal,&lt;BR /&gt;&lt;BR /&gt;Is this a Linux server (it looks like it as you mention /dev/sdf1)?&lt;BR /&gt;&lt;BR /&gt;Do you have the ASMLib stuff installed (it looks like you might)? &lt;BR /&gt;&lt;BR /&gt;If so, all you need to run is;&lt;BR /&gt;&lt;BR /&gt;service oracleasm listdisks (to see all disks)&lt;BR /&gt;service oracleasm querydisk /dev/sdf1  (to see header information on that specific disk)&lt;BR /&gt;&lt;BR /&gt;Note: instead of using the 'service oracleasm' command you can use '/etc/init.d/oracleasm'.&lt;BR /&gt;&lt;BR /&gt;Usage: /etc/init.d/oracleasm {start|stop|restart|enable|disable|configure|createdisk|deletedisk|querydisk|listdisks|scandisks|status}&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Oct 2007 11:13:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/doubt-in-after-creating-asm-disks-in-oracle-10g/m-p/4081960#M309162</guid>
      <dc:creator>David Child_1</dc:creator>
      <dc:date>2007-10-05T11:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in after creating ASM disks in oracle 10g</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/doubt-in-after-creating-asm-disks-in-oracle-10g/m-p/4081961#M309163</link>
      <description>&amp;gt;&amp;gt; how list out disk information using os commands.&lt;BR /&gt;&lt;BR /&gt;What kind of information?&lt;BR /&gt;&lt;BR /&gt;Once you give a disk to Oracle ASM it is owned by, and managed by, Oracle.&lt;BR /&gt;&lt;BR /&gt;Any information, other then its size, can only come from Oracle after that point.&lt;BR /&gt;For example /etc/init.d/oracleasm scandisks &lt;BR /&gt;&lt;BR /&gt;And with everytign operational use SQLplsu commands like:&lt;BR /&gt;SQL&amp;gt; show parameter diskgroup&lt;BR /&gt;SQL&amp;gt;  select name,total_mb from v$asm_diskgroup;&lt;BR /&gt;:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The  createdisk  command writes the tag  "ORCLDISK" to the raw devive. I suppose you can 'see' that with dd and/or od, but why bother?&lt;BR /&gt;&lt;BR /&gt;A google for "oracleasm createdisk" will of course reveal several reference. One I though was interesting is:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.oracle.com/technology/tech/linux/asmlib/raw_migration.html" target="_blank"&gt;http://www.oracle.com/technology/tech/linux/asmlib/raw_migration.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Oct 2007 11:22:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/doubt-in-after-creating-asm-disks-in-oracle-10g/m-p/4081961#M309163</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-10-05T11:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in after creating ASM disks in oracle 10g</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/doubt-in-after-creating-asm-disks-in-oracle-10g/m-p/4081962#M309164</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;   Thanks for your reply&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Nirmal.</description>
      <pubDate>Mon, 08 Oct 2007 04:10:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/doubt-in-after-creating-asm-disks-in-oracle-10g/m-p/4081962#M309164</guid>
      <dc:creator>Nirmalkumar</dc:creator>
      <dc:date>2007-10-08T04:10:57Z</dc:date>
    </item>
  </channel>
</rss>

