<?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: Replicate match merge with Oracle SQL in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840877#M332482</link>
    <description>&lt;P&gt;I dont mean I want the last one only but for sas match merge if I have eg&lt;/P&gt;
&lt;P&gt;data A&amp;nbsp; &amp;nbsp; &amp;nbsp;data B&lt;/P&gt;
&lt;P&gt;1 a&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1 d&lt;/P&gt;
&lt;P&gt;1 b&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1 e&lt;/P&gt;
&lt;P&gt;1 c&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;result would be&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1 a d&lt;/P&gt;
&lt;P&gt;1 b e&lt;/P&gt;
&lt;P&gt;1 c e&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I mean the one extra on data A would merge to the last one in data B which is 1 e&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this is a very strange kind of merge and when is this ever be useful&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Oct 2022 13:43:01 GMT</pubDate>
    <dc:creator>HeatherNewton</dc:creator>
    <dc:date>2022-10-26T13:43:01Z</dc:date>
    <item>
      <title>Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840423#M332304</link>
      <description>&lt;P&gt;Hi am i right to say this, when a sas merge is many to one or one to many, oracle sql full join works. If many to many, then no normal sql can do that. I will have to create own sql command. I am thinking if the best way is use full outer join then set conditions to remove excess observations.&lt;BR /&gt;&lt;BR /&gt;Any insights.. my friend suggests oracle merge into might do the trick, any tried?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 07:31:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840423#M332304</guid>
      <dc:creator>HeatherNewton</dc:creator>
      <dc:date>2022-10-25T07:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match metge with oracle sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840424#M332305</link>
      <description>&lt;P&gt;provide a description or link to "merge into" from oracle.&lt;/P&gt;
&lt;P&gt;Provide more details on the type of merge you are trying to replicate.&lt;/P&gt;
&lt;P&gt;Are there any non-key common variables between the two datasets?&lt;/P&gt;
&lt;P&gt;Do you already have an counter variable in each dataset that can be used to insure the records are match in the proper order?&lt;/P&gt;
&lt;P&gt;Also how much does it matter whether or not the SAS merge is replicated 100%?&amp;nbsp; Perhaps there are aspects of the result that you are not using that mean you don't actually need to replicate those things.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 01:30:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840424#M332305</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-10-25T01:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match metge with oracle sql</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840425#M332306</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/416388"&gt;@HeatherNewton&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Hi am i right to say this, when a sas merge is many to one or one to many, oracle sql full join works. If many to many, then no normal sql can do that. I will have to create own sql command. I am thinking if the best way is use full outer join then set conditions to remove excess observations.&lt;BR /&gt;&lt;BR /&gt;Any insights.. my friend suggests oracle merge into might do the trick, any tried?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You keep searching for an SQL solution that will work exactly the same as a SAS MERGE - believe me there isn't any. MERGE does coalescing of columns with the same name from each table without explicit coding, in SQL you have to code it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also "normal" SQL can do many-to-many joins without a problem. SAS MERGE can't unless you get complicated and use other statements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The sooner you stop thinking of SQL in terms of DATA step processing, the sooner you will start to make progress.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 01:42:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840425#M332306</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-10-25T01:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840464#M332317</link>
      <description>&lt;P&gt;You keep asking the same thing over and over again, although you have gotten many answers from all the senior folks here. This is somehow disturbing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Take a few (think: thousands!) steps back and look at the big picture:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;what is the data I get initially?&lt;/LI&gt;
&lt;LI&gt;what is the information needed from this data?&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Once this process or these processes are sufficiently defined, you can go to work to implement them in Oracle.&lt;/P&gt;
&lt;P&gt;Any undocumented process in SAS, where nobody can tell you what it does (from the business/analytics side, without inspecting the SAS code) is most probably not worth bothering about anyway.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 08:25:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840464#M332317</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-10-25T08:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840815#M332450</link>
      <description>Sorry guys! I was hoping writing out sas match merge logic is easier than understanding what program is actually doing to the data. Also want to have same output for Comparison with production data.&lt;BR /&gt;&lt;BR /&gt;In my project, i have lots and lots of sas programs with match merge which i cant tell why merge is used. Eg in a credit card project, on a daily basis, we merge the card application info dataset (which is accumulated daily) with new daily application data. &lt;BR /&gt;&lt;BR /&gt;Eg data application;&lt;BR /&gt;         merge application dataA dataB;&lt;BR /&gt;         by application_ref_no;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;Basically from physical data, they are many to many. What i dont understand is why merge is applicable as only last entry of dataA and dataB would be used for the same application_ref_no..&lt;BR /&gt;&lt;BR /&gt;So i cant tell if using other join could work and if i used full join i will have much bigger output.&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Oct 2022 11:26:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840815#M332450</guid>
      <dc:creator>HeatherNewton</dc:creator>
      <dc:date>2022-10-26T11:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840856#M332470</link>
      <description>&lt;P&gt;You have THREE datasets that each have multiple observations for the same APPLICATION number?&lt;/P&gt;
&lt;P&gt;What would that even mean?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What do you mean by LAST one?&lt;/P&gt;
&lt;P&gt;SQL does not have a concept of LAST.&amp;nbsp; If you have an ordering variable you can mimic it by selecting the MAX.&lt;/P&gt;
&lt;P&gt;Is there some other variable (like a date?) that defines the order?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you only want the last one then subset each input dateset to the last observation per APPLICATION and then it is a simple one-to-one (to-one) join.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 12:48:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840856#M332470</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-10-26T12:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840877#M332482</link>
      <description>&lt;P&gt;I dont mean I want the last one only but for sas match merge if I have eg&lt;/P&gt;
&lt;P&gt;data A&amp;nbsp; &amp;nbsp; &amp;nbsp;data B&lt;/P&gt;
&lt;P&gt;1 a&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1 d&lt;/P&gt;
&lt;P&gt;1 b&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1 e&lt;/P&gt;
&lt;P&gt;1 c&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;result would be&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1 a d&lt;/P&gt;
&lt;P&gt;1 b e&lt;/P&gt;
&lt;P&gt;1 c e&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I mean the one extra on data A would merge to the last one in data B which is 1 e&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this is a very strange kind of merge and when is this ever be useful&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 13:43:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840877#M332482</guid>
      <dc:creator>HeatherNewton</dc:creator>
      <dc:date>2022-10-26T13:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840906#M332484</link>
      <description>&lt;P&gt;This is what a data step MERGE does. Keep in mind that the purest form of a MERGE has no BY statement and just sets two datasets side by side. This is also why the MERGE is called that and not JOIN.&lt;/P&gt;
&lt;P&gt;The inner simplicity of the data step is also the reason why it performs so well, but the SAS coder needs to be aware of every aspect of its working.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 14:17:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840906#M332484</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-10-26T14:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840918#M332487</link>
      <description>&lt;P&gt;That is just how MERGE works.&amp;nbsp; The reason E is "carried forward" is because there are no more observations to read that would change its value.&amp;nbsp; &lt;STRONG&gt;Remember this feature is WHY the one to many merge works.&lt;/STRONG&gt;&amp;nbsp; The variables contributed by the one observation dataset are never changed until the next BY group is reached.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But the question was WHY would YOU do that with bank application data?&amp;nbsp; What is the code trying to do?&lt;/P&gt;
&lt;P&gt;Perhaps the code did not expect there to be multiple observations for the same by group from more than one input dataset.&amp;nbsp; Perhaps you are trying to use the code on the wrong type of data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 14:37:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/840918#M332487</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-10-26T14:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/841008#M332514</link>
      <description>&lt;P&gt;MATCH MERGE crucially depends on observation order, which SQL (to my knowledge) wholly ignores.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, I think it is possible to replicate the match merge using the SQL code below.&amp;nbsp; But it must be preceded by a pair of data step, to put sequence numbers for every obs in BY group&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Make datasets A and B such that:
    ID=1 is one      to one
    ID=2 is one      to many (2)
    ID=3 is many (2) to one
    ID=4 is none     to many (2)
    ID=5 is many (2) to none
    ID=6 is many (3) to many (3) with identical freqs (N(a)=N(b)
    ID=7 is many (3) to many (2) with N(a)&amp;gt;N(b)
    ID=8 is many (2) to many (3) with N(a)&amp;lt;N(b)  */
data a;
  input id atext $7.  @@;
datalines;
1 Line1.1
2 Line2.1             
3 Line3.1  3 Line3.2

5 Line5.1  5 Line5.2  
6 Line6.1  6 Line6.2  6 Line6.3
7 Line7.1  7 Line7.2  7 Line7.3
8 Line8.1  8 Line8.2
run; 

data b;
  input id btext $7.  @@;
datalines;
1 Line1.1  
2 Line2.1  2 Line2.2  
3 Line3.1
4 Line4.1  4 Line4.2

6 Line6.1  6 Line6.2  6 Line6.3
7 Line7.1  7 Line7.2
8 Line8.1  8 Line8.2  8 Line8.3
run;


data viewa /view=viewa;
  set a;
  by id;
  if first.id then _seq1=1;
  else _seq1+1;
run;

data viewb/view=viewb;
  set b;
  by id;
  if first.id then _seq2=1;
  else _seq2+1;
run;

proc sql;
  create table want_sql
  as select coalesce(a.id,b.id) as id, atext,btext, _seq1, _seq2
  from  viewa as a full join viewb as b
  on  (a.id=b.id)
  group by calculated id
  having a._seq1=b._seq2  
      or a._seq1&amp;gt;max(b._seq2) and _seq2=max(b._seq2)
      or b._seq2&amp;gt;max(a._seq1) and _seq1=max(a._seq1)
  ;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The strategy here is to do exact matches on the BY variable (ID) and the calculated _SEQ variable.&amp;nbsp; Then, for whichever data set has a higher frequency for the BY-group-in-hand, match it to the maximum _SEQ is the "smaller" dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I think that this is a way to show SQL programmers what a simple match-merge does.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can test the results of the above via:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=want_sql;
  by id _seq1 _seq2;
run;

data want_merge;
  merge a b;
  by id;
run;

proc compare base=want_merge compare=want_sql (drop=_seq1 _seq2) notes noprint;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The PROC COMPARE reports:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOTE: No unequal values were found. All values compared are exactly equal.
NOTE: The data sets WORK.WANT_MERGE and WORK.WANT_SQL are equal in all respects.
NOTE: There were 18 observations read from the data set WORK.WANT_MERGE.
NOTE: There were 18 observations read from the data set WORK.WANT_SQL.
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And while adding a third data set C to the match-merge approach is trivial&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want_merge;
  merge a b c;
  by id;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;I do not want to think about replicating it in a single SELECT expression&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 19:46:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/841008#M332514</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2022-10-26T19:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/841011#M332517</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/416388"&gt;@HeatherNewton&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this is a very strange kind of merge and when is this ever be useful&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Bingo. You will rarely every see a many to many merge and the few I've come across are actually mistakes where the data ended up being many to many, after time when it originally was not and someone missing that. I would take a look at your use cases and see if you have &lt;U&gt;&lt;STRONG&gt;any&lt;/STRONG&gt;&lt;/U&gt; many to many joins in data step and I suspect you do not and thus this is a moot point and your SQL joins will mostly be fine.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my experience the issues with converting data step to SQL usually originate around first/last/by group processing and retain/lag logic that uses row order.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 19:51:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/841011#M332517</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-10-26T19:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/842451#M333121</link>
      <description>&lt;P&gt;I have now looked into my datasets and realised the below points:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Normally the merge are done on of two datasets with the same 30 variables by 2 to 4 variables on a daily basis. Wdata.pil_master seems accumulative and _pil_master which is a delta file of each day.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Data wdata.pil_master;
    merge wdata.pil_master _pil_master;
    by org_code account_no plan_num ref_no;
run;


&lt;/PRE&gt;
&lt;P&gt;so am i right to say the followings:&lt;/P&gt;
&lt;P&gt;if the entries in _pil_master is not new, it will amend those in wdata.pil_master&lt;/P&gt;
&lt;P&gt;if the entries in _pil_master is new, it will be added to wdata.pil_master&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is my understanding of merge in this case, correct?&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>Fri, 04 Nov 2022 07:07:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/842451#M333121</guid>
      <dc:creator>HeatherNewton</dc:creator>
      <dc:date>2022-11-04T07:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/842452#M333122</link>
      <description>&lt;P&gt;What does the log say?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 07:17:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/842452#M333122</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-11-04T07:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/842455#M333124</link>
      <description>&lt;P&gt;I have no log as I dont have real data to test yet&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 07:52:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/842455#M333124</guid>
      <dc:creator>HeatherNewton</dc:creator>
      <dc:date>2022-11-04T07:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Replicate match merge with Oracle SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/843024#M333333</link>
      <description>&lt;P&gt;You can answer your own questions by creating some test data and running your MERGE code on that.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Nov 2022 02:00:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replicate-match-merge-with-Oracle-SQL/m-p/843024#M333333</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-11-08T02:00:28Z</dc:date>
    </item>
  </channel>
</rss>

