<?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: Disk Cluster Size too Large in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775877#M75835</link>
    <description>I suppose Bob may be refering to a (probably still to be written) offline tool to replace the bitmap.sys file, and the structures describing it with a larger one with more bits.&lt;BR /&gt;&lt;BR /&gt;It can can become up to 256 times larger than before.&lt;BR /&gt;You would have to pick a value which divides nicely into 1372, but fortunately there are many of those as 1372 = 2*2*7*7*7&lt;BR /&gt;So you could pick 7, but I would pick a larger mutliple.&lt;BR /&gt;You coudl then mark the whole 'old clusters' as alloced, mount the disk and truncate all file returning the end-of-file roundups to the now fragemented free block pool.&lt;BR /&gt;&lt;BR /&gt;Yikes!&lt;BR /&gt;&lt;BR /&gt;See:&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/doc/82FINAL/9996/9996pro_130.html#blue_117" target="_blank"&gt;http://h71000.www7.hp.com/doc/82FINAL/9996/9996pro_130.html#blue_117&lt;/A&gt;&lt;BR /&gt;...&lt;BR /&gt;min cluster = (disk size in number of blocks)/(65535 * 4096)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;First and foremost you need to ask yourself whether this large clustersize is a problem.&lt;BR /&gt;If the disk is supposed to hold tens of thousands of small files, then it could be a serious problem. &lt;BR /&gt;But if it is supposed to hold just a few thousand large files, then maybe there is no real serious problem. It might just only look ugly.&lt;BR /&gt;&lt;BR /&gt;As a workaround I suppose you could also consider using the LDdriver to carve the main disk into smaller virtual disks and copy the smaller files there, leaving the large ones on the original disk. Be sure to check for the 'right' copy tool to copy only up to EOF and/or use truncate after each file copied.&lt;BR /&gt;This step could also be useful in preparing for a re-init.&lt;BR /&gt;&lt;BR /&gt;Can you 'borrow' 6 more 146 GB drives from a friendly HP sales rep and move the data giving back the original (now stess tested :-) drives.&lt;BR /&gt;&lt;BR /&gt;Finally... what is your backup / restore policy for the large disk? Have you tried and timed a restore? Maybe you can convince management that you should run a controlled practice for a full restore... to a re-initted disk but you don't have to mention that detail.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good luck,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Sat, 22 Apr 2006 17:39:04 GMT</pubDate>
    <dc:creator>Hein van den Heuvel</dc:creator>
    <dc:date>2006-04-22T17:39:04Z</dc:date>
    <item>
      <title>Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775868#M75826</link>
      <description>OpenVMS 7.3-1&lt;BR /&gt;&lt;BR /&gt;I just set up several 6 member raid sets using 146gb disks on an hsg80. I accepted the defaults when i initialized these but didn't realize the cluster size was set to 1372 - which seems excessive.&lt;BR /&gt;&lt;BR /&gt;I assume there is no way to change this without re-initializing the disk (an impossible task now) but is there a reason the default is so high on the large raid arrays.</description>
      <pubDate>Fri, 21 Apr 2006 14:07:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775868#M75826</guid>
      <dc:creator>Karen Lee_3</dc:creator>
      <dc:date>2006-04-21T14:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775869#M75827</link>
      <description>I'd say it uses the old allocation scheme for backward-compatibility. Why cluster-size = 1372 is easy to explain:&lt;BR /&gt;&lt;BR /&gt;by default, the BITMAP.SYS file is limited to 255 blocks. That gives you:&lt;BR /&gt;255 blocks * 512 bytes/block * 8 bits/byte = 1044480 bits to maintain the block/cluster allocation.&lt;BR /&gt;&lt;BR /&gt;If a disk drive has more than 1044480 blocks, you need to 'cluster' multiple blocks to maintain the free/used bitmap. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;A single '146GB' disk has 286749488 blocks. If you use a 6-member RAID(-5)set, the unit size should be 5*286749488 blocks = 1433747440 blocks, because the equivalent of 1 disk is used for the parity data.&lt;BR /&gt;&lt;BR /&gt;1433747440 blocks / 1044480 bits = 1372.69&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Recent versions of OpenVMS support a larger BITMAP.SYS which allows you to select a smaller cluster size. If I remember correctly, you can now use a cluster size of 1 on disks with up to 173 GigaByte size - whether that makes sense is certainly debatable ;-)</description>
      <pubDate>Fri, 21 Apr 2006 14:36:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775869#M75827</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2006-04-21T14:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775870#M75828</link>
      <description>Karen,&lt;BR /&gt;&lt;BR /&gt;yeah..&lt;BR /&gt;That algoritm was devised LONG before even  the CONCEPT of Gigabyte disks was thought of.&lt;BR /&gt;Default is half of max, which is the nimber of chuncks that could be addressed in 32 bits (well, 31 + sign bit) way back when.&lt;BR /&gt;Only 7.2 enabled more, and thereby smaller, clusters.&lt;BR /&gt;But of course, being VMS, the EXISTING algoritm for calculating the default stayed the same.&lt;BR /&gt;So historical reasons.&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me (maybe in May in Nashua?)&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 21 Apr 2006 14:38:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775870#M75828</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2006-04-21T14:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775871#M75829</link>
      <description>on earlier versions of VMS there where limits on the storage bitmap size which lead to a minium cluster size.</description>
      <pubDate>Fri, 21 Apr 2006 14:38:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775871#M75829</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2006-04-21T14:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775872#M75830</link>
      <description>So, I guess there is no way to recover all this 'allocated' space then  right?</description>
      <pubDate>Fri, 21 Apr 2006 14:47:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775872#M75830</guid>
      <dc:creator>Karen Lee_3</dc:creator>
      <dc:date>2006-04-21T14:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775873#M75831</link>
      <description>I don't think so - at least I have never heard about a utility that allows the in-place resizing of the cluster size.&lt;BR /&gt;&lt;BR /&gt;It's a truly non-trivial task, because it would have to move data around if the new size is not a multiple of the existing cluster size and it must update the retrieval pointers in many many file headers. You would also end up with a lot of scattered free space, because any unused blocks at the end of the last cluster of a file would have become available.</description>
      <pubDate>Fri, 21 Apr 2006 15:24:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775873#M75831</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2006-04-21T15:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775874#M75832</link>
      <description>Karen,&lt;BR /&gt;&lt;BR /&gt;Actually, I have salvaged such a situation a while ago. It is possible, but it is a delicate operation.&lt;BR /&gt;&lt;BR /&gt;In reviewing this thread, I do not see whether this is an ODS-2 or ODS-5 volume. It does make a  difference.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Fri, 21 Apr 2006 16:31:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775874#M75832</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2006-04-21T16:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775875#M75833</link>
      <description>I don't think it makes a difference, because extended BITMAP sizes are supported on both ODS levels.</description>
      <pubDate>Sat, 22 Apr 2006 01:06:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775875#M75833</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2006-04-22T01:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775876#M75834</link>
      <description>What is this 'delicate operation' to restore allocated space?</description>
      <pubDate>Sat, 22 Apr 2006 16:50:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775876#M75834</guid>
      <dc:creator>Karen Lee_3</dc:creator>
      <dc:date>2006-04-22T16:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775877#M75835</link>
      <description>I suppose Bob may be refering to a (probably still to be written) offline tool to replace the bitmap.sys file, and the structures describing it with a larger one with more bits.&lt;BR /&gt;&lt;BR /&gt;It can can become up to 256 times larger than before.&lt;BR /&gt;You would have to pick a value which divides nicely into 1372, but fortunately there are many of those as 1372 = 2*2*7*7*7&lt;BR /&gt;So you could pick 7, but I would pick a larger mutliple.&lt;BR /&gt;You coudl then mark the whole 'old clusters' as alloced, mount the disk and truncate all file returning the end-of-file roundups to the now fragemented free block pool.&lt;BR /&gt;&lt;BR /&gt;Yikes!&lt;BR /&gt;&lt;BR /&gt;See:&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/doc/82FINAL/9996/9996pro_130.html#blue_117" target="_blank"&gt;http://h71000.www7.hp.com/doc/82FINAL/9996/9996pro_130.html#blue_117&lt;/A&gt;&lt;BR /&gt;...&lt;BR /&gt;min cluster = (disk size in number of blocks)/(65535 * 4096)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;First and foremost you need to ask yourself whether this large clustersize is a problem.&lt;BR /&gt;If the disk is supposed to hold tens of thousands of small files, then it could be a serious problem. &lt;BR /&gt;But if it is supposed to hold just a few thousand large files, then maybe there is no real serious problem. It might just only look ugly.&lt;BR /&gt;&lt;BR /&gt;As a workaround I suppose you could also consider using the LDdriver to carve the main disk into smaller virtual disks and copy the smaller files there, leaving the large ones on the original disk. Be sure to check for the 'right' copy tool to copy only up to EOF and/or use truncate after each file copied.&lt;BR /&gt;This step could also be useful in preparing for a re-init.&lt;BR /&gt;&lt;BR /&gt;Can you 'borrow' 6 more 146 GB drives from a friendly HP sales rep and move the data giving back the original (now stess tested :-) drives.&lt;BR /&gt;&lt;BR /&gt;Finally... what is your backup / restore policy for the large disk? Have you tried and timed a restore? Maybe you can convince management that you should run a controlled practice for a full restore... to a re-initted disk but you don't have to mention that detail.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good luck,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 22 Apr 2006 17:39:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775877#M75835</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2006-04-22T17:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775878#M75836</link>
      <description>Karen,&lt;BR /&gt;&lt;BR /&gt;In essence, Hein is correct. A while ago, a systems programmer at a site with which I was connected throught that the correct allocation minimum would be half a disk track (in those days approximately ten sectors).&lt;BR /&gt;&lt;BR /&gt;When disk space ran low, an analyis showed that  our actual file allocations were resulting in a breakage factor of approximately 30% (30% of our disk space was unusable because of the "last sector vs. last allocated sector" effect (a one block file used only a single block but allocated an entire cluster).&lt;BR /&gt;&lt;BR /&gt;A secondary problem was backup capabilities (or lack thereof). Pre-BACKUP, there was no good tool to restoring a disk with a different cluster factor.&lt;BR /&gt;&lt;BR /&gt;The option of simply purchasing an additional disk drive was out of the question. Then current prices meant that that option was, in relative terms, the equivalent of a good portion of a man-year, and totally out of the question.&lt;BR /&gt;&lt;BR /&gt;Researching the problem, I was able to determine (for an ODS-2 disk) the necessary surgery was feasible. Ensuring that the data was backed up, I dismounted the disk, and sucessfully made the changes. (I was also not a cowboy about it, I did take the precaution of checking with one of my Engineering contacts, Hein can take a good guess as to whom, but I will not identify). My contact noted that there was an even shorter way to accomplish what I was doing.&lt;BR /&gt;&lt;BR /&gt;Was it the computer equivalent of neurosurgery, probably. But neurosurgery is reasonably safe, when done with the correct preparation, testing, and care. &lt;BR /&gt;&lt;BR /&gt;Would I (and could I) do it again in the same or a similar situation, yes. Do I recommend it as a general procedure, NO. The actual downtime to do this change is measured in seconds, and does not require a reboot of the system or cluster. Properly prepared, the operation is safe.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Sun, 23 Apr 2006 07:27:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775878#M75836</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2006-04-23T07:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775879#M75837</link>
      <description>You guys are why ahead of me - let me see if i understand this.&lt;BR /&gt;&lt;BR /&gt;I unmount the raid array and then set the cluster size without reinitializing it - correct?</description>
      <pubDate>Sun, 23 Apr 2006 17:32:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775879#M75837</guid>
      <dc:creator>Karen Lee_3</dc:creator>
      <dc:date>2006-04-23T17:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775880#M75838</link>
      <description>Karen,&lt;BR /&gt;&lt;BR /&gt;It is not that simple. &lt;BR /&gt;&lt;BR /&gt;I said that it can be accomplished in that time scale, but while I would do it in appropriate situations, it is a delicate operation, not just a question of issuing one or two easy commands.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Sun, 23 Apr 2006 19:40:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775880#M75838</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2006-04-23T19:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775881#M75839</link>
      <description>Karen,&lt;BR /&gt;&lt;BR /&gt;I hit "Submit" too quickly.&lt;BR /&gt;&lt;BR /&gt;With the proper preparation, the actual switch of the cluster factor is a fairly fast operation (the switch would in today's technologies, would be very short).&lt;BR /&gt;&lt;BR /&gt;However, I want to be clear (if for nothing else, the future readers of this discussion). While the operation can be done quickly, it is not merely a question of issuing a DISMOUNT, one or two standard commands, and then re-MOUNTing the volumes. &lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Sun, 23 Apr 2006 19:45:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775881#M75839</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2006-04-23T19:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775882#M75840</link>
      <description>ok, looks like i'll have to copy all the data over to other disks and re-init these with a smaller cluster then copy the stuff back.  it will take forever, but it's really using a lot of space like this.&lt;BR /&gt;&lt;BR /&gt;Next question, when I backup the data back to these re-init'd disks with the new cluster size, is there going to be a problem because of the difference in cluster size?&lt;BR /&gt;&lt;BR /&gt;And, what exactly is the best cluster size I should re-init them to?</description>
      <pubDate>Mon, 24 Apr 2006 08:53:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775882#M75840</guid>
      <dc:creator>Karen Lee_3</dc:creator>
      <dc:date>2006-04-24T08:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775883#M75841</link>
      <description>Karen,&lt;BR /&gt;&lt;BR /&gt;be sure to make the backup with BACKUP/IMAGE... and the restore with BACKUP/IMAGE/NOINIT..., else the restore would reinit the disk with its original settings.&lt;BR /&gt;The clustersize should be selecting with respect to the size of the files being stored on the disk. If you have a lot of small files, setting a big clustersize would waste a lot of space, while big files allow for bigger clustersizes.&lt;BR /&gt;If the 'typical' file fits in one cluster, it will always be contigous.&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Mon, 24 Apr 2006 08:58:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775883#M75841</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2006-04-24T08:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775884#M75842</link>
      <description>These disk have thousands of small files.  I know someone said any number 2*7*7*7 - but exactly what does that mean?  "27", "277"?</description>
      <pubDate>Mon, 24 Apr 2006 09:03:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775884#M75842</guid>
      <dc:creator>Karen Lee_3</dc:creator>
      <dc:date>2006-04-24T09:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775885#M75843</link>
      <description>Karen,&lt;BR /&gt;&lt;BR /&gt;(smile) You have seen too many wildcards!  (Smile) 2*2*7*7*7 is also expressible as:&lt;BR /&gt;&lt;BR /&gt;   (2**2)*(7**3) &lt;BR /&gt;&lt;BR /&gt;In other words, the "*" are arithmetic operators, not wildcards. So, for example, cluster factors of 2, 4, 7, 14,... would all be valid if you were restructuring the volume. &lt;BR /&gt;&lt;BR /&gt;If you are re-initializing the volumes, this is not a concern, any cluster factor is acceptable (although depending precisely on what disks and controllers you have, some may be better than others).&lt;BR /&gt;&lt;BR /&gt;If the copying is a roadblock, as I said, the conversion can be done, albeit with care. If you wish, I will be happy to speak offline with you about it.&lt;BR /&gt;&lt;BR /&gt;I hope that the preceeding is helpful.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Mon, 24 Apr 2006 09:17:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775885#M75843</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2006-04-24T09:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775886#M75844</link>
      <description>&amp;gt; 1372 = 2*2*7*7*7&lt;BR /&gt;&lt;BR /&gt;What's this called in english?&lt;BR /&gt;- prime factorization ?&lt;BR /&gt;- prime decomposition ?</description>
      <pubDate>Mon, 24 Apr 2006 09:42:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775886#M75844</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2006-04-24T09:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Cluster Size too Large</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775887#M75845</link>
      <description>Uwe,&lt;BR /&gt;&lt;BR /&gt;In English, Prime Factorization.&lt;BR /&gt;&lt;BR /&gt;Not that we notice it often, but there is an ambiguity in notation (the WildCard Pattern Matching syntax vs. Mathematics).&lt;BR /&gt;&lt;BR /&gt;While I have not often fallen into that trap, overloaded syntax is always a potential source of mis-understandings.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Mon, 24 Apr 2006 10:00:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/disk-cluster-size-too-large/m-p/3775887#M75845</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2006-04-24T10:00:34Z</dc:date>
    </item>
  </channel>
</rss>

