<?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: Best Variable Length for Numbers with Four Digits After Decimal Point in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711349#M219118</link>
    <description>&lt;P&gt;Don't EVER store decimals in SAS in less than the default 8 bytes - it really is asking for trouble with precision. Disk storage is cheap these days so you aren't saving any money doing so, but you are wasting time writing unnecessary LENGTH statements. Integers can be stored accurately in less than 8 bytes and the most common candidates for this are SAS dates. But again I personally think it is a waste of time adding LENGTH statements for all SAS dates.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to save space in SAS datasets, use the COMPRESS option in an OPTIONS statement then all following datasets created will be compressed. You'll save a lot more space that way than tinkering with the storage length of numeric variables and it is way quicker to implement.&lt;/P&gt;</description>
    <pubDate>Thu, 14 Jan 2021 06:29:22 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2021-01-14T06:29:22Z</dc:date>
    <item>
      <title>Best Variable Length for Numbers with Four Digits After Decimal Point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711342#M219114</link>
      <description>&lt;P&gt;I have a data set, the first 10 rows of which look like the following.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;year,R_F,R_MKT,R_ME,R_IA,R_ROE,R_EG
1967,4.1474,24.4192,40.5479,-11.4478,20.6095,-3.2998
1968,5.2942,8.8747,24.9021,14.7436,-2.4844,11.4650
1969,6.5912,-17.4274,-11.7458,0.4645,15.4144,12.9056
1970,6.3829,-6.3099,-7.9029,22.7755,-0.4696,17.1111
1971,4.3172,11.8817,5.3575,0.9003,11.4332,6.1606
1972,3.8912,13.4494,-9.0317,5.1487,5.6877,15.0977
1973,7.0586,-25.8075,-17.1956,7.7738,0.9487,17.2879
1974,8.0781,-36.0193,4.5604,18.5330,11.4993,20.1174
1975,5.8210,31.5368,16.9765,7.4978,-6.2017,11.5153&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;So, each value has at most four numbers after the decimal point. There is no explicit bound, but the values will effectively be in between -999 and 999. I ran the following code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
	infile "http://global-q.org/uploads/1/2/2/6/122679606/
q5_factors_annual_2019a.csv" url firstobs=2 dsd;
	length year 3 R_F R_MKT R_ME R_IA R_ROE R_EG 6;
	input year R_F R_MKT R_ME R_IA R_ROE R_EG;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I used 6 for the variable length based on &lt;A href="https://documentation.sas.com/?docsetId=hostunx&amp;amp;docsetTarget=p12zsdbylnn6c2n1i48z7djr6uzo.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;this document&lt;/A&gt;, but it seems some values are unusually read as follows.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="a.png" style="width: 608px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/53493i5C3A11DCFF30BA1C/image-size/large?v=v2&amp;amp;px=999" role="button" title="a.png" alt="a.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I wonder whether (1) the unusual values such as the 5.2941999999 above are just OK, and (2) the default length 8 rather than the 6 above must be used for these four-digit values.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 05:20:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711342#M219114</guid>
      <dc:creator>Junyong</dc:creator>
      <dc:date>2021-01-14T05:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: Best Variable Length for Numbers with Four Digits After Decimal Point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711344#M219115</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/173881"&gt;@Junyong&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have a data set, the first 10 rows of which look like the following.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;year,R_F,R_MKT,R_ME,R_IA,R_ROE,R_EG
1967,4.1474,24.4192,40.5479,-11.4478,20.6095,-3.2998
1968,5.2942,8.8747,24.9021,14.7436,-2.4844,11.4650
1969,6.5912,-17.4274,-11.7458,0.4645,15.4144,12.9056
1970,6.3829,-6.3099,-7.9029,22.7755,-0.4696,17.1111
1971,4.3172,11.8817,5.3575,0.9003,11.4332,6.1606
1972,3.8912,13.4494,-9.0317,5.1487,5.6877,15.0977
1973,7.0586,-25.8075,-17.1956,7.7738,0.9487,17.2879
1974,8.0781,-36.0193,4.5604,18.5330,11.4993,20.1174
1975,5.8210,31.5368,16.9765,7.4978,-6.2017,11.5153&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So, each value has at most four numbers after the decimal point. There is no explicit bound, but the values will effectively be in between -999 and 999. I ran the following code.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
	infile "http://global-q.org/uploads/1/2/2/6/122679606/
q5_factors_annual_2019a.csv" url firstobs=2 dsd;
	length year 3 R_F R_MKT R_ME R_IA R_ROE R_EG 6;
	input year R_F R_MKT R_ME R_IA R_ROE R_EG;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I used 6 for the variable length based on &lt;A href="https://documentation.sas.com/?docsetId=hostunx&amp;amp;docsetTarget=p12zsdbylnn6c2n1i48z7djr6uzo.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;this document&lt;/A&gt;, but it seems some values are unusually read as follows.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="a.png" style="width: 608px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/53493i5C3A11DCFF30BA1C/image-size/large?v=v2&amp;amp;px=999" role="button" title="a.png" alt="a.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I wonder whether (1) the unusual values such as the 5.2941999999 above are just OK, and (2) the default length 8 rather than the 6 above must be used for these four-digit values.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The values are not unusually &lt;EM&gt;&lt;STRONG&gt;read&lt;/STRONG&gt;&lt;/EM&gt;, but they are "unusually" &lt;EM&gt;&lt;STRONG&gt;stored&lt;/STRONG&gt;&lt;/EM&gt;.&amp;nbsp; They were read in by the data step as 8-byte floating point values, but they are stored on disk with length 6 instead of (the default) 8 bytes.&amp;nbsp; And since they are stored in floating point binary (not decimal) the last two bytes (16 bits) may not be all trailing zeroes even though in decimal notation, everything after the (say) 8th significant digit would be zero.&amp;nbsp; &amp;nbsp;Then when the 6-byte values are brought back into memory from the disk for viewing or any PROC, they will be expanded to 8-bytes in memory by appending 16 binary zeroes.&amp;nbsp; The result will NOT be exactly what it would have been if the last two bytes had been kept.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unless your data always has exact integers, (or exact halves, quarters, eight's, etc.) you will inevitably introduce these approximations.&amp;nbsp; Don't use the LENGTH attribute to shorten storage of non-integers without a very powerful and well-understood reason.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW, this is not a SAS problem - it is an attribute of truncating the default double-word (8 bytes) floating point numeric structure for almost all computing hardware.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 05:42:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711344#M219115</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2021-01-14T05:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: Best Variable Length for Numbers with Four Digits After Decimal Point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711349#M219118</link>
      <description>&lt;P&gt;Don't EVER store decimals in SAS in less than the default 8 bytes - it really is asking for trouble with precision. Disk storage is cheap these days so you aren't saving any money doing so, but you are wasting time writing unnecessary LENGTH statements. Integers can be stored accurately in less than 8 bytes and the most common candidates for this are SAS dates. But again I personally think it is a waste of time adding LENGTH statements for all SAS dates.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to save space in SAS datasets, use the COMPRESS option in an OPTIONS statement then all following datasets created will be compressed. You'll save a lot more space that way than tinkering with the storage length of numeric variables and it is way quicker to implement.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 06:29:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711349#M219118</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-01-14T06:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: Best Variable Length for Numbers with Four Digits After Decimal Point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711352#M219121</link>
      <description>&lt;P&gt;I have added INFORMAT and FORMAT statements to your code. Try it:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
  length year 3 R_F R_MKT R_ME R_IA R_ROE R_EG 6;
  informat R_F R_MKT R_ME R_IA R_ROE R_EG best8.4;
  infile cards dlm=',' dsd truncover;
  input year R_F R_MKT R_ME R_IA R_ROE R_EG;
  format year 4.
        R_F R_MKT R_ME R_IA R_ROE R_EG best8.4;
cards;  
1967,4.1474,24.4192,40.5479,-11.4478,20.6095,-3.2998
1968,5.2942,8.8747,24.9021,14.7436,-2.4844,11.4650
1969,6.5912,-17.4274,-11.7458,0.4645,15.4144,12.9056
1970,6.3829,-6.3099,-7.9029,22.7755,-0.4696,17.1111
1971,4.3172,11.8817,5.3575,0.9003,11.4332,6.1606
1972,3.8912,13.4494,-9.0317,5.1487,5.6877,15.0977
1973,7.0586,-25.8075,-17.1956,7.7738,0.9487,17.2879
1974,8.0781,-36.0193,4.5604,18.5330,11.4993,20.1174
1975,5.8210,31.5368,16.9765,7.4978,-6.2017,11.5153
; run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Jan 2021 06:57:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711352#M219121</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-14T06:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Best Variable Length for Numbers with Four Digits After Decimal Point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711368#M219134</link>
      <description>&lt;P&gt;For &lt;STRONG&gt;display&lt;/STRONG&gt; if the range of values is -999 to 999 with up to 4 decimals then a BEST9. should work.&lt;/P&gt;
&lt;P&gt;-998.1234 occupies 9 print positions: 1 for the -, 3 for the integer portion, 1 for the decimal point and 4 for the decimal digits. 1+3+1+4=9.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are a whole lot of references for computer precision and representation of decimals in binary storage. Do a search.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Moral of the story: don't us length less than the default 8 for decimals.&lt;/P&gt;
&lt;P&gt;The following reads the same text value into multiple variables that are defined with different lengths.&lt;/P&gt;
&lt;PRE&gt;data example;
   length x1 8 x2 7 x3 6 x4 5 x5 4 x6 3;
   array x (*) x1 - x6;
   do i=1 to dim(x);
      input @1 x[i] @;
   end;
   input;&lt;BR /&gt;   format x: best16. ;
datalines;
123456789.
12345678.9
1234567.89
123456.789
12345.6789
1234.56789
123.456789
12.3456789
1.23456789
0.123456789
0.0123456789
0.00123456789
;
&lt;/PRE&gt;
&lt;P&gt;With a wider than default format you can see issues with decimals occurring quite easily just based on the length assigned.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 08:31:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711368#M219134</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-01-14T08:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: Best Variable Length for Numbers with Four Digits After Decimal Point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711396#M219151</link>
      <description>&lt;P&gt;I had absolutely no idea on this issue so visited &lt;A href="https://en.wikipedia.org/wiki/IEEE_754" target="_blank"&gt;IEEE 754&lt;/A&gt;—it seems deviating from the default 8 is unreasonable unless integers like dates, years, dummies, etc. Much appreciate all these details for that novice question.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 10:17:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711396#M219151</guid>
      <dc:creator>Junyong</dc:creator>
      <dc:date>2021-01-14T10:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Best Variable Length for Numbers with Four Digits After Decimal Point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711397#M219152</link>
      <description>&lt;P&gt;Thanks—in case, my code above imports the full data via &lt;CODE&gt;url&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 10:23:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711397#M219152</guid>
      <dc:creator>Junyong</dc:creator>
      <dc:date>2021-01-14T10:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: Best Variable Length for Numbers with Four Digits After Decimal Point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711401#M219153</link>
      <description>&lt;P&gt;Thanks for this clarification again—it seems changing the default is ill-suited if non-integers. However, it seems it still pays to cut the data size because IT services such as Dropbox and Spectrum are not frictionless. I think &lt;CODE&gt;compress&lt;/CODE&gt; works well for characters rather than numbers.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 10:37:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711401#M219153</guid>
      <dc:creator>Junyong</dc:creator>
      <dc:date>2021-01-14T10:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Best Variable Length for Numbers with Four Digits After Decimal Point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711402#M219154</link>
      <description>&lt;P&gt;Thanks for this intuitive example. I had absolutely no idea on this issue so read the &lt;A href="https://en.wikipedia.org/wiki/IEEE_754" target="_blank"&gt;IEEE 754&lt;/A&gt; page above. I will stick to it unless integers.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 10:41:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711402#M219154</guid>
      <dc:creator>Junyong</dc:creator>
      <dc:date>2021-01-14T10:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Best Variable Length for Numbers with Four Digits After Decimal Point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711408#M219156</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/173881"&gt;@Junyong&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks—in case, my code above imports the full data via &lt;CODE&gt;url&lt;/CODE&gt;.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The data origin is not relevant here.&lt;/P&gt;
&lt;P&gt;What makes the difference are: length, informat and format statements.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 10:53:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711408#M219156</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-14T10:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Best Variable Length for Numbers with Four Digits After Decimal Point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711567#M219223</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/173881"&gt;@Junyong&lt;/a&gt;&amp;nbsp; - COMPRESS = BINARY also compresses some numerics.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 21:49:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711567#M219223</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-01-14T21:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Best Variable Length for Numbers with Four Digits After Decimal Point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711577#M219227</link>
      <description>&lt;P&gt;You don't have to restrict length shortening to just integers.&amp;nbsp; If all your values are halves and quarters for instance, then you could shorten with no loss of accuracy.&amp;nbsp; Consider the possibilities of length 6 below for this subset of integers divided by powers of 2:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;213  data _null_;
214    /* Get the largest consecutive integer storable as floating point 6 bytes */
215    L6=constant('exactint',6);
216    put L6=comma22.0;
217
218    /* Now show the maximum consecutive value for power of 2 fractions: */
219    X=L6;
220    Length txt $22;
221    do denom = 2 by 0 while (denom&amp;lt;=256*256);
222      X=x/2;
223      TXT=right(put(x,comma22.0));
224      put '1/' denom  @15 txt $char22.;
225      denom=2*denom;
226    end;
227  run;

L6=137,438,953,472
1/2                   68,719,476,736
1/4                   34,359,738,368
1/8                   17,179,869,184
1/16                   8,589,934,592
1/32                   4,294,967,296
1/64                   2,147,483,648
1/128                  1,073,741,824
1/256                    536,870,912
1/512                    268,435,456
1/1024                   134,217,728
1/2048                    67,108,864
1/4096                    33,554,432
1/8192                    16,777,216
1/16384                    8,388,608
1/32768                    4,194,304
1/65536                    2,097,152
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I.e. every 1/4th up to 34,359,738,368 will suffer no loss of accuracy in a storage length of 6.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW, this was a real-world problem in the stock market.&amp;nbsp; Markets used to report prices in dollars, half-dollar, quarters, eights (and I think down to sixteenths) up until 2001, when they switch to decimalization. Not only did the decimalization cut down of trader's commissions (granularity of prices went down to single pennies), but until that time we could accurately store daily closing prices with a length of less the 8 (I believe our supplier - CRSP - used a length of 6).&amp;nbsp; Well, that little space savings disappeared quickly.&amp;nbsp; &amp;nbsp;More importantly, we get hundreds of millions of stock trades and quotes daily from us stock exchanges.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At 2 bytes per trade/quote space needs went up dramatically.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 23:02:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-Variable-Length-for-Numbers-with-Four-Digits-After-Decimal/m-p/711577#M219227</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2021-01-14T23:02:32Z</dc:date>
    </item>
  </channel>
</rss>

