<?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 SAS DI : LookUp Transformation Log in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-LookUp-Transformation-Log/m-p/584498#M17881</link>
    <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Would you please help on i ran the lookup transformation in SAS DI.the job log is showing&amp;nbsp; below note.&lt;/P&gt;&lt;P&gt;would you please suggest on below note in log .... what does it mean please&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Query over :&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;NOTE: There were 39432 observations read from the data set test&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;Source records with errors: 27360&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;Total lookup exceptions: 27360&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333300"&gt;Why are these suggesting source record errors?please help&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Aug 2019 10:59:10 GMT</pubDate>
    <dc:creator>JJP1</dc:creator>
    <dc:date>2019-08-28T10:59:10Z</dc:date>
    <item>
      <title>SAS DI : LookUp Transformation Log</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-LookUp-Transformation-Log/m-p/584498#M17881</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Would you please help on i ran the lookup transformation in SAS DI.the job log is showing&amp;nbsp; below note.&lt;/P&gt;&lt;P&gt;would you please suggest on below note in log .... what does it mean please&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Query over :&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;NOTE: There were 39432 observations read from the data set test&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;Source records with errors: 27360&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;Total lookup exceptions: 27360&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333300"&gt;Why are these suggesting source record errors?please help&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 10:59:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-LookUp-Transformation-Log/m-p/584498#M17881</guid>
      <dc:creator>JJP1</dc:creator>
      <dc:date>2019-08-28T10:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAS DI : LookUp Transformation Log</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-LookUp-Transformation-Log/m-p/584507#M17882</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/256123"&gt;@JJP1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look into the generated SAS code and things will become clear.&lt;/P&gt;
&lt;P&gt;These are the number of rows in your source table where there hasn't been a matching record in the lookup table.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; set &amp;lt;source table&amp;gt; end = eof;
.....
/* Examine success of lookups  */
   if ( rc0=0 ) then
   do;
      /* Write row to target  */
      output ...;
      return;
   end;
   else
   do;
      error_total + 1;
      ....
   end; /* One or more lookups failed */

   if (eof = 1) then
   do;
      put "Source records with errors: " error_total ;
      put "Total lookup exceptions: " exception_total ;
   end;&lt;/CODE&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;If you also define an error and exception table then that's where such things get captured.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 11:27:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-LookUp-Transformation-Log/m-p/584507#M17882</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-08-28T11:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAS DI : LookUp Transformation Log</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-LookUp-Transformation-Log/m-p/584508#M17883</link>
      <description>&lt;P&gt;I take it that these are the observations for which no lookup value was found.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 11:27:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-LookUp-Transformation-Log/m-p/584508#M17883</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-08-28T11:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAS DI : LookUp Transformation Log</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-LookUp-Transformation-Log/m-p/584511#M17884</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp;&amp;amp;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;for guiding me&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 11:31:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-LookUp-Transformation-Log/m-p/584511#M17884</guid>
      <dc:creator>JJP1</dc:creator>
      <dc:date>2019-08-28T11:31:12Z</dc:date>
    </item>
  </channel>
</rss>

