<?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: What's the meaning of value MIN and MAX of SORTSIZE system option? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/371671#M275888</link>
    <description>&lt;P&gt;Thanks,&amp;nbsp; Chris! That's very helpful.&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; I will buy the book to study.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;About the value of MIN and MAX, I just want to know the difference. Because from the test result, they seems no difference.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And the other question:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;gt; If the number of SORTSIZE is greater than the number of MEMSIZE,&amp;nbsp;Is it silently reduced to&amp;nbsp;the number of MEMSIZE?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It's not? Because I ran a test, the log showed that it's true. I forgot paste the code and log yesterday. I set the MEMSIZE to 256M, SORTSIZE to 1G in sasv9.cfg, the configuration file. The SORT procedure&amp;nbsp;can only use memory below 256M, even the SORTSIZE is 1G.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;17   %put MEMSIZE = %sysfunc(putn(%sysfunc(getoption(memsize))/1024,comma10.))Kb;
MEMSIZE =    262,144Kb
18   %put SORTSIZE = %sysfunc(putn(%sysfunc(getoption(sortsize))/1024,comma10.))Kb;
SORTSIZE =  1,048,576Kb

19
20   option fullstimer msglevel=I;
21   proc sort data=test out=test3 details;
22       by id;
23   run;

NOTE: Utility file required.
NOTE: Utility file 1 page size is 262144 bytes.
NOTE: There were 2140000 observations read from the data set WORK.TEST.
NOTE: Utility file 1 contains 2140000 records and 13 sorted runs.
NOTE: Utility file 1 contains 5491 pages for a total of 1405696.00 KB.
NOTE: SAS threaded sort was used.
NOTE: The data set WORK.TEST3 has 2140000 observations and 17 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           4.87 seconds
      user cpu time       4.34 seconds
      system cpu time     2.76 seconds
      memory              206253.09k
      OS Memory           215364.00k
      Timestamp           06/29/2017 08:30:43 PM
      Step Count                        3  Switch Count  4&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Just like the&amp;nbsp;diagram you give, SORTSIZE is part of the MEMSIZE. Even if you set the number of SORTSIZE greater than MEMSIZE, the max amount memory of the SORT procedure can use is depend on the MEMSIZE. Is that true?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Jun 2017 13:06:38 GMT</pubDate>
    <dc:creator>Slash</dc:creator>
    <dc:date>2017-06-29T13:06:38Z</dc:date>
    <item>
      <title>What's the meaning of value MIN and MAX of SORTSIZE system option?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/371341#M275885</link>
      <description>&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;Hi, Guys&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;I'm very confused about the value MIN and MAX of SORTSIZE system option. Here is from SAS Help and Document.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;Syntax&lt;/STRONG&gt; &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;-SORTSIZE n | nK | nM | nG | hexX | MIN | MAX&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;SORTSIZE= n | nK | nM | nG | hexX | MIN | MAX&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;Required Arguments&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;n | nK | nM | nG&lt;/STRONG&gt; specifies the amount of memory in multiples of 1; 1,024 (kilobytes); 1,048,576 (megabytes); and 1,073,741,824 (gigabytes) respectively. You can specify decimal values for the number of kilobytes, megabytes, or gigabytes. For example, a value of 8 specifies 8 bytes, a value of .782k specifies 801 bytes, and a value of 3m specifies 3,145,728 bytes.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;hexX&lt;/STRONG&gt; specifies the amount of memory as a hexadecimal value. You must specify the value beginning with a number (0–9), followed by an X. For example, the value 2dx sets the amount of memory to 45 bytes.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;MIN&amp;nbsp;&lt;/STRONG&gt;specifies the minimum amount of memory available.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;MAX&amp;nbsp;&lt;/STRONG&gt;specifies the maximum amount of memory available. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;SPAN&gt;I've ran some test. If I set SORTSIZE=MIN, the actual value is 0. So I ran a SORT procedure with a large data, too see whether the SAS process would use memory to sort data. And it actually used memory, it's just like when you set SORTSIZE=MAX.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;SPAN&gt;So, I became very confused. What's the difference between MIN and MAX?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
/* sample data*/
data test;
	length id $ 500;
	set sashelp.cars;
	do i=1 to 5000;
		id=put(uniform(i)*1000+_n_,z6.);
		output;
	end;
run;

option fullstimer;

/* Set SORTSIZE=MIN*/
option sortsize=MIN;
/* Get the value of SORTSIZE*/
%put SORTSIZE is: %sysfunc(getoption(sortsize));
/* Sort the data*/
proc sort data=test out=test1;
	by id;
run;

/* Set SORTSIZE=MAX*/
option sortsize=MAX;
/* Get the value of SORTSIZE*/
%put SORTSIZE is: %sysfunc(getoption(sortsize));
/* Sort the data*/
proc sort data=test out=test2;
	by id;
run;

/*Set SORTSIZE=300M*/
option sortsize=300M;
/* Get the value of SORTSIZE*/
%put SORTSIZE is: %sysfunc(getoption(sortsize));
/* Sort the data*/
proc sort data=test out=test3;
	by id;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;SPAN&gt;Here is the information of Log, the memory used when&amp;nbsp;SORTSIZE=MIN is just same as when SORTSIZE=MAX.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;43
44
45   %put %sysfunc(getoption(memsize));
2147483648
46
47   /* sample data*/
48   data test;
49       length id $ 500;
50       set sashelp.cars;
51       do i=1 to 5000;
52           id=put(uniform(i)*1000+_n_,z6.);
53           output;
54       end;
55   run;

NOTE: There were 428 observations read from the data set SASHELP.CARS.
NOTE: The data set WORK.TEST has 2140000 observations and 17 variables.
NOTE: DATA statement used (Total process time):
      real time           3.18 seconds
      user cpu time       1.09 seconds
      system cpu time     0.45 seconds
      memory              511.43k
      OS Memory           10468.00k
      Timestamp           06/28/2017 10:43:37 PM
      Step Count                        5  Switch Count  0


56
57   option fullstimer;
58
59   /* Set SORTSIZE=MIN*/
60   option sortsize=MIN;
61   /* Get the value of SORTSIZE*/
62   %put SORTSIZE is: %sysfunc(getoption(sortsize));
SORTSIZE is: 0
63   /* Sort the data*/
64   proc sort data=test out=test1;
65       by id;
66   run;

NOTE: There were 2140000 observations read from the data set WORK.TEST.
NOTE: The data set WORK.TEST1 has 2140000 observations and 17 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           18.01 seconds
      user cpu time       5.36 seconds
      system cpu time     4.68 seconds
      memory              1686892.54k
      OS Memory           1696752.00k
      Timestamp           06/28/2017 10:43:55 PM
      Step Count                        6  Switch Count  0


67
68   /* Set SORTSIZE=MAX*/
69   option sortsize=MAX;
70   /* Get the value of SORTSIZE*/
71   %put SORTSIZE is: %sysfunc(getoption(sortsize));
SORTSIZE is: MAX
72   /* Sort the data*/
73   proc sort data=test out=test2;
74       by id;
75   run;

NOTE: There were 2140000 observations read from the data set WORK.TEST.
NOTE: The data set WORK.TEST2 has 2140000 observations and 17 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           12.06 seconds
      user cpu time       4.82 seconds
      system cpu time     3.51 seconds
      memory              1686892.54k
      OS Memory           1696752.00k
      Timestamp           06/28/2017 10:44:07 PM
      Step Count                        7  Switch Count  0


76
77   /*Set SORTSIZE=300M*/
78   option sortsize=300M;
79   /* Get the value of SORTSIZE*/
80   %put SORTSIZE is: %sysfunc(getoption(sortsize));
SORTSIZE is: 314572800
81   /* Sort the data*/
82   proc sort data=test out=test3;
83       by id;
84   run;

NOTE: There were 2140000 observations read from the data set WORK.TEST.
NOTE: The data set WORK.TEST3 has 2140000 observations and 17 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           29.62 seconds
      user cpu time       5.39 seconds
      system cpu time     3.79 seconds
      memory              312110.68k
      OS Memory           321204.00k
      Timestamp           06/28/2017 10:44:37 PM
      Step Count                        8  Switch Count  0


&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;SPAN&gt;And, If the number of SORTSIZE is greater than the number of MEMSIZE,&amp;nbsp;Is it will silently reduced to&amp;nbsp;the number of MEMSIZE?(Just to confirm, from the test, it is true.)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2017 15:12:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/371341#M275885</guid>
      <dc:creator>Slash</dc:creator>
      <dc:date>2017-06-28T15:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: What's the meaning of value MIN and MAX of SORTSIZE system option?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/371526#M275886</link>
      <description>&lt;P&gt;&lt;FONT size="3" face="courier new,courier"&gt;&lt;SPAN&gt;&amp;gt; If the number of SORTSIZE is greater than the number of MEMSIZE,&amp;nbsp;Is it silently reduced to&amp;nbsp;the number of MEMSIZE?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;No it isn't. And your test is invalid: Your &lt;FONT size="3" face="courier new,courier"&gt;&lt;SPAN&gt;MEMSIZE &lt;/SPAN&gt;&lt;/FONT&gt;is 2GB and you set &lt;FONT size="3" face="courier new,courier"&gt;&lt;SPAN&gt;SORTSIZE &lt;/SPAN&gt;&lt;/FONT&gt;to 300MB.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Excerpt&amp;nbsp;for the book linked in my signature, which includes a whole chapter on proc sort and its parameters:&lt;/P&gt;
&lt;P&gt;- The value for&amp;nbsp;&lt;FONT size="3" face="courier new,courier"&gt;&lt;SPAN&gt;SORTSIZE &lt;/SPAN&gt;&lt;/FONT&gt;should not be greater than the amount of available memory. If SAS were to perform an internal sort while the OS is paging its memory calls, the performance would be much worse than doing an external sort.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;About memory and still from the book: Note that MEMSIZE is *not* the amount of available memory.&lt;/P&gt;
&lt;P&gt;You can get this amount with&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;%put Free RAM =&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt; %sysfunc(putn(%sysfunc(getoption(xmrlmem))/1024**2,comma10.))MB;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;See diagram below:&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9955i80DBF27D04C2CF02/image-size/original?v=1.0&amp;amp;px=-1" alt="aaa1.PNG" title="aaa1.PNG" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2017 05:03:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/371526#M275886</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-06-29T05:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: What's the meaning of value MIN and MAX of SORTSIZE system option?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/371531#M275887</link>
      <description>&lt;P&gt;About the MIN value, what would you ever use this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are simply&amp;nbsp;interested in proc sort's internals, you may be interested in the explanations in the same chapter. I won't post it here as it's too long, but you can see the different phases yourself by running the code below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Excerpt:&lt;/P&gt;
&lt;P&gt;As an exercise, we sort a table and gradually reduce the amount of memory available to PROC SORT in order to degrade its performance. As PROC SORT goes through different algorithms to accommodate its execution environment, it gives information about its execution choices.&lt;/P&gt;
&lt;P&gt;Here is the code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;option fullstimer msglevel=I cpucount=2 compress=no;
data TMP; do I=1 to 1e6; output; end; run;

*Test1; proc sort data=TMP out=TMP1 sortsize=90000k details; by I; run;
*Test2; proc sort data=TMP out=TMP1 sortsize= 9000k details; by I; run;
*Test3; proc sort data=TMP out=TMP1 sortsize= 2300k details; by I; run;
*Test4; proc sort data=TMP out=TMP1 sortsize=  900k details; by I; run;
*Test5; proc sort data=TMP out=TMP1 sortsize=   90k details; by I; run;
*Test6; proc sort data=TMP(obs=99)  sortsize=90000k details; by I; run;
 &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2017 05:39:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/371531#M275887</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-06-29T05:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: What's the meaning of value MIN and MAX of SORTSIZE system option?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/371671#M275888</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp; Chris! That's very helpful.&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; I will buy the book to study.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;About the value of MIN and MAX, I just want to know the difference. Because from the test result, they seems no difference.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And the other question:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;gt; If the number of SORTSIZE is greater than the number of MEMSIZE,&amp;nbsp;Is it silently reduced to&amp;nbsp;the number of MEMSIZE?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It's not? Because I ran a test, the log showed that it's true. I forgot paste the code and log yesterday. I set the MEMSIZE to 256M, SORTSIZE to 1G in sasv9.cfg, the configuration file. The SORT procedure&amp;nbsp;can only use memory below 256M, even the SORTSIZE is 1G.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;17   %put MEMSIZE = %sysfunc(putn(%sysfunc(getoption(memsize))/1024,comma10.))Kb;
MEMSIZE =    262,144Kb
18   %put SORTSIZE = %sysfunc(putn(%sysfunc(getoption(sortsize))/1024,comma10.))Kb;
SORTSIZE =  1,048,576Kb

19
20   option fullstimer msglevel=I;
21   proc sort data=test out=test3 details;
22       by id;
23   run;

NOTE: Utility file required.
NOTE: Utility file 1 page size is 262144 bytes.
NOTE: There were 2140000 observations read from the data set WORK.TEST.
NOTE: Utility file 1 contains 2140000 records and 13 sorted runs.
NOTE: Utility file 1 contains 5491 pages for a total of 1405696.00 KB.
NOTE: SAS threaded sort was used.
NOTE: The data set WORK.TEST3 has 2140000 observations and 17 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           4.87 seconds
      user cpu time       4.34 seconds
      system cpu time     2.76 seconds
      memory              206253.09k
      OS Memory           215364.00k
      Timestamp           06/29/2017 08:30:43 PM
      Step Count                        3  Switch Count  4&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Just like the&amp;nbsp;diagram you give, SORTSIZE is part of the MEMSIZE. Even if you set the number of SORTSIZE greater than MEMSIZE, the max amount memory of the SORT procedure can use is depend on the MEMSIZE. Is that true?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2017 13:06:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/371671#M275888</guid>
      <dc:creator>Slash</dc:creator>
      <dc:date>2017-06-29T13:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: What's the meaning of value MIN and MAX of SORTSIZE system option?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/371898#M275889</link>
      <description>&lt;P&gt;1- Agreed, value MIN seems of no practical value&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2- &lt;SPAN&gt;Is it silently reduced to&amp;nbsp;the number of MEMSIZE?&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; Yes it is as shown in the diagram. Apologies I read your question backwards. &lt;img id="smileyembarrassed" class="emoticon emoticon-smileyembarrassed" src="https://communities.sas.com/i/smilies/16x16_smiley-embarrassed.png" alt="Smiley Embarassed" title="Smiley Embarassed" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Note that REALMEMSIZE is the value that matters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2017 20:42:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/371898#M275889</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-06-29T20:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: What's the meaning of value MIN and MAX of SORTSIZE system option?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/372249#M275890</link>
      <description>&lt;P&gt;Thanks a lot!&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://communities.sas.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2017 16:44:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-s-the-meaning-of-value-MIN-and-MAX-of-SORTSIZE-system/m-p/372249#M275890</guid>
      <dc:creator>Slash</dc:creator>
      <dc:date>2017-06-30T16:44:20Z</dc:date>
    </item>
  </channel>
</rss>

