<?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: optimisation code in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688463#M209143</link>
    <description>&lt;P&gt;Before you try to optimize the code, you would want to optimize the data structure. Without commenting about your specific code, one of the problems is that the data structure is poor. Splitting data up like this, so you have a data set for each year, is in general a very poor practice that makes coding harder. So if you have any control whatsoever about how the data is supplied, then create one large data set that has all the years of interest. I am thankful that whoever created the databases that I work with did not try to separate the databases into yearly database tables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as your code goes, this can't possibly work (I have only shown a fraction of the code)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;select 2010 as vision, a.* from lib.glob_sin_rc_0910 as a /* A modifier */
union all
select 2011 as vision, a.* from lib.glob_sin_rc_0911 as a&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can't have multiple data sets identified "as a", each one has to have a different letter identifier. Select 2010 is also not valid SAS code, as after SELECT should be a variable name, and 2010 is not a variable name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, if I were you, I would fix the data structure first, and then coding is easy. If that's not possible, then you need to create working code for a simple case, such as just the three rows above covering two different years. Once you get that to work, then the rest ought to be easy.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another alternative is to use something like a DATA step SET command, for example&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;set lib.glob_sin_rc_09:;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Whether or not that works for you is something I don't know, you'd have to try it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 02 Oct 2020 10:55:06 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2020-10-02T10:55:06Z</dc:date>
    <item>
      <title>optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688454#M209136</link>
      <description>&lt;P&gt;Hello sas community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope you are doing well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please i wanna&amp;nbsp; optimise this part of code can you help because i dont use much the&amp;nbsp; if and do ....&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/* Union results base */&lt;BR /&gt;proc sql;&lt;BR /&gt;create table lib.globsin_rc_union_&amp;amp;suffixe as&lt;/P&gt;&lt;P&gt;select 2010 as vision, a.* from lib.glob_sin_rc_0910 as a /* A modifier */&lt;BR /&gt;union all&lt;BR /&gt;select 2011 as vision, a.* from lib.glob_sin_rc_0911 as a&lt;BR /&gt;union all&lt;BR /&gt;select 2012 as vision, a.* from lib.glob_sin_rc_0912 as a&lt;BR /&gt;union all&lt;BR /&gt;select 2013 as vision, a.* from lib.glob_sin_rc_0913 as a&lt;BR /&gt;union all&lt;BR /&gt;select 2014 as vision, a.* from lib.glob_sin_rc_0914 as a&lt;BR /&gt;union all&lt;BR /&gt;select 2015 as vision, a.* from lib.glob_sin_rc_0915 as a&lt;BR /&gt;union all&lt;BR /&gt;select 2016 as vision, a.* from lib.glob_sin_rc_0916 as a&lt;BR /&gt;union all&lt;BR /&gt;select 2017 as vision, a.* from lib.glob_sin_rc_0917 as a&lt;BR /&gt;union all&lt;BR /&gt;select 2018 as vision, a.* from lib.glob_sin_rc_0918 as a&lt;BR /&gt;union all&lt;BR /&gt;select 2019 as vision, a.* from lib.glob_sin_rc_0919 as a&lt;BR /&gt;union all&lt;BR /&gt;select 2020 as vision, a.* from lib.glob_sin_rc_0920 as a&lt;/P&gt;&lt;P&gt;order by vision,exe;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2020 09:43:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688454#M209136</guid>
      <dc:creator>najoie</dc:creator>
      <dc:date>2020-10-02T09:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688463#M209143</link>
      <description>&lt;P&gt;Before you try to optimize the code, you would want to optimize the data structure. Without commenting about your specific code, one of the problems is that the data structure is poor. Splitting data up like this, so you have a data set for each year, is in general a very poor practice that makes coding harder. So if you have any control whatsoever about how the data is supplied, then create one large data set that has all the years of interest. I am thankful that whoever created the databases that I work with did not try to separate the databases into yearly database tables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as your code goes, this can't possibly work (I have only shown a fraction of the code)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;select 2010 as vision, a.* from lib.glob_sin_rc_0910 as a /* A modifier */
union all
select 2011 as vision, a.* from lib.glob_sin_rc_0911 as a&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can't have multiple data sets identified "as a", each one has to have a different letter identifier. Select 2010 is also not valid SAS code, as after SELECT should be a variable name, and 2010 is not a variable name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, if I were you, I would fix the data structure first, and then coding is easy. If that's not possible, then you need to create working code for a simple case, such as just the three rows above covering two different years. Once you get that to work, then the rest ought to be easy.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another alternative is to use something like a DATA step SET command, for example&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;set lib.glob_sin_rc_09:;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Whether or not that works for you is something I don't know, you'd have to try it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2020 10:55:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688463#M209143</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-10-02T10:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688480#M209155</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp; Hi, thank you for your reply with all details that you noticed !!!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So actually juste to explain why do i need to create this table :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have to prepare the data for each year&amp;nbsp; fro example&amp;nbsp; from&amp;nbsp; [2010,2020] because i have to end for each year the data like this :&amp;nbsp;&lt;/P&gt;&lt;P&gt;for year = 2010 i have to end the data at 31/12/2010 .... year = 2019 i have to end the data at 31/12/2019.&lt;/P&gt;&lt;P&gt;Then i create a table to make all the base unified : at the end i should have all the exercices and vues in the same table ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was thinking about to make&amp;nbsp; %Do ... and make like variable for exercices to make it like a macro to add table after table until i have all the data and years on it .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That is my goal ...&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have any suggestion i am open for more details ...&lt;/P&gt;&lt;P&gt;regards&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2020 11:16:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688480#M209155</guid>
      <dc:creator>najoie</dc:creator>
      <dc:date>2020-10-02T11:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688482#M209157</link>
      <description>&lt;P&gt;My comment was to go back to the method that creates these input data sets, and restructure the input data so it is not split by years. If that is something you have control over. Then your coding is much simpler.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2020 11:19:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688482#M209157</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-10-02T11:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688489#M209163</link>
      <description>Ok thank you so much, i will try to follow these instruction to prepare the data</description>
      <pubDate>Fri, 02 Oct 2020 11:46:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688489#M209163</guid>
      <dc:creator>najoie</dc:creator>
      <dc:date>2020-10-02T11:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688491#M209165</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp; ok thank you so much i will try what you advice me to do ...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and if any new posts related to this case for sharing more advices&amp;nbsp; it is welcoming...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2020 11:48:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688491#M209165</guid>
      <dc:creator>najoie</dc:creator>
      <dc:date>2020-10-02T11:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688494#M209168</link>
      <description>&lt;P&gt;Not sure why you choose to use the word "optimisation" in your title.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regardless, the question is the same as one found on Stackoverflow "&lt;A href="https://stackoverflow.com/questions/63936667/concatenating-large-number-of-tables-in-sas" target="_self"&gt;concatenating large number of tables in sas&lt;/A&gt;" with answers&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;[have your macro] do all stacking in a single SQL statement&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;and&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Use DATA Step with SET&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2020 11:59:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688494#M209168</guid>
      <dc:creator>RichardDeVen</dc:creator>
      <dc:date>2020-10-02T11:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688668#M209249</link>
      <description>&lt;P&gt;If your tables have identical column names then PROC APPEND or PROC DATASETS with the APPEND statement will work far quicker than SQL or DATA steps.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Oct 2020 05:31:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688668#M209249</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-10-03T05:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688681#M209263</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;, Hello !&lt;BR /&gt;Yes it is, i have identical column&amp;nbsp;names and the same column&amp;nbsp;for all tables i want that be unified in one table.&lt;BR /&gt;Ok i will try your solution thank you so much for yr reply....&lt;BR /&gt;regards&amp;nbsp;</description>
      <pubDate>Sat, 03 Oct 2020 13:38:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688681#M209263</guid>
      <dc:creator>najoie</dc:creator>
      <dc:date>2020-10-03T13:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688685#M209266</link>
      <description>Thank you for sharing.&lt;BR /&gt;&lt;BR /&gt;Using " optimisation" mean that i want something making my code with less lines and with a spead result of my unified data.</description>
      <pubDate>Sat, 03 Oct 2020 13:47:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688685#M209266</guid>
      <dc:creator>najoie</dc:creator>
      <dc:date>2020-10-03T13:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688723#M209288</link>
      <description>&lt;P&gt;Optimising code is generally not understood as reducing the volume of code.&lt;/P&gt;
&lt;P&gt;The third factor to consider (after code performance and code size) is code legibility.&lt;/P&gt;
&lt;P&gt;Of the 3, size is the lowest priority.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do not necessarily believe that tables split by month are bad. It depends on the volume and the usage.&lt;/P&gt;
&lt;P&gt;SAS is not always fast processing huge tables. Hundreds of variables and millions of rows are fine, but if that's your monthly snapshot, creating a single table over many years may be detrimental, especially if you seldom process all years together.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you may want to add in the original tables are ID columns, for example CALENDAR_YEAR or/and FISCAL_YEAR.&lt;/P&gt;
&lt;P&gt;If the monthly tables are sorted by EXE, the yearly sorted table can simply be:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; data YEARLY;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; set&amp;nbsp;&lt;SPAN&gt;LIB.GLOB_SIN_RC_0910 - LIB.GLOB_SIN_RC_0920;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; run;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;No need to sort the data, it is already sorted, huge resource savings there compared to SQL.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you don't have ID variables, you should -as mentioned-, but as a workaround you can use option INDSNAME to derive it in the data step above.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Maybe you don't need to duplicate the data at all. If you don't use the view repeatedly, this might be enough:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; data YEARLY/view=YEARLY;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; set&amp;nbsp;&lt;SPAN&gt;LIB.GLOB_SIN_RC_0910 - LIB.GLOB_SIN_RC_0920;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; run;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you need the SORTED flag to be set (because, for example proc SQL is used later, and doesn't know the data is sorted and wants to sort it), you can add a non-validated&amp;nbsp;SORTED flag:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; data YEARLY_V(sortedby=MONTH EXE)/view=YEARLY_V;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; set&amp;nbsp;&lt;SPAN&gt;LIB.GLOB_SIN_RC_0910 - LIB.GLOB_SIN_RC_0920;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; run;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;or you can validate the sorted order without re-sorting:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; data YEARLY_V/view=YEARLY_V;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; set&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;LIB.GLOB_SIN_RC_0910 - LIB.GLOB_SIN_RC_0920;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; run;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; proc sort data=YEARLY_V out=YEARLY presorted;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; by MONTH EXE;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; run;&lt;/SPAN&gt;&lt;/FONT&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;
&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>Sat, 03 Oct 2020 23:37:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688723#M209288</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-10-03T23:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688724#M209289</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;fewer&lt;/STRONG&gt; &lt;/EM&gt;lines&lt;/P&gt;</description>
      <pubDate>Sat, 03 Oct 2020 23:40:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688724#M209289</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-10-03T23:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: optimisation code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688786#M209331</link>
      <description>Thank you so much !!&lt;BR /&gt;</description>
      <pubDate>Sun, 04 Oct 2020 19:45:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/optimisation-code/m-p/688786#M209331</guid>
      <dc:creator>najoie</dc:creator>
      <dc:date>2020-10-04T19:45:13Z</dc:date>
    </item>
  </channel>
</rss>

