<?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: SET VOLUME/LIMIT failing in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903079#M68535</link>
    <description>Thread closed.  Thanks to John for his assistance.</description>
    <pubDate>Tue, 24 May 2005 21:07:08 GMT</pubDate>
    <dc:creator>Malcolm Wade</dc:creator>
    <dc:date>2005-05-24T21:07:08Z</dc:date>
    <item>
      <title>SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903059#M68515</link>
      <description>I tried to set a DSA volume today for later expansion with the SET VOLUME/SIZE command and it is failing with:&lt;BR /&gt;&lt;BR /&gt;%SET-E-NOTSET, error modifying _DSA224:&lt;BR /&gt;-SYSTEM-W-DEVICEFULL, device full; allocation failure&lt;BR /&gt;&lt;BR /&gt;This was the second DSA volume that I did; the first, a shadowset like the first worked fine.&lt;BR /&gt;&lt;BR /&gt;See attached log for process I used.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Malcolm</description>
      <pubDate>Thu, 19 May 2005 19:49:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903059#M68515</guid>
      <dc:creator>Malcolm Wade</dc:creator>
      <dc:date>2005-05-19T19:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903060#M68516</link>
      <description>More info; 3 Alpha nodes SAN attached multisite cluster running OpenVMS v7.3-2 with v3 update applied.  Storaage is all EVA based.</description>
      <pubDate>Thu, 19 May 2005 19:51:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903060#M68516</guid>
      <dc:creator>Malcolm Wade</dc:creator>
      <dc:date>2005-05-19T19:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903061#M68517</link>
      <description>Malcolm,&lt;BR /&gt;&lt;BR /&gt;  Probably worth logging a case for this...&lt;BR /&gt;&lt;BR /&gt;That said, the most likely reason for the DECIVEFULL is insufficient, or excessively fragmented free space.&lt;BR /&gt;&lt;BR /&gt;In order to set up the volume for dynamic expansion, the bitmap needs to be expanded. Since it's a primitive file, there are limits on how fragmented it can be (no extension headers allowed), so if there's not enough disk space to create it "contiguous enough", you'll fail with an allocation failure. A bit like the old HEADERFULL errors trying to expand INDEXF.SYS.&lt;BR /&gt;&lt;BR /&gt;Obviously we need to have a closer look at the disk to confirm or deny this guess. Please log a case.</description>
      <pubDate>Thu, 19 May 2005 20:50:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903061#M68517</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-05-19T20:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903062#M68518</link>
      <description>Call has been logged.  It'll be in your queue by now :-)&lt;BR /&gt;&lt;BR /&gt;Ironically, volume was 'shrunk' yesterday via image backup and restoer etc etc yet the one that worked wasn't!</description>
      <pubDate>Thu, 19 May 2005 21:28:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903062#M68518</guid>
      <dc:creator>Malcolm Wade</dc:creator>
      <dc:date>2005-05-19T21:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903063#M68519</link>
      <description>&lt;BR /&gt;The problem is contiguous space.&lt;BR /&gt;&lt;BR /&gt;Run DFU and look at your largest free chunk.&lt;BR /&gt;The expansion you are attempting to do of course means bitmap.sys has to expand and&lt;BR /&gt;expand into a single chunk.  Parts of&lt;BR /&gt;a larger DCL as example follows.&lt;BR /&gt;&lt;BR /&gt;The solution is to:&lt;BR /&gt;&lt;BR /&gt;1)  Write a wrapper that makes calls to DFU&lt;BR /&gt;, finds the largest chunk size&lt;BR /&gt;&lt;BR /&gt;$ !&lt;BR /&gt;$ ! p1 = input DSA&lt;BR /&gt;$ !&lt;BR /&gt;$ get_largest_free_extent:&lt;BR /&gt;$ subroutine&lt;BR /&gt;$ dfu report 'p1' /output=dfu.tmp&lt;BR /&gt;$ type = "type"&lt;BR /&gt;$ pipe type dfu.tmp | search sys$pipe "largest free extent" | ( read sys$input a ; define/job/nolog tlog &amp;amp;a)&lt;BR /&gt;$ large_fe_line = f$trnlnm("tlog")&lt;BR /&gt;$ large_fe_line = f$edit(large_fe_line,"TRIM,COMPRESS")&lt;BR /&gt;$ largest_free_extent == f$element(0," ",f$edit(f$element(1,":",large_fe_line),"TRIM"))&lt;BR /&gt;$ delete/nolog dfu.tmp;&lt;BR /&gt;$!&lt;BR /&gt;$ endsubroutine&lt;BR /&gt;&lt;BR /&gt;2)  Do the right thing.  Not too large,&lt;BR /&gt;not too small but just right:&lt;BR /&gt;&lt;BR /&gt;$ call get_largest_free_extent 'shad_master_name'&lt;BR /&gt;$ else&lt;BR /&gt;$ freeblocks = f$getdvi(disk,"FREEBLOCKS")&lt;BR /&gt;$ cluster_size = f$getdvi(disk,"CLUSTER")&lt;BR /&gt;$ assign/user nla0: sys$output&lt;BR /&gt;$ assign/user nla0: sys$error&lt;BR /&gt;$ call get_largest_free_extent 'disk'&lt;BR /&gt;$ endif&lt;BR /&gt;$!&lt;BR /&gt;$ device = f$extract(1,f$length(disk),f$getdvi(disk,"FULLDEVNAM"))&lt;BR /&gt;$ maxblocks = f$getdvi(disk,"MAXBLOCK")&lt;BR /&gt;$!&lt;BR /&gt;$!&lt;BR /&gt;$ skip_set_vol_limit = "n"&lt;BR /&gt;$ if largest_free_extent .gt. 100000 &lt;BR /&gt;$ then &lt;BR /&gt;$ calculated_limit = "UNLIMITED"&lt;BR /&gt;$ else&lt;BR /&gt;$!&lt;BR /&gt;$ working_free = largest_free_extent - 100&lt;BR /&gt;$ if working_free .lt. 1000&lt;BR /&gt;$ then&lt;BR /&gt;$ skip_set_vol_limit = "y"&lt;BR /&gt;$ else&lt;BR /&gt;$ two_billion = 2022113280  ! Using large but not max. DCL doesn't like larger&lt;BR /&gt;$               calc_bitmap_size = (two_billion / cluster_size) / 4096&lt;BR /&gt;$ if calc_bitmap_size .gt. working_free&lt;BR /&gt;$               then&lt;BR /&gt;$                       calculated_limit = working_free * cluster_size * 4096&lt;BR /&gt;$               else&lt;BR /&gt;$                       calculated_limit = two_billion&lt;BR /&gt;$               endif&lt;BR /&gt;$ endif&lt;BR /&gt;$ endif&lt;BR /&gt;&lt;BR /&gt;3) I write it out for running later&lt;BR /&gt;&lt;BR /&gt;$ write wlog "$ else"&lt;BR /&gt;$ write wlog "$        mount/over=(id,shadow) ''device'"&lt;BR /&gt;$ if calculated_limit .eqs. "UNLIMITED"&lt;BR /&gt;$ then&lt;BR /&gt;$ write wlog "$        set volume/limit ''device'"&lt;BR /&gt;$ else&lt;BR /&gt;$ write wlog "$        set volume/limit=''calculated_limit' ''device'"&lt;BR /&gt;$ endif&lt;BR /&gt;$ write wlog "$        dismount ''device'"&lt;BR /&gt;$ write wlog "$ endif&lt;BR /&gt;$ write wlog "$!"&lt;BR /&gt;$ else&lt;BR /&gt;$ write sys$output ""&lt;BR /&gt;$ write sys$output " Cannot set volume limit on ''device'"&lt;BR /&gt;$ write sys$output " The largest free extent on that volume is:  ''largest_free_extent'"&lt;BR /&gt;$ write sys$output ""&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;What you see above is part of a larger&lt;BR /&gt;routine that is creating a routine.&lt;BR /&gt;&lt;BR /&gt;When you are doing several hundred volumes&lt;BR /&gt;you kind of want to automate things.&lt;BR /&gt;Precious downtime and all that.&lt;BR /&gt;&lt;BR /&gt;It is obvious there &lt;BR /&gt;are dangling elses and there is probably&lt;BR /&gt;a mismatch on endifs.&lt;BR /&gt;&lt;BR /&gt;One final note, I picked an arbitrary 100000&lt;BR /&gt;blocks as a cutoff , bitmap.sys won't get&lt;BR /&gt;larger than 65535 allocated.  You could tweek&lt;BR /&gt;the logic to be precise such that&lt;BR /&gt;if there was x contiguous free and bitmaps.sys calculated expansion is y&lt;BR /&gt;, etc... &lt;BR /&gt;&lt;BR /&gt;I just wanted it to work.&lt;BR /&gt;&lt;BR /&gt;Rob&lt;BR /&gt;</description>
      <pubDate>Thu, 19 May 2005 21:46:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903063#M68519</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-19T21:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903064#M68520</link>
      <description>&lt;BR /&gt;Gee - should have paid better attention.&lt;BR /&gt;I ran into failures on &lt;BR /&gt;&lt;BR /&gt;$ set volume/limit $1$dgannn&lt;BR /&gt;&lt;BR /&gt;So if anyone runs into that...&lt;BR /&gt;&lt;BR /&gt;Rob</description>
      <pubDate>Thu, 19 May 2005 21:50:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903064#M68520</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-19T21:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903065#M68521</link>
      <description>&lt;BR /&gt;I'm losing it.. I am distracted by surroundings..&lt;BR /&gt;&lt;BR /&gt;You did this:&lt;BR /&gt;&lt;BR /&gt;Allpriv&amp;gt; set vol/limit DSA224:&lt;BR /&gt;%SET-E-NOTSET, error modifying _DSA224:&lt;BR /&gt;-SYSTEM-W-DEVICEFULL, device full; allocation failure&lt;BR /&gt;&lt;BR /&gt;That isn't correct.  You have to have a physical disk mounted privately - see the example snippets I provided and search for&lt;BR /&gt;set volume/limit here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/doc/732FINAL/DOCUMENTATION/PDF/aa-pvxmj-te.PDF" target="_blank"&gt;http://h71000.www7.hp.com/doc/732FINAL/DOCUMENTATION/PDF/aa-pvxmj-te.PDF&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 19 May 2005 21:59:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903065#M68521</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-19T21:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903066#M68522</link>
      <description>Rob,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;That isn't correct. You have to have a physical disk mounted privately - see the example snippets I provided and search for&lt;BR /&gt;set volume/limit here:&lt;BR /&gt;&lt;BR /&gt;  Sorry, not true! Yes the volume needs to be mounted privately, but you CAN mount shadow sets privately and you CAN SET VOL/LIMIT a shadow set (DSA device). &lt;BR /&gt;&lt;BR /&gt;  I've been able to reproduce Malcolm's symptom on a DSA device by fragmenting a disk.&lt;BR /&gt;</description>
      <pubDate>Thu, 19 May 2005 22:27:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903066#M68522</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-05-19T22:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903067#M68523</link>
      <description>&lt;BR /&gt;Hmmmm ... works with DSAs?  &lt;BR /&gt;Maybe so.  But it appears&lt;BR /&gt;the documentation has no hints or indications&lt;BR /&gt;it works that way:&lt;BR /&gt;&lt;BR /&gt;dismounting a disk.&lt;BR /&gt;To use the SET VOLUME/LIMIT command to allocate extra bitmap space, the disk must be mounted&lt;BR /&gt;privately. However, once allocated, the volume can be expanded while the disk is mounted as shareable&lt;BR /&gt;(MOUNT/SHARE).&lt;BR /&gt;You can allocate additional bitmap space whether or not the physical volume has room for expansion. The&lt;BR /&gt;commands for allocating extra bitmap size and for expanding the volume size are available in OpenVMS&lt;BR /&gt;Alpha Version 7.3â  2. Volumes that use DVE can be used by any AlphaServer or VAX system running&lt;BR /&gt;OpenVMS Version 7.2 or later. The following command allocates extra bitmap size on a new volume:&lt;BR /&gt;$ INITIALIZE/LIMIT $1$DGAnnn: ! Allocates 1 TB bitmap&lt;BR /&gt;The following command allocates extra bitmap size on a mounted volume:&lt;BR /&gt;$ SET VOLUME/LIMIT $1$DGAnnn&lt;BR /&gt;The default /LIMIT size for both commands is 1 TB, which is also the maximum size currently supported on&lt;BR /&gt;OpenVMS. In special circumstances, you may want to specify less.&lt;BR /&gt;When additional physical storage is made available (either by adding a larger device to the shadow set and&lt;BR /&gt;removing the smaller member, or by increasing the size on the storage subsystem), you can then enter the&lt;BR /&gt;&lt;BR /&gt;----&lt;BR /&gt;&lt;BR /&gt;I'm seeing a number of references to "disk"&lt;BR /&gt;and physical storage, the examples revolve&lt;BR /&gt;around DGAs.. etc.  Perhaps the shadowing&lt;BR /&gt;doc folks need to include examples of&lt;BR /&gt;DSAs?  Or was that a deliberate oversight?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;But you mention fragmentation... yes you&lt;BR /&gt;are correct - that's&lt;BR /&gt;the only time the set volume/limit fails as&lt;BR /&gt;the bitmap is fragmented, here is an&lt;BR /&gt;email from engineering:&lt;BR /&gt;&lt;BR /&gt;   "In the case of SET VOLUME /LIMIT, the XQP needs to find enough contiguous space on the volume to accommodate the new BITMAP.SYS. If the contiguous space is not available the operation fails with SS$_DEVICEFULL".&lt;BR /&gt;&lt;BR /&gt;         &lt;BR /&gt;        It looks like either workaround should work if you see this behavior again on a fragmented volume (compressing or using the procedure below [which we came up with&lt;BR /&gt;and polished]).&lt;BR /&gt;&lt;BR /&gt;         &lt;BR /&gt;        Name GoesHere&lt;BR /&gt;        HP Services &lt;BR /&gt;        Storage Technology Center &lt;BR /&gt;        Mission Critical Solutions Center &lt;BR /&gt;        Business phone (719) 59n-nnnn &lt;BR /&gt;&lt;BR /&gt;        As always, please let me know if you&lt;BR /&gt;&lt;BR /&gt;--- &lt;BR /&gt;&lt;BR /&gt;Since it is a fragmentation problem, the&lt;BR /&gt;example DCL works around the problem.&lt;BR /&gt;&lt;BR /&gt;There is another way of course - trial and&lt;BR /&gt;error.  Been there - done that.&lt;BR /&gt;&lt;BR /&gt;Ro</description>
      <pubDate>Thu, 19 May 2005 23:00:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903067#M68523</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-19T23:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903068#M68524</link>
      <description>&lt;BR /&gt;Hey, can I get a hat now?&lt;BR /&gt;I don't want fig leaves - they are goofy&lt;BR /&gt;looking.&lt;BR /&gt;&lt;BR /&gt;Rob</description>
      <pubDate>Thu, 19 May 2005 23:02:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903068#M68524</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-19T23:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903069#M68525</link>
      <description>Output from DFU is attached; it doesn't look fragmented to me!</description>
      <pubDate>Thu, 19 May 2005 23:14:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903069#M68525</guid>
      <dc:creator>Malcolm Wade</dc:creator>
      <dc:date>2005-05-19T23:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903070#M68526</link>
      <description>&lt;BR /&gt;Nope.. not at all.&lt;BR /&gt;&lt;BR /&gt;Bust out one shadowset member and try &lt;BR /&gt;set volume/limit&lt;BR /&gt;with ust a physical mounted (like the&lt;BR /&gt;documentation shows).&lt;BR /&gt;&lt;BR /&gt;Rob&lt;BR /&gt;</description>
      <pubDate>Thu, 19 May 2005 23:19:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903070#M68526</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-19T23:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903071#M68527</link>
      <description>Been there, done that, same problem!&lt;BR /&gt;&lt;BR /&gt;hp are investigating.&lt;BR /&gt;&lt;BR /&gt;Malcolm</description>
      <pubDate>Thu, 19 May 2005 23:23:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903071#M68527</guid>
      <dc:creator>Malcolm Wade</dc:creator>
      <dc:date>2005-05-19T23:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903072#M68528</link>
      <description>This case has been reported to engineering&lt;BR /&gt;&lt;BR /&gt;  It looks like the expansion limit on this volume HAS been increased to about the right ballpark given the volume and cluster sizes.&lt;BR /&gt;&lt;BR /&gt;  I suspect we've got a boundary condition in the arithmetic for this specific case that is resulting in a bogus message.&lt;BR /&gt;&lt;BR /&gt;  It was a "W" level message which means "the operation might have worked, but we're not certain". I'll update this thread when we find out for sure.</description>
      <pubDate>Thu, 19 May 2005 23:46:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903072#M68528</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-05-19T23:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903073#M68529</link>
      <description>&lt;BR /&gt;Ah.. your show dev/full shows that&lt;BR /&gt;expansion size is already 2 billion.  No&lt;BR /&gt;wonder it is failing.&lt;BR /&gt;&lt;BR /&gt;    Total blocks           104857600    Sectors per track                   128&lt;BR /&gt;    Total cylinders             6400    Tracks per cylinder                 128&lt;BR /&gt;    Logical Volume Size    104857600    Expansion Size Limit         2150449152&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here is what I think you are trying to&lt;BR /&gt;do.. expand to a larger drive.  Are one&lt;BR /&gt;of the two drives in that shadowset&lt;BR /&gt;larger than the other?&lt;BR /&gt;&lt;BR /&gt;Dismount the smaller (and skip&lt;BR /&gt;to set_vol: below).  &lt;BR /&gt;&lt;BR /&gt;If they are the&lt;BR /&gt;same size, dismount one, add a larger&lt;BR /&gt;drive.  Copy completes, dismount the smaller&lt;BR /&gt;drive.  &lt;BR /&gt;&lt;BR /&gt;Now expand the shadowset to the size&lt;BR /&gt;of the remaining large drive (and watch&lt;BR /&gt;logical volume size go to total block&lt;BR /&gt;size):&lt;BR /&gt;&lt;BR /&gt;$ set_vol:&lt;BR /&gt;$ set volume/size dsannn:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rob&lt;BR /&gt;</description>
      <pubDate>Fri, 20 May 2005 00:02:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903073#M68529</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-20T00:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903074#M68530</link>
      <description>&lt;BR /&gt;Ah ... modify that&lt;BR /&gt;last one, I'm missing a point. &lt;BR /&gt;&lt;BR /&gt;Just dismount a drive and add a larger&lt;BR /&gt;one, copy completes, dismount the smaller&lt;BR /&gt;and set volume/size.</description>
      <pubDate>Fri, 20 May 2005 00:05:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903074#M68530</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-20T00:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903075#M68531</link>
      <description>The disk cluster size is also relevant to this problem. Try init the disk with a smaller cluster size.</description>
      <pubDate>Fri, 20 May 2005 04:18:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903075#M68531</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2005-05-20T04:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903076#M68532</link>
      <description>Ian,&lt;BR /&gt;&lt;BR /&gt;as I understand, a _BIG_ clustersize is NOT an issue!&lt;BR /&gt;Only clustersizes below 8 limits the LIMIT &amp;amp; SIZE values to (1/8 TB) * (clustersize).&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Fri, 20 May 2005 05:27:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903076#M68532</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-05-20T05:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903077#M68533</link>
      <description>I am told that cluster size &amp;gt; 8 then there is a problem. Try with cluster size = 8.</description>
      <pubDate>Fri, 20 May 2005 07:39:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903077#M68533</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2005-05-20T07:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: SET VOLUME/LIMIT failing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903078#M68534</link>
      <description>This has been reported to OpenVMS engineering who have confirmed this is a minor bug in XQP. It's in the process of being fixed.&lt;BR /&gt;&lt;BR /&gt;The bug is purely cosmetic - the message is bogus. &lt;BR /&gt;&lt;BR /&gt;The first SET VOLUME/LIMIT on a volume with a cluster size greater than 8 works correctly and no message is issued. The second and subsequent SET VOLUME/LIMIT commands don't change anything, since the volume is already at the maximum expansion limit. However, the commands issue the message: &lt;BR /&gt;&lt;BR /&gt;%SET-E-NOTSET, error modifying _DSA224:&lt;BR /&gt;-SYSTEM-W-DEVICEFULL, device full; allocation failure&lt;BR /&gt;&lt;BR /&gt;The command should just return (as it does for cluster size 8 and lower).&lt;BR /&gt;&lt;BR /&gt;Note that there are circumstances where the command will legitimately fail with DEVICEFULL - that means there is insufficient contiguous space for the new BITMAP.SYS file. I imagine this would be rare in the real world. Simple to check... see SHOW DEV/FULL and check that the expansion limit. The exact value for a fully expanded volume will vary with cluster size, but for maximum expansion it should be a 10 digit number beginning with 21. If you're already there, you can ignore the message. If not, then BITMAP.SYS needs a contiguous extent larger than 65536*8/cluster-size blocks.</description>
      <pubDate>Tue, 24 May 2005 20:53:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-failing/m-p/4903078#M68534</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-05-24T20:53:22Z</dc:date>
    </item>
  </channel>
</rss>

