<?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: Timing queue jobs in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951253#M11629</link>
    <description>Martin,&lt;BR /&gt;&lt;BR /&gt;if this batch job does have a log file, you can easily find the start and end date with:&lt;BR /&gt;&lt;BR /&gt;$ DIR/DATE=(CRE,MOD) batch-log-file.LOG&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
    <pubDate>Mon, 26 Feb 2007 09:14:42 GMT</pubDate>
    <dc:creator>Volker Halle</dc:creator>
    <dc:date>2007-02-26T09:14:42Z</dc:date>
    <item>
      <title>Timing queue jobs</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951251#M11627</link>
      <description>I need to perform some simple performance timing of a batch job submitted to the batch queue. How is it possible to monitor when a job has completed and print a start and end time?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.</description>
      <pubDate>Mon, 26 Feb 2007 08:31:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951251#M11627</guid>
      <dc:creator>Martin Brindle</dc:creator>
      <dc:date>2007-02-26T08:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: Timing queue jobs</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951252#M11628</link>
      <description>If you have enabled the accounting, you will get some info.&lt;BR /&gt;&lt;BR /&gt;$ show acc&lt;BR /&gt;will tell you if you have accounting enabled&lt;BR /&gt;&lt;BR /&gt;If it is, you can get some info with&lt;BR /&gt;$ acc/fu/since=16:00/bef=17:00/out=a.tmp&lt;BR /&gt;if you job has run between 16:00 and 17:00&lt;BR /&gt;&lt;BR /&gt;You can refine with &lt;BR /&gt;/user=myuser&lt;BR /&gt;/queue=my_batch_queue&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;The best thing is to prepare some tools before you run the process&lt;BR /&gt;&lt;BR /&gt;You can find pquota.exe at&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/freeware/freeware40/pquota/" target="_blank"&gt;http://h71000.www7.hp.com/freeware/freeware40/pquota/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Put it somewhere, e.g. in disk:[dir]&lt;BR /&gt;define a symbol&lt;BR /&gt;$ pquota :== $ disk:[dir]pquota.exe&lt;BR /&gt;then you can do &lt;BR /&gt;$ pquota 204002B4&lt;BR /&gt;if you want to see the resources used by this process</description>
      <pubDate>Mon, 26 Feb 2007 09:07:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951252#M11628</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2007-02-26T09:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Timing queue jobs</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951253#M11629</link>
      <description>Martin,&lt;BR /&gt;&lt;BR /&gt;if this batch job does have a log file, you can easily find the start and end date with:&lt;BR /&gt;&lt;BR /&gt;$ DIR/DATE=(CRE,MOD) batch-log-file.LOG&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Mon, 26 Feb 2007 09:14:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951253#M11629</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2007-02-26T09:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Timing queue jobs</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951254#M11630</link>
      <description>Thanks for the responses. However, I realised the answer was in my question, so I came up with this, which I called timer.com&lt;BR /&gt;&lt;BR /&gt;$ SHOW TIME&lt;BR /&gt;$ @'P1' 'P2' 'P3' 'P4' 'P5' 'P6' 'P7' 'P8'&lt;BR /&gt;$ SHOW TIME&lt;BR /&gt;&lt;BR /&gt;I then ran timer.com passing the name of the script to benchmark as the first parameter and then subsequyently all of it's parameters behind. It seems to work really well.</description>
      <pubDate>Mon, 26 Feb 2007 09:28:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951254#M11630</guid>
      <dc:creator>Martin Brindle</dc:creator>
      <dc:date>2007-02-26T09:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Timing queue jobs</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951255#M11631</link>
      <description>Martin,&lt;BR /&gt;&lt;BR /&gt;this might be more than you want, but if you add this to SYS$SYLOGIN:&lt;BR /&gt;&lt;BR /&gt;$ if f$getjpi("","mode") .eqs. "BATCH" &lt;BR /&gt;$ then&lt;BR /&gt;$    set prefix "!11%T "&lt;BR /&gt;$ endif&lt;BR /&gt;&lt;BR /&gt;than the DCL "prompt" in the LOG files will be the first 11 chars of the time (hh:mm:ss.cc) of the time that line is executed.&lt;BR /&gt;&lt;BR /&gt;We simply LOVE it for tracing performance issues!&lt;BR /&gt;&lt;BR /&gt;hth&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>Mon, 26 Feb 2007 09:33:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951255#M11631</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2007-02-26T09:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Timing queue jobs</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951256#M11632</link>
      <description>&lt;!--!*#--&gt;I have attached my MEASURE.COM procedure which outputs elapsed time, I/O counts, page faults and CPU use for any command line.&lt;BR /&gt;&lt;BR /&gt;@MEASURE a command line up to 8 parameters&lt;BR /&gt;Elapsed secs:     2.90    DIO:    20    BIO:  4461    PGF:    82    CPU:    0.16</description>
      <pubDate>Mon, 26 Feb 2007 17:05:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/timing-queue-jobs/m-p/3951256#M11632</guid>
      <dc:creator>Jess Goodman</dc:creator>
      <dc:date>2007-02-26T17:05:10Z</dc:date>
    </item>
  </channel>
</rss>

