<?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: Alternate to sql using data step in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827929#M327043</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;on a.usubjid=b.usubjid and (b.astdt-1&amp;lt;=a.adt&amp;lt;=b.aendt2+ 3)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as I know, this ON clause where you are using inequalities and boolean conditions isn't possible in a DATA step merge. A DATA step merge requires exact match.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Aug 2022 17:37:21 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2022-08-09T17:37:21Z</dc:date>
    <item>
      <title>Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827916#M327036</link>
      <description>&lt;P&gt;Hello everyone,&lt;BR /&gt;I would like to have an alternate data step code for the below sql code. Any help would be appreciated.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
	create table crs(where=(anl02fl='Y')) as
	select a.*, b.anlfl as anl02fl, b.astdt, b.aendt, b.aedecod
	from adbmk as a
	left join adae(where=crsfl='y')) as b
	on a.usubjid=b.usubjid and (b.astdt-1&amp;lt;=a.adt&amp;lt;=b.aendt2+ 3)
	;
quit;

proc sort data=crs nodupkey;
	by usubjid adt adtm;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 09 Aug 2022 16:56:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827916#M327036</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2022-08-09T16:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827929#M327043</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;on a.usubjid=b.usubjid and (b.astdt-1&amp;lt;=a.adt&amp;lt;=b.aendt2+ 3)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as I know, this ON clause where you are using inequalities and boolean conditions isn't possible in a DATA step merge. A DATA step merge requires exact match.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 17:37:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827929#M327043</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-08-09T17:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827931#M327045</link>
      <description>&lt;P&gt;Is usubjid a unique key in table adae?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is usubjid a unique key in table adbmk?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why is this a left join? The condition anl02fl="Y" will essentially transform it into an inner join.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 17:43:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827931#M327045</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2022-08-09T17:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827932#M327046</link>
      <description>Exactly that where my issue comes. Can it be done in multiple data steps?</description>
      <pubDate>Tue, 09 Aug 2022 17:44:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827932#M327046</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2022-08-09T17:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827934#M327047</link>
      <description>because I would like to see the subjects from left(adbmk) table alone. usubjid is the unique key for both the datasets.</description>
      <pubDate>Tue, 09 Aug 2022 17:47:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827934#M327047</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2022-08-09T17:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827935#M327048</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/294544"&gt;@RAVI2000&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Can it be done in multiple data steps?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Why not use the tool that does exactly what you want in one step?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 17:50:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827935#M327048</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-08-09T17:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827936#M327049</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data crs(where=(anl04fl='Y'));
	merge adbmk(in=bmk) adae(in=ae where=(crsfl='Y') rename=(anlfl=anl04fl));
	by usubjid;
	if bmk;
	if astdt-1 &amp;lt;= adt &amp;lt;= aeendt2 +3;
run;

proc sort data=crs nodupkey;
	by usubjid adt adtm;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Is this not equivalent?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 17:50:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827936#M327049</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2022-08-09T17:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827937#M327050</link>
      <description>&lt;P&gt;Seems as if you have answered your own question,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/294544"&gt;@RAVI2000&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;As far as "is it equivalent?" I leave that to you to test on your data.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 17:52:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827937#M327050</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-08-09T17:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827938#M327051</link>
      <description>Well they don't match. That's what I am confused about. Aren't they both meet the same condition?</description>
      <pubDate>Tue, 09 Aug 2022 17:54:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827938#M327051</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2022-08-09T17:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827939#M327052</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/294544"&gt;@RAVI2000&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Well they don't match. That's what I am confused about. Aren't they both meet the same condition?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Not when there are multiple observations for the same value of USUBJID in either or the two inputs.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 18:01:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827939#M327052</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-08-09T18:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827940#M327053</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/294544"&gt;@RAVI2000&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Well they don't match.&amp;nbsp;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So you have information that you are not sharing with us. Please share it with us. Give an example of several records that don't match doing it via SQL and doing it via DATA step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;That's what I am confused about. Aren't they both meet the same condition?&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Running the code in SAS and looking at the results is much more authoritative than any answer I (or anyone else here in this forum) can give.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 18:04:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827940#M327053</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-08-09T18:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827941#M327054</link>
      <description>&lt;P&gt;You don't say what's wrong with either result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe...&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data crs(where=(anl04fl='Y'));
	merge adbmk(in=bmk) adae(in=ae where=(crsfl='Y') rename=(anlfl=anl04fl));
	by usubjid;
	if bmk;
	if not ae or (astdt-1 &amp;lt;= adt &amp;lt;= aeendt2 +3) then output;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This will keep the usubjid that are absent from table adae.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 18:06:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827941#M327054</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2022-08-09T18:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827942#M327055</link>
      <description>Good catch, both of the datasets have multiple observations for the same value of USUBJID. What can be done here?</description>
      <pubDate>Tue, 09 Aug 2022 18:10:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827942#M327055</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2022-08-09T18:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827948#M327056</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/294544"&gt;@RAVI2000&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Good catch, both of the datasets have multiple observations for the same value of USUBJID. What can be done here?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So USUBJID is NOT a UNIQUE key for either dataset.&amp;nbsp; What are the combination variables that uniquely identify the observations in each of the datasets?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general to do a MANY to MANY join you want to use SQL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But depending on what you are doing then perhaps you can use a simple INTERLEAVE&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  set tablea(in=inA) tableb(in=inB) ;
  by usubjid date ;
....&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to get what you want, but would need to know more about the dataset and the purpose of the join.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 18:44:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827948#M327056</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-08-09T18:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827957#M327061</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data adbmk;
input usubjid $ adt $ paramcd $;
cards;
100001 20MAY19 E2SRAL
100001 20MAY19 EF	 
100001 20MAY19 ETLK5 
100003 18JUL19 ETLK8 
100003 29JUL19 ETLK8 
100014 08JUL19 E2SRAL
100014 08JUL19 EF	 
100014 09JUL19 ETLK5 
100014 09JUL19 ETLK8 
100014 11JUL19 E2SRAL
100014 11JUL19 EF	 
100014 11JUL19 ETLK5 
100014 11JUL19 ETLK8 
100014 12JUL19 E2SRAL
100014 12JUL19 EF
100004 11JUL19 E12P70	
100004 11JUL19 E2SRAL
100006 14AUG19 ENG	
100006 14AUG19 ETLK13	
100006 14AUG19 ETLK17
100007 30AUG19 E12P70	
100007 30AUG19 E2SRAL
100015 24JAN20 E12P70	
100015 24JAN20 E2SRAL
100021 07APR20 EF	
100021 07APR20 ENG	
100021 07APR20 ETLK10	
100023 28MAY20 ETLK6	
100029 06AUG20 ETLK2	
100029 06AUG20 ETLK4
100031 12OCT20 E12P70	
100031 12OCT20 E2SRAL
100036 19OCT20 ETLK1B	
100036 19OCT20 ETLK2
100038 03NOV20 ETLK6
100040 05NOV20 E2SRAL
100042 27OCT20 EF	
100042 27OCT20 ENG	
100045 17NOV20 ETLK8	
100045 20NOV20 E12P70	
100048 14DEC20 ETLK4	
100048 14DEC20 ETLK5
100059 13MAR21 ETLK13		 
;

run;

data adae;
input usubjid $ astdt $ trt01a $ crsfl $ aendt $;
cards;
100014 03FEB20 3 &amp;nbsp;Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;03FEB20	
100018 10FEB20 3 &amp;nbsp;Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;12FEB20	
100018 13FEB20 3 &amp;nbsp;Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;13FEB20	
100029 10AUG20 5 &amp;nbsp;Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;10AUG20	
100029 17AUG20 5 &amp;nbsp;Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;17AUG20	
100031 06AUG20 5 &amp;nbsp;Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;07AUG20	
100031 07AUG20 5 &amp;nbsp;Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;21AUG20	
100032 11SEP20 5 &amp;nbsp;Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;12SEP20	
100040 24OCT20 5 &amp;nbsp;Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;28OCT20	
100047 21NOV20 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;21NOV20	
100047 25NOV20 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;25NOV20	
100047 28NOV20 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;29NOV20	
100047 04DEC20 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;05DEC20	
100047 15DEC20 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;15DEC20	
100047 22DEC20 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;22DEC20	
100048 15DEC20 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;16DEC20	
100048 18DEC20 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;19DEC20	
100048 22DEC20 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;23DEC20	
100048 29DEC20 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;29DEC20	
100048 05JAN21 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;06JAN21	
100048 12JAN21 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;12JAN21	
100049 15DEC20 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;16DEC20	
100049 28JAN21 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;29JAN21	
100056 30JAN21 12 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;01FEB21	
100056 01FEB21 12 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;02FEB21	
100059 02FEB21 12 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;02FEB21	
100059 05FEB21 12 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;05FEB21	
100059 25FEB21 12 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;26FEB21	
100061 19FEB21 11 Y	 &amp;nbsp; &amp;nbsp; &amp;nbsp;20FEB21	
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here is the data from both the datasets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to create a flag ANL02FL flag.&lt;/P&gt;
&lt;P&gt;ANL02FL flag records within ADBMK if a subject experience an CRS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following logic should be applied to determine if a reading falls within the given windiow.&lt;/P&gt;
&lt;P&gt;IF ADAE.ASTDT-1 &amp;lt;= ADBMK.ADT &amp;lt;= ADAE.AENDT+3;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 19:14:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827957#M327061</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2022-08-09T19:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827958#M327062</link>
      <description>Except for usubjid there are no common variables.</description>
      <pubDate>Tue, 09 Aug 2022 19:16:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/827958#M327062</guid>
      <dc:creator>RAVI2000</dc:creator>
      <dc:date>2022-08-09T19:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate to sql using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/828094#M327113</link>
      <description>&lt;P&gt;Your SQL code does not work with your sample data.&amp;nbsp; If you could supply SQL code that works properly with the data (and data which has numeric variables where the SQL expects them), then&amp;nbsp;it will be much easier to determine the equivalent DATA step code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem you have identified, doing a many-to-many in a DATA step takes a bit of coding.&amp;nbsp; But use of a hash object can make it reliable and useful.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 13:47:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Alternate-to-sql-using-data-step/m-p/828094#M327113</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2022-08-10T13:47:01Z</dc:date>
    </item>
  </channel>
</rss>

