<?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: IO Count in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907878#M81998</link>
    <description>You can get the IO count to the tape drive by doing "SHOW DEVICE/FUL tape" both before and after and computing the difference.  If you want to see how many IOs the process did, and assuming you are using the BACKUP command (as opposed to a software package that spawns a sub process), then use "SHOW PROC/ACC" both before and after the command.  The IOs to disk may be a bit more difficult, in that disk IOs may be caused by other processes.</description>
    <pubDate>Fri, 17 Jun 2005 15:06:07 GMT</pubDate>
    <dc:creator>Garry Fruth</dc:creator>
    <dc:date>2005-06-17T15:06:07Z</dc:date>
    <item>
      <title>IO Count</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907877#M81997</link>
      <description>How can I get io count and bytes count after a backup operation on a tape device ?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Jun 2005 14:18:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907877#M81997</guid>
      <dc:creator>Denis Michaud</dc:creator>
      <dc:date>2005-06-17T14:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: IO Count</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907878#M81998</link>
      <description>You can get the IO count to the tape drive by doing "SHOW DEVICE/FUL tape" both before and after and computing the difference.  If you want to see how many IOs the process did, and assuming you are using the BACKUP command (as opposed to a software package that spawns a sub process), then use "SHOW PROC/ACC" both before and after the command.  The IOs to disk may be a bit more difficult, in that disk IOs may be caused by other processes.</description>
      <pubDate>Fri, 17 Jun 2005 15:06:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907878#M81998</guid>
      <dc:creator>Garry Fruth</dc:creator>
      <dc:date>2005-06-17T15:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: IO Count</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907879#M81999</link>
      <description>Denis,&lt;BR /&gt;&lt;BR /&gt;You can get the operation count for a device using the F$GETDVI lexical function.&lt;BR /&gt;&lt;BR /&gt;The byte count is somewhat harder. You can get the byte counts for the process, but that will be a crude approximation whose accuracy will depend on the details of file size and other factors including fragmentation.&lt;BR /&gt;&lt;BR /&gt;Possibly, you could do a BACKUP/LIST command and analyze the output (both the blocksize and the number of blocks are part of the output).&lt;BR /&gt;&lt;BR /&gt;I hope that the above 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>Fri, 17 Jun 2005 15:11:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907879#M81999</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2005-06-17T15:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: IO Count</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907880#M82000</link>
      <description>Try the follwoing qualifiers:&lt;BR /&gt;/LOG&lt;BR /&gt;/JOURNAL [=filename]&lt;BR /&gt;&lt;BR /&gt;SPAWN of a procedure that runs BACKUP, consult ACC/FULL afterwards (limit output with /SINCE=time of start /BEFORE==end of job. /TYPE=SUBPROCESS /USER= you), the output of tyhe job will show info (including somewhat more). You _could_ force SET ACC/IMAGE before and SET ACC/NOIMAGE when done and look for BACKUP.EXE itself&lt;BR /&gt;&lt;BR /&gt;SHOW PROCESS/FULL to get current state, run backup and do the same; calculate&lt;BR /&gt;&lt;BR /&gt;These two are not exact, but the number of IO/s and bytes written by backup will be huge compared to the numbers extra for startup and initialisation. &lt;BR /&gt;&lt;BR /&gt;(Running backup/journal at the moment, will tell results when finished)</description>
      <pubDate>Fri, 17 Jun 2005 15:40:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907880#M82000</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2005-06-17T15:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: IO Count</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907881#M82001</link>
      <description>If you submit the job, the accounting information will tell you the total number of direct and buffered IOs.&lt;BR /&gt;&lt;BR /&gt;If you do it interactively, you will have to search for the accounting record, and it will give you that information.&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Jun 2005 16:33:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907881#M82001</guid>
      <dc:creator>comarow</dc:creator>
      <dc:date>2005-06-17T16:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: IO Count</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907882#M82002</link>
      <description>It's a bit hard.&lt;BR /&gt;Assuming intactive backup you can store your process counter&lt;BR /&gt;$ SH PROC /QUOTA/OUT=myQuotaBefore.log&lt;BR /&gt;you can make backup and then review quotas&lt;BR /&gt;$ SH PROC /QUOTA/OUT=myQuotaAfter.log&lt;BR /&gt;However, counters are either disk either tape worths.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 18 Jun 2005 02:23:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907882#M82002</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-06-18T02:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: IO Count</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907883#M82003</link>
      <description>thanks</description>
      <pubDate>Mon, 26 Feb 2007 11:00:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/io-count/m-p/4907883#M82003</guid>
      <dc:creator>Denis Michaud</dc:creator>
      <dc:date>2007-02-26T11:00:19Z</dc:date>
    </item>
  </channel>
</rss>

