<?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: calculating sysdump.dmp size in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333558#M92768</link>
    <description>well now its really interseting. Servers are physically identical AlphaServer ES47 7/1150&lt;BR /&gt;             server #1&lt;BR /&gt;BE3VAX&amp;gt;&amp;gt;mcr sysgen sho dump&lt;BR /&gt;Parameter Name            Current    Default     Min.       Max.   Unit  Dynamic&lt;BR /&gt;--------------            -------    -------   -------    -------  ----  -------&lt;BR /&gt;DUMPSTYLE                       9          9         0         -1 Bitmask    D&lt;BR /&gt;DUMPBUG                         1          1         0          1 Boolean    &lt;BR /&gt;BE3VAX&amp;gt;&amp;gt;sho mem/phy&lt;BR /&gt;              System Memory Resources on  8-JAN-2009 08:37:26.56&lt;BR /&gt;&lt;BR /&gt;Physical Memory Usage (pages):     Total        Free      In Use    Modified&lt;BR /&gt;  Main Memory (8.00GB)           1048576      411627      630082        6867&lt;BR /&gt;&lt;BR /&gt;Of the physical pages in use, 19369 pages are permanently allocated to OpenVMS.&lt;BR /&gt;BE3VAX&amp;gt;&amp;gt;sear sys$system:agen$params.report dump&lt;BR /&gt; Calculations for page, swap, and dump files.&lt;BR /&gt;    Errorlog dumpfile calculations:&lt;BR /&gt;        No errorlog dump file modifications should be made.&lt;BR /&gt;        Errorlog dumpfile will remain at 778 blocks.&lt;BR /&gt;    Dump file calculations:&lt;BR /&gt;        No dump file modifications should be made.&lt;BR /&gt;        Dumpfile on device DSA194: will remain at 17825792 blocks.&lt;BR /&gt;&lt;BR /&gt;          server #2&lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;mcr sysgen sho dump&lt;BR /&gt;Parameter Name            Current    Default     Min.       Max.   Unit  Dynamic&lt;BR /&gt;--------------            -------    -------   -------    -------  ----  -------&lt;BR /&gt;DUMPSTYLE                       9          9         0         -1 Bitmask    D&lt;BR /&gt;DUMPBUG                         1          1         0          1 Boolean    &lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;sho mem/phy&lt;BR /&gt;              System Memory Resources on  8-JAN-2009 08:35:54.01&lt;BR /&gt;&lt;BR /&gt;Physical Memory Usage (pages):     Total        Free      In Use    Modified&lt;BR /&gt;  Main Memory (8.00GB)           1048576      413135      627718        7723&lt;BR /&gt;&lt;BR /&gt;Of the physical pages in use, 17488 pages are permanently allocated to OpenVMS.&lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;sear sys$system:agen$params.report dump&lt;BR /&gt; Calculations for page, swap, and dump files.&lt;BR /&gt;    Errorlog dumpfile calculations:&lt;BR /&gt;        No errorlog dump file modifications should be made.&lt;BR /&gt;        Errorlog dumpfile will remain at 778 blocks.&lt;BR /&gt;    Dump file calculations:&lt;BR /&gt;        A 1439644 block dump file should be created.</description>
    <pubDate>Thu, 08 Jan 2009 13:57:26 GMT</pubDate>
    <dc:creator>Steven_101</dc:creator>
    <dc:date>2009-01-08T13:57:26Z</dc:date>
    <item>
      <title>calculating sysdump.dmp size</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333553#M92763</link>
      <description>Trying to create a generic script to deploy to all my servers to gather infomation on sysdump.dmp and see it is the righr size&lt;BR /&gt;&lt;BR /&gt;Found the following &lt;BR /&gt;&lt;BR /&gt;On Alpha systems, use the following formula:&lt;BR /&gt;size-in-blocks(SYS$SYSTEM:SYSDUMP.DMP)&lt;BR /&gt;= size-in-pages(physical-memory) * blocks-per-page &lt;BR /&gt;+ number-of-error-log-buffers * blocks-per-buffer&lt;BR /&gt;+ 10&lt;BR /&gt;where:&lt;BR /&gt;size-in-pages &lt;BR /&gt; Is the size of physical memory, in pages. Use the DCL command SHOW MEMORY to determine the total size of physical memory on your system. &lt;BR /&gt; &lt;BR /&gt;blocks-per-page &lt;BR /&gt; Is the number of blocks per page of memory. &lt;BR /&gt;&lt;BR /&gt;On Alpha systems, calculate the number of blocks per page of memory by dividing the system's page size by 512 (the size of a block). Use the following commands: &lt;BR /&gt;$ PAGESIZE==F$GETSYI ("PAGE_SIZE")&lt;BR /&gt;$ BLOCKSPERPAGE=PAGESIZE/512&lt;BR /&gt;$ SHOW SYMBOL BLOCKSPERPAGE&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;number-of-error-log-buffers &lt;BR /&gt; Is the value of the system parameter ERRORLOGBUFFERS.  &lt;BR /&gt; &lt;BR /&gt;blocks-per-buffer &lt;BR /&gt; Is the value of the system parameter ERLBUFFERPAGES.  &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;when I tried to use it the answer comes out over twice the size of what agent$params.report says the dump file size should be&lt;BR /&gt;&lt;BR /&gt;@dsize&lt;BR /&gt;$!&lt;BR /&gt;$ memsize= f$getsyi("memsize")&lt;BR /&gt;$ PAGESIZE =F$GETSYI ("PAGE_SIZE")&lt;BR /&gt;$ BPP =PAGESIZE/512&lt;BR /&gt;$ eb = f$getsyi("ERRORLOGBUFFERS")&lt;BR /&gt;$ bpb = f$getsyi("ERLBUFFERPAGES")&lt;BR /&gt;$ dsize = memsize*bpp+eb*bpb+10&lt;BR /&gt;$ sho sym memsize&lt;BR /&gt;  MEMSIZE = 524288   Hex = 00080000  Octal = 00002000000&lt;BR /&gt;$ sho sym pagesize&lt;BR /&gt;  PAGESIZE = 8192   Hex = 00002000  Octal = 00000020000&lt;BR /&gt;$ SHOW SYMBOL BPP&lt;BR /&gt;  BPP = 16   Hex = 00000010  Octal = 00000000020&lt;BR /&gt;$ sho sym eb&lt;BR /&gt;  EB = 4   Hex = 00000004  Octal = 00000000004&lt;BR /&gt;$ sho sym bpb&lt;BR /&gt;  BPB = 8   Hex = 00000008  Octal = 00000000010&lt;BR /&gt;$ sho sym dsize&lt;BR /&gt;  DSIZE = 8388650   Hex = 0080002A  Octal = 00040000052&lt;BR /&gt;$!&lt;BR /&gt;&lt;BR /&gt;sear sys$system:agen$params.report dump&lt;BR /&gt;     Dump file calculations:&lt;BR /&gt;        A 4168027 block dump file should be created.</description>
      <pubDate>Wed, 07 Jan 2009 20:38:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333553#M92763</guid>
      <dc:creator>Steven_101</dc:creator>
      <dc:date>2009-01-07T20:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: calculating sysdump.dmp size</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333554#M92764</link>
      <description>The calculation you have is for a full uncompressed dumpfile.  The value of the system parameter dumpstyle can modify file requirements. See chapter 2 of the OpenVMS System Analysis Tools Manual at &lt;A href="http://h71000.www7.hp.com/doc/82final/6549/6549pro.html." target="_blank"&gt;http://h71000.www7.hp.com/doc/82final/6549/6549pro.html.&lt;/A&gt;  The default value (dumpstyle=9) is for a compressed selective dump on systems with greater than 128 mb of memory.&lt;BR /&gt;&lt;BR /&gt;Autogen will take this into account. You may want to bump the autogen value by 10 percent so so, disk space is inexpensive and on the very rare instances of a system crash, you really want the crash dump to complete.&lt;BR /&gt;&lt;BR /&gt;Andy Bustamante</description>
      <pubDate>Wed, 07 Jan 2009 21:05:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333554#M92764</guid>
      <dc:creator>Andy Bustamante</dc:creator>
      <dc:date>2009-01-07T21:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: calculating sysdump.dmp size</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333555#M92765</link>
      <description>What is SYSGEN parameter DUMPSTYLE set to?  If it is set for compressed dumps AUTOGEN will take that into account.&lt;BR /&gt;&lt;BR /&gt;In current versions of VMS (since V7.2 ?) the error log is dumped to a separate file, SYS$ERRLOG.DMP.</description>
      <pubDate>Wed, 07 Jan 2009 21:07:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333555#M92765</guid>
      <dc:creator>Jess Goodman</dc:creator>
      <dc:date>2009-01-07T21:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: calculating sysdump.dmp size</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333556#M92766</link>
      <description>Steven,&lt;BR /&gt;&lt;BR /&gt;  Why would you want to reinvent a perfectly good wheel?&lt;BR /&gt;&lt;BR /&gt;  Set DUMPFILE=0 in MODPARAMS.DAT to prevent automatic changes in dump file size. Now execute&lt;BR /&gt;&lt;BR /&gt;$ @SYS$UPDATE:AUTOGEN GETDATA GENPARAMS&lt;BR /&gt;&lt;BR /&gt;This is a minimal impact AUTOGEN. Since it skips SAVPARAMS, it doesn't record any information about the system, and it doesn't get to SETPARAMS, so no changes are made.&lt;BR /&gt;&lt;BR /&gt;AUTOGEN will calculate the recommended size of dump file, based on lots of things, including compression settings. You can then manually set the file size using SYSGEN, or setting DUMPFILE in MODPARAMS.DAT.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Jan 2009 23:26:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333556#M92766</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2009-01-07T23:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: calculating sysdump.dmp size</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333557#M92767</link>
      <description>I realized on the way home that dumpstyle might be taken in the calculation. Somtimes you just need to walk-away for awhile and the answer comes to you&lt;BR /&gt;&lt;BR /&gt;thanks guys&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Jan 2009 00:00:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333557#M92767</guid>
      <dc:creator>Steven_101</dc:creator>
      <dc:date>2009-01-08T00:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: calculating sysdump.dmp size</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333558#M92768</link>
      <description>well now its really interseting. Servers are physically identical AlphaServer ES47 7/1150&lt;BR /&gt;             server #1&lt;BR /&gt;BE3VAX&amp;gt;&amp;gt;mcr sysgen sho dump&lt;BR /&gt;Parameter Name            Current    Default     Min.       Max.   Unit  Dynamic&lt;BR /&gt;--------------            -------    -------   -------    -------  ----  -------&lt;BR /&gt;DUMPSTYLE                       9          9         0         -1 Bitmask    D&lt;BR /&gt;DUMPBUG                         1          1         0          1 Boolean    &lt;BR /&gt;BE3VAX&amp;gt;&amp;gt;sho mem/phy&lt;BR /&gt;              System Memory Resources on  8-JAN-2009 08:37:26.56&lt;BR /&gt;&lt;BR /&gt;Physical Memory Usage (pages):     Total        Free      In Use    Modified&lt;BR /&gt;  Main Memory (8.00GB)           1048576      411627      630082        6867&lt;BR /&gt;&lt;BR /&gt;Of the physical pages in use, 19369 pages are permanently allocated to OpenVMS.&lt;BR /&gt;BE3VAX&amp;gt;&amp;gt;sear sys$system:agen$params.report dump&lt;BR /&gt; Calculations for page, swap, and dump files.&lt;BR /&gt;    Errorlog dumpfile calculations:&lt;BR /&gt;        No errorlog dump file modifications should be made.&lt;BR /&gt;        Errorlog dumpfile will remain at 778 blocks.&lt;BR /&gt;    Dump file calculations:&lt;BR /&gt;        No dump file modifications should be made.&lt;BR /&gt;        Dumpfile on device DSA194: will remain at 17825792 blocks.&lt;BR /&gt;&lt;BR /&gt;          server #2&lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;mcr sysgen sho dump&lt;BR /&gt;Parameter Name            Current    Default     Min.       Max.   Unit  Dynamic&lt;BR /&gt;--------------            -------    -------   -------    -------  ----  -------&lt;BR /&gt;DUMPSTYLE                       9          9         0         -1 Bitmask    D&lt;BR /&gt;DUMPBUG                         1          1         0          1 Boolean    &lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;sho mem/phy&lt;BR /&gt;              System Memory Resources on  8-JAN-2009 08:35:54.01&lt;BR /&gt;&lt;BR /&gt;Physical Memory Usage (pages):     Total        Free      In Use    Modified&lt;BR /&gt;  Main Memory (8.00GB)           1048576      413135      627718        7723&lt;BR /&gt;&lt;BR /&gt;Of the physical pages in use, 17488 pages are permanently allocated to OpenVMS.&lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;sear sys$system:agen$params.report dump&lt;BR /&gt; Calculations for page, swap, and dump files.&lt;BR /&gt;    Errorlog dumpfile calculations:&lt;BR /&gt;        No errorlog dump file modifications should be made.&lt;BR /&gt;        Errorlog dumpfile will remain at 778 blocks.&lt;BR /&gt;    Dump file calculations:&lt;BR /&gt;        A 1439644 block dump file should be created.</description>
      <pubDate>Thu, 08 Jan 2009 13:57:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333558#M92768</guid>
      <dc:creator>Steven_101</dc:creator>
      <dc:date>2009-01-08T13:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: calculating sysdump.dmp size</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333559#M92769</link>
      <description>Steven,&lt;BR /&gt;&lt;BR /&gt;  What is DUMPFILE set to in MODPARAMS? It will override AUTOGEN calculations. It's probably 0 in both cases, but the first node has a dump file, while the second does not. Try RENAMEing the dump file on the first node and check the AUTOGEN result.&lt;BR /&gt;&lt;BR /&gt;  I'd also be reading the complete text of the autogen "Dump file calculations" section, rather than just the lines containing the word "dump".&lt;BR /&gt;&lt;BR /&gt;  If you really want to know how AUTOGEN calculates the size, why not read the code? You may even be able to find a pre DCLDIET copy of AUTOGEN.COM on the web somewhere which may be a bit more readable.&lt;BR /&gt;&lt;BR /&gt;  On the other hand, you could just trust that the folks who wrote AUTOGEN know what they're doing and not spend your time re-inventinting it.</description>
      <pubDate>Fri, 09 Jan 2009 00:11:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333559#M92769</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2009-01-09T00:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: calculating sysdump.dmp size</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333560#M92770</link>
      <description>The value of dumpfile=0 only controls whether or not autogen will attempt to create a new dumpfile.&lt;BR /&gt;&lt;BR /&gt;Both systems have dumpfiles on them. The troubling questions is why 2 physically similar systems want to calculate the size of the sysdump.dmp differently.&lt;BR /&gt;&lt;BR /&gt;Granted 1 server has dumpfile set to 0, and the other has no entry in modparams.dat&lt;BR /&gt;&lt;BR /&gt;********************************************&lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;sear sys$system:modparams.dat;* dump&lt;BR /&gt;%SEARCH-I-NOMATCHES, no strings matched&lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;dir/date/siz=all sys$system:sysdump.dmp&lt;BR /&gt;&lt;BR /&gt;Directory SYS$SYSROOT:[SYSEXE]&lt;BR /&gt;&lt;BR /&gt;SYSDUMP.DMP;3        2030193/2030364  20-OCT-2007 15:45:46.24&lt;BR /&gt;&lt;BR /&gt;Total of 1 file, 2030193/2030364 blocks.&lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;sho mem/phy&lt;BR /&gt;              System Memory Resources on  8-JAN-2009 20:37:15.67&lt;BR /&gt;&lt;BR /&gt;Physical Memory Usage (pages):     Total        Free      In Use    Modified&lt;BR /&gt;  Main Memory (8.00GB)           1048576      411306      629227        8043&lt;BR /&gt;&lt;BR /&gt;Of the physical pages in use, 17488 pages are permanently allocated to OpenVMS.&lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;mcr sysgen sho dump&lt;BR /&gt;Parameter Name            Current    Default     Min.       Max.   Unit  Dynamic&lt;BR /&gt;--------------            -------    -------   -------    -------  ----  -------&lt;BR /&gt;DUMPSTYLE                       9          9         0         -1 Bitmask    D&lt;BR /&gt;DUMPBUG                         1          1         0          1 Boolean    &lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;dir/date sys$system:agen$params.report;&lt;BR /&gt;&lt;BR /&gt;Directory SYS$SYSROOT:[SYSEXE]&lt;BR /&gt;&lt;BR /&gt;AGEN$PARAMS.REPORT;15&lt;BR /&gt;                      5-DEC-2008 19:50:49.50&lt;BR /&gt;&lt;BR /&gt;Total of 1 file.&lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;sear sys$system:agen$params.report; dump&lt;BR /&gt; Calculations for page, swap, and dump files.&lt;BR /&gt;    Errorlog dumpfile calculations:&lt;BR /&gt;        No errorlog dump file modifications should be made.&lt;BR /&gt;        Errorlog dumpfile will remain at 778 blocks.&lt;BR /&gt;    Dump file calculations:&lt;BR /&gt;        A 1439644 block dump file should be created.&lt;BR /&gt;DEV1AX&amp;gt;&amp;gt;&lt;BR /&gt;*******************************************&lt;BR /&gt;&lt;BR /&gt;BE3VAX&amp;gt;&amp;gt;sear modparams.dat dump&lt;BR /&gt;DUMPFILE        = 0&lt;BR /&gt;BE3VAX&amp;gt;&amp;gt;dir/date/siz=all sysdump.dmp&lt;BR /&gt;&lt;BR /&gt;Directory SYS$SYSROOT:[SYSEXE]&lt;BR /&gt;&lt;BR /&gt;SYSDUMP.DMP;1        *******/*******  24-MAR-2008 23:48:45.95&lt;BR /&gt;&lt;BR /&gt;Total of 1 file, 17825792/17825808 blocks.&lt;BR /&gt;BE3VAX&amp;gt;&amp;gt;sho mem/phy&lt;BR /&gt;              System Memory Resources on  8-JAN-2009 20:40:54.90&lt;BR /&gt;&lt;BR /&gt;Physical Memory Usage (pages):     Total        Free      In Use    Modified&lt;BR /&gt;  Main Memory (8.00GB)           1048576      412623      628685        7268&lt;BR /&gt;&lt;BR /&gt;Of the physical pages in use, 19369 pages are permanently allocated to OpenVMS.&lt;BR /&gt;BE3VAX&amp;gt;&amp;gt;dir/date agen$params.report;&lt;BR /&gt;&lt;BR /&gt;Directory SYS$SYSROOT:[SYSEXE]&lt;BR /&gt;&lt;BR /&gt;AGEN$PARAMS.REPORT;118&lt;BR /&gt;                      3-JAN-2009 04:00:00.27&lt;BR /&gt;&lt;BR /&gt;Total of 1 file.&lt;BR /&gt;BE3VAX&amp;gt;&amp;gt;sear AGEN$PARAMS.REPORT dump&lt;BR /&gt; Calculations for page, swap, and dump files.&lt;BR /&gt;    Errorlog dumpfile calculations:&lt;BR /&gt;        No errorlog dump file modifications should be made.&lt;BR /&gt;        Errorlog dumpfile will remain at 778 blocks.&lt;BR /&gt;    Dump file calculations:&lt;BR /&gt;        No dump file modifications should be made.&lt;BR /&gt;        Dumpfile on device DSA194: will remain at 17825792 blocks.&lt;BR /&gt;BE3VAX&amp;gt;&amp;gt;</description>
      <pubDate>Fri, 09 Jan 2009 01:43:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333560#M92770</guid>
      <dc:creator>Steven_101</dc:creator>
      <dc:date>2009-01-09T01:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: calculating sysdump.dmp size</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333561#M92771</link>
      <description>&amp;gt;The troubling questions is why 2 &lt;BR /&gt;&amp;gt;physically similar systems want to &lt;BR /&gt;&amp;gt;calculate the size of the sysdump.dmp &lt;BR /&gt;&amp;gt;differently.&lt;BR /&gt;&amp;gt;&lt;BR /&gt;&amp;gt;Granted 1 server has dumpfile set to 0, &lt;BR /&gt;&amp;gt;and the other has no entry in modparams.dat&lt;BR /&gt;&lt;BR /&gt;  Different configurations, different results.&lt;BR /&gt;&lt;BR /&gt;  Try comparing apples with apples. Set DUMPFILE=0 on both systems, or remove it from both systems. For a clean slate experiment, remove the DUMPFILE setting and RENAME the dump files. As long as you don't execute the GENFILES phase you won't affect existing files.&lt;BR /&gt;&lt;BR /&gt;  AUTOGEN is deliberately conservative. It won't go changing things unless it's told it can, and the difference is significant enough (definition varies, see source). &lt;BR /&gt;&lt;BR /&gt;There are also other variables which affect the size which may be different between your two systems. For exaple, a quick look at AUTOGEN.COM suggests GBLPAGES, BALSETCNT and WSSIZEs of various processes enter into the calculation. &lt;BR /&gt;&lt;BR /&gt;Bottom line is, the systems are sufficiently different that you get different results from AUTOGEN. If you're confident that the values defined in MODPARAMS are correct for the workloads why would it matter that the resulting dump files sizes are different? If you want them the same, choose the value that you like best and set it in MODPARAMS.&lt;BR /&gt;&lt;BR /&gt;Consider the real cost of the disk space consumed by the dump file. Is it worth worrying about?</description>
      <pubDate>Fri, 09 Jan 2009 05:58:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333561#M92771</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2009-01-09T05:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: calculating sysdump.dmp size</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333562#M92772</link>
      <description>&amp;gt;&amp;gt;The value of dumpfile=0 only controls whether or not autogen will attempt to create a new dumpfile.&lt;BR /&gt;&lt;BR /&gt;No, dumpfile=0 tells autogen not to change the dumpfile size, ie use the dumpfile.dmp that is already there.</description>
      <pubDate>Mon, 12 Jan 2009 02:13:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calculating-sysdump-dmp-size/m-p/4333562#M92772</guid>
      <dc:creator>Paul Jerrom</dc:creator>
      <dc:date>2009-01-12T02:13:05Z</dc:date>
    </item>
  </channel>
</rss>

