<?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: Too big Data Division causes Cobol compilation failure in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573911#M679197</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Hi Dennis &amp;amp; JRK,&lt;BR /&gt;Thanks for your responses.&lt;BR /&gt;&lt;BR /&gt;Dennis:- Compiler is Microfocus and computer is 64-bits. But i did not understand the solution suggested by you. can you please elaborate. if you can give me some example, it will be great.&lt;BR /&gt;&lt;BR /&gt;JRF :- Most of the elements in structure are DISPLAY with alphanumeric value. i am not sure how to do the restructure.&lt;BR /&gt;&lt;BR /&gt;I am attaching the structure for your reference. i hope it will help you.&lt;BR /&gt;&lt;BR /&gt;Frankly speaking i am a novice COBOL programmer. So it is bit hard for me to understand jargons of COBOL.</description>
    <pubDate>Mon, 01 Feb 2010 07:32:55 GMT</pubDate>
    <dc:creator>Madhur Goel</dc:creator>
    <dc:date>2010-02-01T07:32:55Z</dc:date>
    <item>
      <title>Too big Data Division causes Cobol compilation failure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573906#M679192</link>
      <description>MY structure occupies memory of 99*10000*(4+240) bytes, roughly 240Mb.  Now i want to add two new fields (24 bytes) into the structure; unfortunately, this change causes the total size of the Data Division to pass the maximal size allowed by Cobol compiler, and the compilation will fail with such error message:&lt;BR /&gt;&lt;BR /&gt; 21718 01 WS33-BAN-LIST-SHORT-NAME        .&lt;BR /&gt;*  16-S**                                                              (   0)**&lt;BR /&gt;**    Data space too large&lt;BR /&gt;&lt;BR /&gt;Can any one who had faced this problem share how to handle this into code.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.</description>
      <pubDate>Fri, 29 Jan 2010 06:27:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573906#M679192</guid>
      <dc:creator>Madhur Goel</dc:creator>
      <dc:date>2010-01-29T06:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: Too big Data Division causes Cobol compilation failure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573907#M679193</link>
      <description>What is the name of your compiler?  Microfocus?&lt;BR /&gt;If your compiler supports 64 bit, you wouldn't have to worry?&lt;BR /&gt;&lt;BR /&gt;You could process parts by using files.</description>
      <pubDate>Fri, 29 Jan 2010 12:21:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573907#M679193</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2010-01-29T12:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: Too big Data Division causes Cobol compilation failure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573908#M679194</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Perhaps you have fields of numeric data that could be "packed" with an alternate "picture" declaration halving the storage requirement of those pieces.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 29 Jan 2010 12:58:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573908#M679194</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2010-01-29T12:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: Too big Data Division causes Cobol compilation failure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573909#M679195</link>
      <description>&amp;gt;JRF: Perhaps you have fields of numeric data that could be "packed" with an alternate "picture" declaration halving the storage requirement of those pieces.&lt;BR /&gt;&lt;BR /&gt;I believe you are talking about USAGE, not PICTURE?  USAGE DISPLAY vs COMP</description>
      <pubDate>Sat, 30 Jan 2010 10:12:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573909#M679195</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2010-01-30T10:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Too big Data Division causes Cobol compilation failure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573910#M679196</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Dennis -&amp;gt; JRF: I believe you are talking about USAGE, not PICTURE? USAGE DISPLAY vs COMP&lt;BR /&gt;&lt;BR /&gt;Yes, indeed I was thinking 'usage' as cited when I wrote 'picture'.  Thanks.&lt;BR /&gt;&lt;BR /&gt;If this is an option for Madhur, I would suggest that a re-structure of the '01' area be made to condense all DISPLAY elements into one region and all COMP ("packed") elements into another.  At least on COBOL compilers I was once familiar with this eliminated "filler" nibbles for byte alignment.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Sat, 30 Jan 2010 14:39:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573910#M679196</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2010-01-30T14:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Too big Data Division causes Cobol compilation failure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573911#M679197</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Hi Dennis &amp;amp; JRK,&lt;BR /&gt;Thanks for your responses.&lt;BR /&gt;&lt;BR /&gt;Dennis:- Compiler is Microfocus and computer is 64-bits. But i did not understand the solution suggested by you. can you please elaborate. if you can give me some example, it will be great.&lt;BR /&gt;&lt;BR /&gt;JRF :- Most of the elements in structure are DISPLAY with alphanumeric value. i am not sure how to do the restructure.&lt;BR /&gt;&lt;BR /&gt;I am attaching the structure for your reference. i hope it will help you.&lt;BR /&gt;&lt;BR /&gt;Frankly speaking i am a novice COBOL programmer. So it is bit hard for me to understand jargons of COBOL.</description>
      <pubDate>Mon, 01 Feb 2010 07:32:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573911#M679197</guid>
      <dc:creator>Madhur Goel</dc:creator>
      <dc:date>2010-02-01T07:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: Too big Data Division causes Cobol compilation failure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573912#M679198</link>
      <description>&amp;gt;Compiler is Microfocus and computer is 64-bits.&lt;BR /&gt;&lt;BR /&gt;Does MF COBOL allow you to create 64 bit applications?&lt;BR /&gt;&lt;BR /&gt;&amp;gt;I did not understand the solution suggested by you. can you please elaborate.&lt;BR /&gt;&lt;BR /&gt;Basically hand waving.  Divide your task into parts so you don't need that large array.  Process a file record by record.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Most of the elements in structure are DISPLAY with alphanumeric value.&lt;BR /&gt;&lt;BR /&gt;Right, all numeric fields are already COMP.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;I am a novice COBOL programmer.&lt;BR /&gt;&lt;BR /&gt;So I have forgotten more about COBOL than you know?  :-)</description>
      <pubDate>Mon, 01 Feb 2010 09:03:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/too-big-data-division-causes-cobol-compilation-failure/m-p/4573912#M679198</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2010-02-01T09:03:14Z</dc:date>
    </item>
  </channel>
</rss>

