<?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: File Version Limit on VMS in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163180#M61608</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can use $set file/version_limit to limit number of versions of any file. Once the no. of files crosses this number, earlier files got deleted. You can set the same for directories. &lt;BR /&gt;&lt;BR /&gt;See online help on SET FILE/VERSION_LIMIT for more details.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Lokesh</description>
    <pubDate>Tue, 13 Jan 2004 11:57:38 GMT</pubDate>
    <dc:creator>Lokesh_2</dc:creator>
    <dc:date>2004-01-13T11:57:38Z</dc:date>
    <item>
      <title>File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163179#M61607</link>
      <description>Does anyone know of a utility that exists that will help manage the file version limit issue on VMS (no more than 32767)?  I have written a utility in DCL that searches for files that have a version above 10,000 and notifies me if it finds any but its less than perfect.&lt;BR /&gt;&lt;BR /&gt;I checked the VMS Freeware CD 5 but did not find anything that matched what I was looking for.&lt;BR /&gt;&lt;BR /&gt;Any thoughts?</description>
      <pubDate>Tue, 13 Jan 2004 11:41:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163179#M61607</guid>
      <dc:creator>M C_1</dc:creator>
      <dc:date>2004-01-13T11:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163180#M61608</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can use $set file/version_limit to limit number of versions of any file. Once the no. of files crosses this number, earlier files got deleted. You can set the same for directories. &lt;BR /&gt;&lt;BR /&gt;See online help on SET FILE/VERSION_LIMIT for more details.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Lokesh</description>
      <pubDate>Tue, 13 Jan 2004 11:57:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163180#M61608</guid>
      <dc:creator>Lokesh_2</dc:creator>
      <dc:date>2004-01-13T11:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163181#M61609</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Version_limit does not help in this case, it just meams your file will not have more than x versions at any one time on disk, but the number will increase anyhow.&lt;BR /&gt;&lt;BR /&gt;You might want to have a look at &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://dcl.openvms.org/stories.php?story=03/11/03/5533108" target="_blank"&gt;http://dcl.openvms.org/stories.php?story=03/11/03/5533108&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Haven't tested this by myself...&lt;BR /&gt;&lt;BR /&gt;Greetings, Martin</description>
      <pubDate>Tue, 13 Jan 2004 12:11:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163181#M61609</guid>
      <dc:creator>Martin P.J. Zinser</dc:creator>
      <dc:date>2004-01-13T12:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163182#M61610</link>
      <description>Yes, I did see the help on SET FILE/VER and that works as expected however, the problem I face is once a file get created and its at version 32767 the next creation of the file fails.  I was looking for a utility that would search my disks looking for files that could potentially run into this problem.&lt;BR /&gt;&lt;BR /&gt;For example:&lt;BR /&gt;&lt;BR /&gt;NODEX$ create test.txt;32765&lt;BR /&gt;EXIT&lt;BR /&gt;TCHID1$ set file/ver=2 test.txt&lt;BR /&gt;TCHID1$ dir test.txt&lt;BR /&gt;&lt;BR /&gt;Directory TECH:[SYS]&lt;BR /&gt;&lt;BR /&gt;TEST.TXT;32765&lt;BR /&gt;&lt;BR /&gt;Total of 1 file.&lt;BR /&gt;NODEX$ create test.txt&lt;BR /&gt; Exit&lt;BR /&gt;NODEX$ dir test.txt&lt;BR /&gt;&lt;BR /&gt;Directory TECH:[SYS]&lt;BR /&gt;&lt;BR /&gt;TEST.TXT;32766      TEST.TXT;32765&lt;BR /&gt;&lt;BR /&gt;Total of 2 files.&lt;BR /&gt;NODEX$ create test.txt&lt;BR /&gt; Exit&lt;BR /&gt;NODEX$ dir test.txt&lt;BR /&gt;&lt;BR /&gt;Directory TECH:[SYS]&lt;BR /&gt;&lt;BR /&gt;TEST.TXT;32767      TEST.TXT;32766&lt;BR /&gt;&lt;BR /&gt;Total of 2 files.&lt;BR /&gt;NODEX$ create test.txt&lt;BR /&gt;&lt;BR /&gt;NODEX$ create test.txt&lt;BR /&gt;%CREATE-E-OPENOUT, error opening TECH:[SYSMRC]TEST.TXT; as output&lt;BR /&gt;-RMS-E-CRE, ACP file create failed&lt;BR /&gt;-SYSTEM-W-BADFILEVER, bad file version number&lt;BR /&gt;&lt;BR /&gt;Thanks - MC</description>
      <pubDate>Tue, 13 Jan 2004 12:14:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163182#M61610</guid>
      <dc:creator>M C_1</dc:creator>
      <dc:date>2004-01-13T12:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163183#M61611</link>
      <description>Martin - This is more what I am looking for.  Only I wanted somthing that would search the disks rather than one file.  I guess I could modify it to work for the disks.&lt;BR /&gt;&lt;BR /&gt;Thanks for the info&lt;BR /&gt;&lt;BR /&gt;MC</description>
      <pubDate>Tue, 13 Jan 2004 12:18:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163183#M61611</guid>
      <dc:creator>M C_1</dc:creator>
      <dc:date>2004-01-13T12:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163184#M61612</link>
      <description>I think DFU does the job, among many things.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/freeware/freeware50/dfu027a/" target="_blank"&gt;http://h71000.www7.hp.com/freeware/freeware50/dfu027a/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The doc is at &lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/freeware/freeware50/dfu027a/dfu027a.html" target="_blank"&gt;http://h71000.www7.hp.com/freeware/freeware50/dfu027a/dfu027a.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You can write some Dcl using f$device to find your disks, f$getdvi to check it is mounted and available, and then issue a DFU  search disk /version=(min=10000,max=32767)</description>
      <pubDate>Tue, 13 Jan 2004 13:10:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163184#M61612</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2004-01-13T13:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163185#M61613</link>
      <description>We use a little DCL procedure during login to check for logfiles, purge them to a selectable number and rename the rest to version 1 up to N. I've attached it, may be it has some value to you.</description>
      <pubDate>Wed, 14 Jan 2004 00:57:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163185#M61613</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2004-01-14T00:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163186#M61614</link>
      <description>Basiccally, if you just need the version number:&lt;BR /&gt;&lt;BR /&gt;FILE = f$search(&lt;YOUR filespec=""&gt;)&lt;BR /&gt;VERS = f$parse (FILE,,,"VERSION") - ";"&lt;BR /&gt;&lt;BR /&gt;vrs will now hold the version number.&lt;BR /&gt;&lt;BR /&gt;Willem&lt;/YOUR&gt;</description>
      <pubDate>Wed, 14 Jan 2004 02:44:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163186#M61614</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2004-01-14T02:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163187#M61615</link>
      <description>A newer DFU can be found &lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/freeware/freeware60/dfu/" target="_blank"&gt;http://h71000.www7.hp.com/freeware/freeware60/dfu/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This utility is very handy and should be installed on every VMS system (you can just copy DFU.EXE - at least with V2.7 that worked). Parhaps hp could start including it with the base o.s.</description>
      <pubDate>Wed, 14 Jan 2004 04:50:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163187#M61615</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2004-01-14T04:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163188#M61616</link>
      <description>Hello from Holland.&lt;BR /&gt;&lt;BR /&gt;Just testing ALL files on ALL disks for their version number wil be a VERY heavy job on bigger systems!.&lt;BR /&gt;We hitchhike a little on the fact that we make listings during Backup, and a little DCL procedure that SEARCHes those listings for ";3"   (all files with versions starting with the digit 3) into a file, then processing this file to keep just those with a string length 5 after the semicolon gives all files with version over 30000.&lt;BR /&gt;IF you are using Backup with .LIS=xx, then this is MUCH more efficient.&lt;BR /&gt;I know (from Guy Peleg, who is doing DCL extensions) DCL is getting and extra command or qualifier to address just this problem, but I am not sure whether it is already in 7.3-2 (we're still waiting for that), or if it will be in an ECO kit.  So maybe just a little patience (and an update/upgrade) will do the job as well or better&lt;BR /&gt;When I get back in the office, I'll attach our procedure.</description>
      <pubDate>Wed, 14 Jan 2004 05:44:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163188#M61616</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2004-01-14T05:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163189#M61617</link>
      <description>Guy Peleg stated (sept 2003, in The Netherlands, the audience applauded) :&lt;BR /&gt;&lt;BR /&gt;$ DIR /SELECT=VERSION=MIN=xxx&lt;BR /&gt;$ DIR /SELECT=VERSION=MAX=yyy&lt;BR /&gt;$ DIR /SELECT=VERSION=(MIN=xxx,MAX=yyy)&lt;BR /&gt;&lt;BR /&gt;was a "Post v7.3-2 feature"&lt;BR /&gt;He completed it just NOT in time to be included in 7.3-2&lt;BR /&gt;However : you could ask him privately to get it for 7.3-2 (and prior versions too ???,forgot it)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Jan 2004 06:51:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163189#M61617</guid>
      <dc:creator>Jan Nuyt</dc:creator>
      <dc:date>2004-01-14T06:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163190#M61618</link>
      <description>MC,&lt;BR /&gt;   As Labadie and Ian Miller wrote, DFU is your solution do not try anything else untill you tried (and liked) that.&lt;BR /&gt;&lt;BR /&gt;Jan van den Ende,&lt;BR /&gt;&amp;gt; Just testing ALL files on ALL disks for their version number wil be a VERY heavy job on bigger systems!.&lt;BR /&gt;&lt;BR /&gt;It will be heavy, but using DFU is will be counted in seconds, not minutes or hours.&lt;BR /&gt;The magic there is that DFU scan the indexf.sys file sequentially which will go quick as idexf.sys has minimal fragmentation.&lt;BR /&gt;&lt;BR /&gt;Any DIRECTORY based solution HAS to be slow as is follows the directory structure randomly over the disk to finally randomly read indexf.sys. &lt;BR /&gt;&lt;BR /&gt;Hmmm, Come to think of it... as long as you specify just the name and/or file_id for the directory output, then there is no need to visit the file headers. Do NOT ask fo size or dates in a first selection pass.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Ian,&lt;BR /&gt;&amp;gt;  Parhaps hp could start including it with the base o.s. &lt;BR /&gt;&lt;BR /&gt;There was talk of that, some years ago, but it hasn't happened yet, and IMHO there is only little need as freeware is so accesible.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Groetjes,&lt;BR /&gt;Hein.</description>
      <pubDate>Wed, 14 Jan 2004 10:18:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163190#M61618</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-01-14T10:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163191#M61619</link>
      <description>Well guys (any galls?), I promised our routine.&lt;BR /&gt;Actually, it is a subroutine in a much bigger checking routine, so I had to take it out; and I also had to translate the messages and comments into English and explain some more.&lt;BR /&gt;&lt;BR /&gt;So, here it is. &lt;BR /&gt;As usual, use is YOUR responsability, don't blame us.&lt;BR /&gt;Also as usual, consider the AUTHOR section as unremovable part.&lt;BR /&gt;&lt;BR /&gt;The extension is ",TXT" because of firewall settings, so you probably will want to rename that.&lt;BR /&gt;&lt;BR /&gt;Good luck, have fun, I hope it works for as well as for us.&lt;BR /&gt;&lt;BR /&gt;Jan</description>
      <pubDate>Thu, 15 Jan 2004 07:28:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163191#M61619</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2004-01-15T07:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: File Version Limit on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163192#M61620</link>
      <description>To everyone, thanks for the support and suggestions.  There are a lot of good ideas here and I am sure that I can solve my problem now.  &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;MC</description>
      <pubDate>Thu, 15 Jan 2004 08:50:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit-on-vms/m-p/3163192#M61620</guid>
      <dc:creator>M C_1</dc:creator>
      <dc:date>2004-01-15T08:50:33Z</dc:date>
    </item>
  </channel>
</rss>

