<?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: The table &amp;quot;_TEMP5.eu_occ&amp;quot; cannot be opened because it does not contain any columns. in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/The-table-quot-TEMP5-eu-occ-quot-cannot-be-opened-because-it/m-p/592014#M8024</link>
    <description>I have tried using PROC as well as manually. This table comes with the learning data exercise, so not sure how data set created under data folder</description>
    <pubDate>Thu, 26 Sep 2019 20:21:34 GMT</pubDate>
    <dc:creator>ashish9541</dc:creator>
    <dc:date>2019-09-26T20:21:34Z</dc:date>
    <item>
      <title>The table "_TEMP5.eu_occ" cannot be opened because it does not contain any columns.</title>
      <link>https://communities.sas.com/t5/SAS-Studio/The-table-quot-TEMP5-eu-occ-quot-cannot-be-opened-because-it/m-p/591932#M8019</link>
      <description>&lt;P&gt;Unable to open data table&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The table "_TEMP5.eu_occ" cannot be opened because it does not contain any columns.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 17:33:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/The-table-quot-TEMP5-eu-occ-quot-cannot-be-opened-because-it/m-p/591932#M8019</guid>
      <dc:creator>ashish9541</dc:creator>
      <dc:date>2019-09-26T17:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: The table "_TEMP5.eu_occ" cannot be opened because it does not contain any columns.</title>
      <link>https://communities.sas.com/t5/SAS-Studio/The-table-quot-TEMP5-eu-occ-quot-cannot-be-opened-because-it/m-p/592005#M8023</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292484"&gt;@ashish9541&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Unable to open data table&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The table "_TEMP5.eu_occ" cannot be opened because it does not contain any columns.&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;How did the data set get created? Check the log when running code to see what happens. A data set created without any records or variables will say so in the log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;PRE&gt;250  data work.junk;
251  run;

NOTE: The data set WORK.JUNK has 1 observations and 0 variables.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.00 seconds
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And how are you attempting to open the data set?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 20:03:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/The-table-quot-TEMP5-eu-occ-quot-cannot-be-opened-because-it/m-p/592005#M8023</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-09-26T20:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: The table "_TEMP5.eu_occ" cannot be opened because it does not contain any columns.</title>
      <link>https://communities.sas.com/t5/SAS-Studio/The-table-quot-TEMP5-eu-occ-quot-cannot-be-opened-because-it/m-p/592014#M8024</link>
      <description>I have tried using PROC as well as manually. This table comes with the learning data exercise, so not sure how data set created under data folder</description>
      <pubDate>Thu, 26 Sep 2019 20:21:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/The-table-quot-TEMP5-eu-occ-quot-cannot-be-opened-because-it/m-p/592014#M8024</guid>
      <dc:creator>ashish9541</dc:creator>
      <dc:date>2019-09-26T20:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: The table "_TEMP5.eu_occ" cannot be opened because it does not contain any columns.</title>
      <link>https://communities.sas.com/t5/SAS-Studio/The-table-quot-TEMP5-eu-occ-quot-cannot-be-opened-because-it/m-p/592025#M8028</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292484"&gt;@ashish9541&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I have tried using PROC as well as manually. This table comes with the learning data exercise, so not sure how data set created under data folder&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I suggest that you go back through any set up instructions, redo&amp;nbsp;and check each step carefully as it appears the intended set may have been corrupted and you need to recreate the original data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: This sort of thing can be caused by your code while learning if you place the wrong data set name on any statement that creates output. Check the log frequently. As a new user that means for each proc or data step as it runs to see if you have output issues, such as the 0 observations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If&amp;nbsp; you write, or the training shows any code such as:&lt;/P&gt;
&lt;PRE&gt;data somedatasetname;
    set somedatasetname;
/* other code goes here*/
run;&lt;/PRE&gt;
&lt;P&gt;then that data step will completely overwrite an existing data set. So be very careful to not use the same name on the SET and DATA statements while learning.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also a missing SET statement is a likely cause of 0 observations as shown in my previous post. It is very good practice to always explicitly list the data set used for source data, either with a SET statement in a data step or the DATA= option of almost every procedure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 20:56:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/The-table-quot-TEMP5-eu-occ-quot-cannot-be-opened-because-it/m-p/592025#M8028</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-09-26T20:56:33Z</dc:date>
    </item>
  </channel>
</rss>

