<?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: ERROR: The following columns were not found in the contributing tables: KLF, KNS, KSOZ with proc in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431815#M27888</link>
    <description>&lt;P&gt;Solved! Thank you!&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jan 2018 15:43:44 GMT</pubDate>
    <dc:creator>LucianTUM</dc:creator>
    <dc:date>2018-01-29T15:43:44Z</dc:date>
    <item>
      <title>ERROR: The following columns were not found in the contributing tables: KLF, KNS, KSOZ with proc sql</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431789#M27880</link>
      <description>&lt;P&gt;I have a data set and I just want to do:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;create table tmp_ivk as&lt;BR /&gt;select&lt;BR /&gt;KSOZ,&lt;BR /&gt;KNS,&lt;BR /&gt;KBTYP,&lt;BR /&gt;KLF,&lt;BR /&gt;count(*) as N 'N'&lt;BR /&gt;from db.grundgesamtheit&amp;amp;jahr1&lt;BR /&gt;group by KSOZ,&lt;BR /&gt;KNS,&lt;BR /&gt;KBTYP,&lt;BR /&gt;KLF&lt;BR /&gt;order by KSOZ,&lt;BR /&gt;KNS,&lt;BR /&gt;KBTYP,&lt;BR /&gt;KLF&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but I get constantly the ERROR message for the second data base.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also have an another data set and I did the same proc sql and it worked perfectly.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 14:36:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431789#M27880</guid>
      <dc:creator>LucianTUM</dc:creator>
      <dc:date>2018-01-29T14:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The following columns were not found in the contributing tables: KLF, KNS, KSOZ with proc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431790#M27881</link>
      <description>&lt;P&gt;The error message is perfectly clear:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H5&gt;The following columns were not found in the contributing tables: KLF, KNS, KSOZ with proc sql&lt;/H5&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Since we don't have your data sets, you need to go into the datasets and determine what variables are there and what&amp;nbsp;variables are missing and adjust your SQL accordingly.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 14:41:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431790#M27881</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-01-29T14:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The following columns were not found in the contributing tables: KLF, KNS, KSOZ with proc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431792#M27882</link>
      <description>&lt;P&gt;Of course is the message clear. I had a look on the dataset and the mentioned variables were present.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 14:53:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431792#M27882</guid>
      <dc:creator>LucianTUM</dc:creator>
      <dc:date>2018-01-29T14:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The following columns were not found in the contributing tables: KLF, KNS, KSOZ with proc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431793#M27883</link>
      <description>&lt;P&gt;When SAS tells you that a variable is not there, it isn't there, period.&lt;/P&gt;
&lt;P&gt;Post the log of your code (complete step!), and the part of a proc contents output for all the contributing datasets that shows the variables.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 14:56:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431793#M27883</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-01-29T14:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The following columns were not found in the contributing tables: KLF, KNS, KSOZ with proc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431794#M27884</link>
      <description>&lt;P&gt;You haven't shown what error message you're getting. That would definitely help to identify what problem your facing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looking at your code, a number of possibilities exist. Have you assigned the libname db?, Have you assigned the macro variable&amp;nbsp;jahr1 AND is it part of the actual filename?, and Do all of those variables exist in your datafile?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 14:57:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431794#M27884</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2018-01-29T14:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The following columns were not found in the contributing tables: KLF, KNS, KSOZ with proc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431796#M27885</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/189900"&gt;@LucianTUM&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Of course is the message clear. I had a look on the dataset and the mentioned variables were present.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;And yet you expect us to diagnose the problem, but you provide no information at all. We can't look at your datasets. You have all the information. As others have said, show us the SASLOG and PROC CONTENTS.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 15:00:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431796#M27885</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-01-29T15:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The following columns were not found in the contributing tables: KLF, KNS, KSOZ with proc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431815#M27888</link>
      <description>&lt;P&gt;Solved! Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 15:43:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431815#M27888</guid>
      <dc:creator>LucianTUM</dc:creator>
      <dc:date>2018-01-29T15:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The following columns were not found in the contributing tables: KLF, KNS, KSOZ with proc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431816#M27889</link>
      <description>&lt;P&gt;I am just a beginner. But, thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 15:44:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ERROR-The-following-columns-were-not-found-in-the-contributing/m-p/431816#M27889</guid>
      <dc:creator>LucianTUM</dc:creator>
      <dc:date>2018-01-29T15:44:15Z</dc:date>
    </item>
  </channel>
</rss>

