<?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 in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978434#M76482</link>
    <description>Hi Volker,&lt;BR /&gt;   Can you expound your statement "To obtain the file version number, use F$PARSE(...,"VERSION")"?&lt;BR /&gt;&lt;BR /&gt;   What's the correct syntax to get the file version number?</description>
    <pubDate>Mon, 15 May 2006 03:35:30 GMT</pubDate>
    <dc:creator>IFX_1</dc:creator>
    <dc:date>2006-05-15T03:35:30Z</dc:date>
    <item>
      <title>File version limit</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978428#M76476</link>
      <description>Hi All,&lt;BR /&gt;   Do you know of any lexical where I can get the latest file revision number？</description>
      <pubDate>Thu, 11 May 2006 02:48:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978428#M76476</guid>
      <dc:creator>IFX_1</dc:creator>
      <dc:date>2006-05-11T02:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: File version limit</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978429#M76477</link>
      <description>Ronald,&lt;BR /&gt;&lt;BR /&gt;Do you mean "revision" or "version"?&lt;BR /&gt;&lt;BR /&gt;$ write sys$output f$parse(f$search("sys$login:login.com"),,,"version")&lt;BR /&gt;;194&lt;BR /&gt;$ write sys$output f$file_attributes("sys$login:login.com","rvn")&lt;BR /&gt;1&lt;BR /&gt;&lt;BR /&gt;Dave&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 May 2006 02:56:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978429#M76477</guid>
      <dc:creator>David B Sneddon</dc:creator>
      <dc:date>2006-05-11T02:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: File version limit</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978430#M76478</link>
      <description>Ronald,&lt;BR /&gt;&lt;BR /&gt;or do you mean the FILE VERSION LIMIT ?&lt;BR /&gt;&lt;BR /&gt;$ write sys$output f$file_attributes("LOGIN.COM","VERLIMIT")&lt;BR /&gt;32767&lt;BR /&gt;&lt;BR /&gt;(with 32767 indicating no version limit set).&lt;BR /&gt;&lt;BR /&gt;The file version limit indicates, how many versions of the file may exist ($ HELP SET FILE/VERSION_LIMIT).&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Thu, 11 May 2006 03:13:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978430#M76478</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2006-05-11T03:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: File version limit</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978431#M76479</link>
      <description>Hi David,&lt;BR /&gt;   I refer to the file version number. Citing login.com;1, if I do &lt;BR /&gt;&lt;BR /&gt;write sys$output f$file_attributes("sys$login:login.com","rvn")&lt;BR /&gt;&lt;BR /&gt;The result should be 1. I try to use the above, I get 2 as result.</description>
      <pubDate>Thu, 11 May 2006 03:15:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978431#M76479</guid>
      <dc:creator>IFX_1</dc:creator>
      <dc:date>2006-05-11T03:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: File version limit</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978432#M76480</link>
      <description>Ronald,&lt;BR /&gt;&lt;BR /&gt;the RVN (=Revision number) indiciates, how often the existing file was accessed for WRITE.&lt;BR /&gt;&lt;BR /&gt;$ OPEN/READ/WRITE x LOGIN.COM&lt;BR /&gt;$ CLOSE x&lt;BR /&gt;&lt;BR /&gt;The RVN will have been updated by one.&lt;BR /&gt;&lt;BR /&gt;To obtain the file version number, use F$PARSE(...,"VERSION")&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Thu, 11 May 2006 03:22:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978432#M76480</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2006-05-11T03:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: File version limit</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978433#M76481</link>
      <description>Hi Ronald,&lt;BR /&gt;&lt;BR /&gt;You can also use relative version numbers.  For example,&lt;BR /&gt;&lt;BR /&gt;login.com;&lt;BR /&gt;login.com;0&lt;BR /&gt;&lt;BR /&gt;Both give the latest version&lt;BR /&gt;&lt;BR /&gt;login.com;-1&lt;BR /&gt;login.com;-2&lt;BR /&gt;&lt;BR /&gt;and so on provide previous versions of your file.  &lt;BR /&gt;&lt;BR /&gt;login.com;-0&lt;BR /&gt;&lt;BR /&gt;is the earliest version of the file. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Andy</description>
      <pubDate>Thu, 11 May 2006 10:58:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978433#M76481</guid>
      <dc:creator>Andy Bustamante</dc:creator>
      <dc:date>2006-05-11T10:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: File version limit</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978434#M76482</link>
      <description>Hi Volker,&lt;BR /&gt;   Can you expound your statement "To obtain the file version number, use F$PARSE(...,"VERSION")"?&lt;BR /&gt;&lt;BR /&gt;   What's the correct syntax to get the file version number?</description>
      <pubDate>Mon, 15 May 2006 03:35:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978434#M76482</guid>
      <dc:creator>IFX_1</dc:creator>
      <dc:date>2006-05-15T03:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: File version limit</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978435#M76483</link>
      <description>$ dir con2.log.&lt;BR /&gt;&lt;BR /&gt;Directory CNC_SCRATCH:[ROHW.ROHWEDDER]&lt;BR /&gt;&lt;BR /&gt;CON2.LOG;20&lt;BR /&gt;$ a=F$Search("con2.log")&lt;BR /&gt;$ write sys$output f$parse(a,,,"version")&lt;BR /&gt;;20&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Mon, 15 May 2006 04:03:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978435#M76483</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2006-05-15T04:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: File version limit</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978436#M76484</link>
      <description>Hi Ronald,&lt;BR /&gt;&lt;BR /&gt;I think what is meant is this:&lt;BR /&gt;&lt;BR /&gt;$ write sys$output f$parse ("SESSIONLOG.COM","[]",,"VERSION")&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;$ write sys$output f$parse ("SESSIONLOG.COM;-2","[]",,"VERSION")&lt;BR /&gt;;-2&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Dave Laurier</description>
      <pubDate>Mon, 15 May 2006 04:08:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978436#M76484</guid>
      <dc:creator>Dave Laurier</dc:creator>
      <dc:date>2006-05-15T04:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: File version limit</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978437#M76485</link>
      <description>This is how I do it...&lt;BR /&gt;&lt;BR /&gt;$ s = f$search("*.*")&lt;BR /&gt;$ xx= f$element(1,";",f$parse(s,,,"version","no_conceal"))&lt;BR /&gt;$ sh sym xx&lt;BR /&gt;XX = "3"&lt;BR /&gt;&lt;BR /&gt;Later I will add a condition to check file with file version nearly reach 32767.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 15 May 2006 04:35:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978437#M76485</guid>
      <dc:creator>IFX_1</dc:creator>
      <dc:date>2006-05-15T04:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: File version limit</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978438#M76486</link>
      <description>thanks.</description>
      <pubDate>Wed, 17 May 2006 23:11:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/file-version-limit/m-p/4978438#M76486</guid>
      <dc:creator>IFX_1</dc:creator>
      <dc:date>2006-05-17T23:11:26Z</dc:date>
    </item>
  </channel>
</rss>

