<?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: ANALYZE/SYSTEM Information in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416759#M65489</link>
    <description>&lt;BR /&gt;There is no direct way, but as John says, a pipe should get you close enough.&lt;BR /&gt;&lt;BR /&gt;I guess you dismissed the idea of creating a temp command file, with the commands to execute, and activate that?&lt;BR /&gt;&lt;BR /&gt;$open/write tmp tmp.com&lt;BR /&gt;$write tmp "$analyze /system"&lt;BR /&gt;$write tmp "show ...."&lt;BR /&gt;$close tmp&lt;BR /&gt;$@tmp&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Now you would also expect as an option is&lt;BR /&gt;to just put the SDA commands in a file and point sys$input to that.&lt;BR /&gt;&lt;BR /&gt;$create sda.tmp&lt;BR /&gt;show ....&lt;BR /&gt;$defi/user sys$input sda.tmp&lt;BR /&gt;$anal/system&lt;BR /&gt;&lt;BR /&gt;This should work, but fails on some VMS versions with "%SYSTEM-F-IVDEVNAM, invalid device name". It fails on my old 7.1 system.&lt;BR /&gt;This is because SDA tried to be smart about page size. So there's a $GETDVI to determine page size, line width,.. which fails on a disk device. Maybe it works on you VMS version?&lt;BR /&gt;&lt;BR /&gt;Hein,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Sun, 07 Nov 2004 18:11:17 GMT</pubDate>
    <dc:creator>Hein van den Heuvel</dc:creator>
    <dc:date>2004-11-07T18:11:17Z</dc:date>
    <item>
      <title>ANALYZE/SYSTEM Information</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416756#M65486</link>
      <description>What is the proper way to display ANALYZE/SYSTEM command output using a single DCL command line?  For example, is there an MCR version of ANALYZE/SYSTEM?</description>
      <pubDate>Sun, 07 Nov 2004 16:49:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416756#M65486</guid>
      <dc:creator>Mario Abruzzi</dc:creator>
      <dc:date>2004-11-07T16:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: ANALYZE/SYSTEM Information</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416757#M65487</link>
      <description>not as far as I know. What are you wanting to do?</description>
      <pubDate>Sun, 07 Nov 2004 17:55:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416757#M65487</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2004-11-07T17:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: ANALYZE/SYSTEM Information</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416758#M65488</link>
      <description>Mario,&lt;BR /&gt;&lt;BR /&gt;  There is "MCR SDA" which will activate the system dump analyzer, but it expects a dump file name as a parameter, not an SDA command.&lt;BR /&gt;&lt;BR /&gt;  (Trivia quiz... which OpenVMS engineer's car number plate is "MCR SDA"? ;-)&lt;BR /&gt;&lt;BR /&gt;  SDA has an "@" command, so you can batch up commands in a file and execute them. You can also use the PIPE command as discussed in a previous thread to feed input into a program like SDA. For example:&lt;BR /&gt;&lt;BR /&gt;$ in="write sys$output"&lt;BR /&gt;$ pipe (in "show summ" ; in "show proc") | -&lt;BR /&gt;  analyze/system&lt;BR /&gt;&lt;BR /&gt;  To capture the output, use I/O redirection:&lt;BR /&gt;&lt;BR /&gt;$ pipe (in "show summ" ; in "show proc") | -&lt;BR /&gt;  analyze/system &amp;gt; SDA.OUT&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 07 Nov 2004 17:57:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416758#M65488</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2004-11-07T17:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: ANALYZE/SYSTEM Information</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416759#M65489</link>
      <description>&lt;BR /&gt;There is no direct way, but as John says, a pipe should get you close enough.&lt;BR /&gt;&lt;BR /&gt;I guess you dismissed the idea of creating a temp command file, with the commands to execute, and activate that?&lt;BR /&gt;&lt;BR /&gt;$open/write tmp tmp.com&lt;BR /&gt;$write tmp "$analyze /system"&lt;BR /&gt;$write tmp "show ...."&lt;BR /&gt;$close tmp&lt;BR /&gt;$@tmp&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Now you would also expect as an option is&lt;BR /&gt;to just put the SDA commands in a file and point sys$input to that.&lt;BR /&gt;&lt;BR /&gt;$create sda.tmp&lt;BR /&gt;show ....&lt;BR /&gt;$defi/user sys$input sda.tmp&lt;BR /&gt;$anal/system&lt;BR /&gt;&lt;BR /&gt;This should work, but fails on some VMS versions with "%SYSTEM-F-IVDEVNAM, invalid device name". It fails on my old 7.1 system.&lt;BR /&gt;This is because SDA tried to be smart about page size. So there's a $GETDVI to determine page size, line width,.. which fails on a disk device. Maybe it works on you VMS version?&lt;BR /&gt;&lt;BR /&gt;Hein,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 07 Nov 2004 18:11:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416759#M65489</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-11-07T18:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: ANALYZE/SYSTEM Information</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416760#M65490</link>
      <description>Hi,&lt;BR /&gt;don't forget SDA before starting execute a initialization file by logical name SDA$INIT or called SYS$LOGIN:SDA.INIT;&lt;BR /&gt;So you can execute follow code:&lt;BR /&gt;$ type sys$input /out=sys$login:sda.ini&lt;BR /&gt;show summary&lt;BR /&gt;exit&lt;BR /&gt;$ def SDA$INIT sys$login:sda.ini&lt;BR /&gt;$ anal/sys&lt;BR /&gt;$ delete/log sys$login:sda.ini;*&lt;BR /&gt;This work on every version of VMS.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Nov 2004 03:15:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416760#M65490</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2004-11-08T03:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: ANALYZE/SYSTEM Information</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416761#M65491</link>
      <description>see an example in this thread&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=712900" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=712900&lt;/A&gt;</description>
      <pubDate>Mon, 08 Nov 2004 07:28:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416761#M65491</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2004-11-08T07:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: ANALYZE/SYSTEM Information</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416762#M65492</link>
      <description>(Trivia quiz... which OpenVMS engineer's car number plate is "MCR SDA"? ;-)&lt;BR /&gt;&lt;BR /&gt;is the answer cmos?</description>
      <pubDate>Mon, 08 Nov 2004 07:50:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416762#M65492</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2004-11-08T07:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: ANALYZE/SYSTEM Information</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416763#M65493</link>
      <description>(Trivia quiz... which OpenVMS engineer's car number plate is "MCR SDA"? ;-)&lt;BR /&gt;&lt;BR /&gt;How abour Richard B. ?</description>
      <pubDate>Mon, 08 Nov 2004 08:03:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416763#M65493</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2004-11-08T08:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: ANALYZE/SYSTEM Information</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416764#M65494</link>
      <description>@Volker Halle&lt;BR /&gt;&lt;BR /&gt;(Trivia quiz... which OpenVMS engineer's car number plate is "MCR SDA"? ;-)&lt;BR /&gt;&lt;BR /&gt;If you have a car in america , i would expect you have such a plate!!!&lt;BR /&gt;&lt;BR /&gt;Greetings Kuddel!</description>
      <pubDate>Mon, 08 Nov 2004 08:55:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416764#M65494</guid>
      <dc:creator>Lachnitt_1</dc:creator>
      <dc:date>2004-11-08T08:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: ANALYZE/SYSTEM Information</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416765#M65495</link>
      <description>Mario,&lt;BR /&gt;&lt;BR /&gt;please give Kuddel 10 wel-deserved points out of my name!  :-)  :-)&lt;BR /&gt;&lt;BR /&gt;Cheers.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;Jan</description>
      <pubDate>Mon, 08 Nov 2004 14:44:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/analyze-system-information/m-p/3416765#M65495</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2004-11-08T14:44:08Z</dc:date>
    </item>
  </channel>
</rss>

