<?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: db_block_size in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837206#M90441</link>
    <description>The UNIX block size is set during partioning the disk.  Normally this ranges from 512 bytes to 8k.  If you are &lt;BR /&gt;dedicating the disk to the database then you can set &lt;BR /&gt;the block size higher.&lt;BR /&gt;&lt;BR /&gt;The critical calculation is &lt;BR /&gt; db_block_size * multiblock_count &amp;lt;= UNIX_block size&lt;BR /&gt;Some write intensive systems may perform better with&lt;BR /&gt; db_block_size &amp;lt;= UNIX_block_size&lt;BR /&gt;All sizes are powers of 2.&lt;BR /&gt;&lt;BR /&gt;This is almost always the case.  Changing db_block_size&lt;BR /&gt;has requires rebuilding the database.  Changing UNIX block size required rebuilding the partition.  Multiblock_count is a startup pararameter and can be changed on each database startup.&lt;BR /&gt;&lt;BR /&gt;Don't forget to set the minumum extent when you create &lt;BR /&gt;your tablespaces.  It should be a power of 2 &amp;gt; blocksize.&lt;BR /&gt;</description>
    <pubDate>Mon, 04 Nov 2002 16:36:31 GMT</pubDate>
    <dc:creator>Bill Thorsteinson</dc:creator>
    <dc:date>2002-11-04T16:36:31Z</dc:date>
    <item>
      <title>db_block_size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837202#M90437</link>
      <description>what's the UNIX kernel parameters equivalent of db_block_size in Oracle DB ??</description>
      <pubDate>Fri, 01 Nov 2002 03:54:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837202#M90437</guid>
      <dc:creator>YLTan</dc:creator>
      <dc:date>2002-11-01T03:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: db_block_size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837203#M90438</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;from metalink:&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;To display the file system block size, execute the "tunefs" command as root: &lt;BR /&gt;&lt;BR /&gt;   # tunefs -v &lt;DEVICE name=""&gt;  &lt;BR /&gt;&lt;BR /&gt;&lt;DEVICE name=""&gt; is the name of the device you would like to display the file  system block size of. &lt;BR /&gt;&lt;BR /&gt;For  example:       &lt;BR /&gt;# tunefs -v /dev/dsk/c2t6d0 &lt;BR /&gt;&lt;BR /&gt;*NOTE:   tunefs is not necessarily installed on all HP/UX systems.         &lt;BR /&gt;tunefs will only work for HFS, and not for JFS. &lt;BR /&gt;&lt;BR /&gt;&lt;/DEVICE&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps!&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Yogeeraj&lt;BR /&gt;&lt;/DEVICE&gt;&lt;/QUOTE&gt;</description>
      <pubDate>Fri, 01 Nov 2002 05:53:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837203#M90438</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2002-11-01T05:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: db_block_size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837204#M90439</link>
      <description>check for the man pages of mkfs_hfs and mkfs_vxfs.&lt;BR /&gt;&lt;BR /&gt;check for the blksize option &lt;BR /&gt;&lt;BR /&gt;YOu have to specify the block size during the creation of file system.&lt;BR /&gt;&lt;BR /&gt;Like&lt;BR /&gt;&lt;BR /&gt;hfs file system&lt;BR /&gt;# newfs -F hfs -b xxxx /dev/vgxx/rlvyy &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# newfs -F vxfs -b xxxx  /dev/vgxx/rlvyy&lt;BR /&gt;&lt;BR /&gt;You can check the existing block size using the &lt;BR /&gt;&lt;BR /&gt;#fstyp -v /dev/vgxx/rlvyy &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 01 Nov 2002 06:03:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837204#M90439</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2002-11-01T06:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: db_block_size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837205#M90440</link>
      <description>Hi Liang,&lt;BR /&gt;&lt;BR /&gt;As I understand, db_block_size specifies the default data block size, it should be multiple of OS level block size.  I don't think there's any kernel parameters related to this setting, on HPUX 11, the data block size is 4K, so in my oracle instance, db_block_size=8096.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Gary</description>
      <pubDate>Fri, 01 Nov 2002 20:03:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837205#M90440</guid>
      <dc:creator>Gary Yu</dc:creator>
      <dc:date>2002-11-01T20:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: db_block_size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837206#M90441</link>
      <description>The UNIX block size is set during partioning the disk.  Normally this ranges from 512 bytes to 8k.  If you are &lt;BR /&gt;dedicating the disk to the database then you can set &lt;BR /&gt;the block size higher.&lt;BR /&gt;&lt;BR /&gt;The critical calculation is &lt;BR /&gt; db_block_size * multiblock_count &amp;lt;= UNIX_block size&lt;BR /&gt;Some write intensive systems may perform better with&lt;BR /&gt; db_block_size &amp;lt;= UNIX_block_size&lt;BR /&gt;All sizes are powers of 2.&lt;BR /&gt;&lt;BR /&gt;This is almost always the case.  Changing db_block_size&lt;BR /&gt;has requires rebuilding the database.  Changing UNIX block size required rebuilding the partition.  Multiblock_count is a startup pararameter and can be changed on each database startup.&lt;BR /&gt;&lt;BR /&gt;Don't forget to set the minumum extent when you create &lt;BR /&gt;your tablespaces.  It should be a power of 2 &amp;gt; blocksize.&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Nov 2002 16:36:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837206#M90441</guid>
      <dc:creator>Bill Thorsteinson</dc:creator>
      <dc:date>2002-11-04T16:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: db_block_size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837207#M90442</link>
      <description>I flipped first the comparison. It should read.&lt;BR /&gt;&lt;BR /&gt; db_block_size * multi_block_count &amp;gt;= UNIX block size&lt;BR /&gt;&lt;BR /&gt;Equal should mimimize the system reads per database multi-block read.&lt;BR /&gt;&lt;BR /&gt;If db_block_size is greater than UNIX block size you may get multiple system level io requests for all database accesses.</description>
      <pubDate>Mon, 04 Nov 2002 16:43:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/db-block-size/m-p/2837207#M90442</guid>
      <dc:creator>Bill Thorsteinson</dc:creator>
      <dc:date>2002-11-04T16:43:42Z</dc:date>
    </item>
  </channel>
</rss>

