<?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: Search a dataset using a substring of a variable in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430810#M281643</link>
    <description>&lt;P&gt;Can you guarantee a minimum length?&amp;nbsp; For example, can you guarantee that all DSNB values are at least 3 characters long?&lt;/P&gt;</description>
    <pubDate>Thu, 25 Jan 2018 08:37:42 GMT</pubDate>
    <dc:creator>Astounding</dc:creator>
    <dc:date>2018-01-25T08:37:42Z</dc:date>
    <item>
      <title>Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430786#M281638</link>
      <description>&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;&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;I am using SAS version&amp;nbsp; 9.4 on z/OS mainframe.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following data in two datasets (as an example) -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dataset A&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Variable DSNA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; V SNA&lt;/P&gt;&lt;P&gt;ABC.DEF.GHI.DEU &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;5&lt;/P&gt;&lt;P&gt;ABC.DEF.GHI.KYZ&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;&lt;P&gt;ABC.DEF.GHI.LMB&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;&lt;P&gt;ADD.XYZ.GHI.ABD&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dataset B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Variable DSNB&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;VSNB&lt;/P&gt;&lt;P&gt;ABC.DEF.GHI&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;/P&gt;&lt;P&gt;ADD.XYZ.GHI&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to search Dataset A DSNA - using Dataset B DSNB.&amp;nbsp; I cannot just merge Dataset A and B - because DSNB is a substring of the variable DSNA.&amp;nbsp; In the above example, I need to return ABC.DEF.GHI.LMB and VSNA of 2 from the search using DSNB value of ABC.DEF.GHI.&amp;nbsp; &amp;nbsp;Basically - return the last (highest) value in DSNA.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can somebody kindly give me some hints how to go about doing this?&amp;nbsp; Thank you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 07:08:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430786#M281638</guid>
      <dc:creator>TingSern</dc:creator>
      <dc:date>2018-01-25T07:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430787#M281639</link>
      <description>&lt;P&gt;If DSNB variable is a fixed length then create substring of DSNA as new variable and use simple merge or&lt;/P&gt;
&lt;P&gt;if they may be more then one match use proc sql.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 07:17:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430787#M281639</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2018-01-25T07:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430798#M281640</link>
      <description>&lt;P&gt;Unfortunately, DSNB is not of fixed length.&amp;nbsp; I only showed the example as fixed length, but in the actual file, is variable length.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I am not familiar with PROC SQL - can somebody kindly post some examples of coding - so that I can follow?&amp;nbsp; Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 07:53:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430798#M281640</guid>
      <dc:creator>TingSern</dc:creator>
      <dc:date>2018-01-25T07:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430799#M281641</link>
      <description>&lt;P&gt;In fact, both DSNA and DSNB are variable in length.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 07:54:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430799#M281641</guid>
      <dc:creator>TingSern</dc:creator>
      <dc:date>2018-01-25T07:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430801#M281642</link>
      <description>&lt;P&gt;Try next code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;create table to_check as&lt;/P&gt;
&lt;P&gt;&amp;nbsp; select a.* , b.*&lt;/P&gt;
&lt;P&gt;&amp;nbsp; from A as a&lt;/P&gt;
&lt;P&gt;&amp;nbsp; join&amp;nbsp; B as b&lt;/P&gt;
&lt;P&gt;&amp;nbsp; on index(DSNA, DSNB) &amp;gt; 0;&lt;/P&gt;
&lt;P&gt;quit;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 08:25:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430801#M281642</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2018-01-25T08:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430810#M281643</link>
      <description>&lt;P&gt;Can you guarantee a minimum length?&amp;nbsp; For example, can you guarantee that all DSNB values are at least 3 characters long?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 08:37:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430810#M281643</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-01-25T08:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430815#M281644</link>
      <description>&lt;P&gt;Next code is tested and gives the wanted results:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data dataA;
length DSNA $ 20;
input DSNA $ v_sna;
cards;
ABC.DEF.GHI.DEU                  5
ABC.DEF.GHI.KYZ                  1
ABC.DEF.GHI.LMB                  2
ADD.XYZ.GHI.ABD                  1
;
run;

data dataB;&lt;BR /&gt;length DSNB $15;
input DSNB $ v_snb;
cards;
ABC.DEF.GHI                           3
ADD.XYZ.GHI                           5
;
run;

proc sql;
  create table to_check as
  select a.*, b.*
  from dataA as a 
  join dataB as b
  on index(DSNA, strip(DSNB)) &amp;gt; 0;
quit;  &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 25 Jan 2018 08:53:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430815#M281644</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2018-01-25T08:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430820#M281645</link>
      <description>&lt;P&gt;Hi Shmuel,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much.&amp;nbsp; I am now testing the code in my z/OS mainframe.&amp;nbsp; Will let you know if it works.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 08:58:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430820#M281645</guid>
      <dc:creator>TingSern</dc:creator>
      <dc:date>2018-01-25T08:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430824#M281646</link>
      <description>&lt;P&gt;To Astounding -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes - the minimum length for both DSNA and DSNB are all greater than 8 characters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 09:14:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430824#M281646</guid>
      <dc:creator>TingSern</dc:creator>
      <dc:date>2018-01-25T09:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430849#M281647</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am testing the SQL - running it on my mainframe - z/OS operating system - the SQL procedure started at 16:56 and now is already 18:35 - and it is still running.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DSNA variable has 855593 observations and DSNB has 17471 observations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The mainframe is a 1,700 MIPS machine - definitely not slow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am wondering if there is anything else I could check?&amp;nbsp;&amp;nbsp; Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 10:40:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430849#M281647</guid>
      <dc:creator>TingSern</dc:creator>
      <dc:date>2018-01-25T10:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430865#M281648</link>
      <description>&lt;P&gt;Alternative to sql -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As DSNB is much smaller (less observations) then DSNA you may try use &lt;STRONG&gt;iterative hash&lt;/STRONG&gt; technique&lt;/P&gt;
&lt;P&gt;in a datastep instead sql,&amp;nbsp;but I'm not expert with it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The hashing will read DSNB once, at the beginning into memory and&lt;/P&gt;
&lt;P&gt;do all checking reading DSNA once.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 16:31:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430865#M281648</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2018-01-25T16:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430871#M281649</link>
      <description>&lt;P&gt;Given that you have a minimum length of 8 for DSNB:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;create table want as&lt;/P&gt;
&lt;P&gt;select a.*, b.* from dataset_a a, dataset_b b&lt;/P&gt;
&lt;P&gt;where substr(dsna, 1, &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; = substr(dsnb, 1, &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; and&lt;/P&gt;
&lt;P&gt;dsnb &amp;lt;= dsna&lt;/P&gt;
&lt;P&gt;order by dsnb dsna;&lt;/P&gt;
&lt;P&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's untested, but it should speed things up and give you the right observations to subset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It does run into problems, however, if there are duplicate values for DSNB in DATASET_B.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's conceivable that this would actually run faster if you create (ahead of time) separate variables holding the first 8 characters of DSNA and DSNB so that SQL doesn't need to apply SUBSTR.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finally, note that this does not give you the final answer.&amp;nbsp; It gives you a superset of the records you need.&amp;nbsp; You still need to filter out the largest with something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data really_want;&lt;/P&gt;
&lt;P&gt;set want;&lt;/P&gt;
&lt;P&gt;by dsnb;&lt;/P&gt;
&lt;P&gt;if last.dsnb;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 14:22:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430871#M281649</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-01-25T14:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430966#M281650</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/137822"&gt;@TingSern&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am testing the SQL - running it on my mainframe - z/OS operating system - the SQL procedure started at 16:56 and now is already 18:35 - and it is still running.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DSNA variable has 855593 observations and DSNB has 17471 observations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The mainframe is a 1,700 MIPS machine - definitely not slow.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am wondering if there is anything else I could check?&amp;nbsp;&amp;nbsp; Thank you.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If either set has duplicate values for either the search or target string you might consider searching on DISTINCT values of the strings:&lt;/P&gt;
&lt;P&gt;such as&lt;/P&gt;
&lt;PRE&gt;proc sql;
  create table to_check as
  select a.*, b.*
  from (select distinct DSNA from dataA) as a 
  join (select distinct DSNB from dataB) as b
  on index(DSNA, strip(DSNB)) &amp;gt; 0;
quit;&lt;/PRE&gt;
&lt;P&gt;and then if you need more values from either of the sets use the resulting set with a LEFT or RIGHT&amp;nbsp;join on the appropriate variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the code that is running is similar to the &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/88384"&gt;@Shmuel&lt;/a&gt;'s original posting it is comparing every single record in A with every record in B, which would be 855593 * 17471 comparisons. Which might take some time. Also only include the variables you might need for matching purposes at this point as the more variables involved the more disk IO is going to be needed.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 15:55:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/430966#M281650</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-01-25T15:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/431252#M281651</link>
      <description>&lt;P&gt;If I understand your problem correctly, DSNB is always the leftmost substring of DSNA. Then something like this may work:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data a;
  length dsna $20 vsna 8;
  input dsna vsna;
cards;
ABC.DEF.GHI.DEU 5
ABC.DEF.GHI.KYZ 1
ABC.DEF.GHI.LMB 2
ADD.XYZ.GHI.ABD 1
;run;


data b;
  length dsnb $20 vsnb 8;
  input dsnb vsnb;
cards;
ABC.DEF.GHI 3
ADD.XYZ.GHI 5
;run;

proc sort data=a;
  by dsna;
run;

proc sort data=b;
  by dsnb;
run;

data want;
  set a(in=a) b(rename=(dsnb=dsna vsnb=vsna) in=b);
  by dsna;
  if b then do;
    dsnb=dsna;
    vsnb=vsna;
    end;
  retain dsnb vsnb;
  if a;
  if dsna=:trim(dsnb);
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 26 Jan 2018 13:10:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/431252#M281651</guid>
      <dc:creator>s_lassen</dc:creator>
      <dc:date>2018-01-26T13:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Search a dataset using a substring of a variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/431744#M281652</link>
      <description>&lt;P&gt;SQL takes too much overheads.&amp;nbsp; A simple DATA procedure is much faster (at least on z/OS mainframe).&amp;nbsp; Thank you very much for all your help.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 11:57:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-a-dataset-using-a-substring-of-a-variable/m-p/431744#M281652</guid>
      <dc:creator>TingSern</dc:creator>
      <dc:date>2018-01-29T11:57:33Z</dc:date>
    </item>
  </channel>
</rss>

