<?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: newly created data &amp;quot;not a SAS data set&amp;quot; in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570569#M160909</link>
    <description>&lt;P&gt;This is what happens when I run the libname:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;14385 DM log 'clear';&lt;BR /&gt;14386 DM out 'clear';&lt;BR /&gt;14387&lt;BR /&gt;14388 libname thesis 'C:\Users\name\Documents\Dissertation\Data';&lt;BR /&gt;NOTE: Libref THESIS refers to the same physical library as LIWONDE.&lt;BR /&gt;NOTE: Libref THESIS was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\Users\name\Documents\Dissertation\Data&lt;BR /&gt;14389 data thesis.Aim1;&lt;BR /&gt;14390 set work.aim1;&lt;BR /&gt;14391 run;&lt;/P&gt;&lt;P&gt;ERROR: File THESIS.AIM1.DATA is not a SAS data set.&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm running the program on my laptop without using an outside server and it's not university edition.&lt;/P&gt;</description>
    <pubDate>Tue, 02 Jul 2019 14:07:40 GMT</pubDate>
    <dc:creator>EpiNovice</dc:creator>
    <dc:date>2019-07-02T14:07:40Z</dc:date>
    <item>
      <title>newly created data "not a SAS data set"</title>
      <link>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570556#M160900</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I keep running into this issue:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've gone through all the steps of creating a data set, I've used a libname statement, I try to save the new data to my folder and I&amp;nbsp; get the error that:&amp;nbsp;ERROR: File THESIS.AIM1.DATA is not a SAS data set.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code looks like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname thesis 'C:\Users\name\Documents\Dissertation\Data';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/****** lots of data manipulation to create clean data set ****/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/***** EXPORT AIM1 DATA *****/&lt;BR /&gt;data thesis.Aim1;&lt;BR /&gt;set work.aim1;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And then I get the error. I should add, the work file is just fine and can be used for analysis with no issue. So why won't it save to my computer folder?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 13:55:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570556#M160900</guid>
      <dc:creator>EpiNovice</dc:creator>
      <dc:date>2019-07-02T13:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: newly created data "not a SAS data set"</title>
      <link>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570565#M160906</link>
      <description>&lt;PRE&gt;data thesis.Aim1;
set work.aim1;
run;&lt;/PRE&gt;
&lt;P&gt;Examine whether work.aim1 is a correct SAS Data Set. You may just use proc print to print few records or use put statement.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 13:58:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570565#M160906</guid>
      <dc:creator>KachiM</dc:creator>
      <dc:date>2019-07-02T13:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: newly created data "not a SAS data set"</title>
      <link>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570566#M160907</link>
      <description>&lt;P&gt;proc print shows me exactly what I would expect to see from a data set.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 14:01:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570566#M160907</guid>
      <dc:creator>EpiNovice</dc:creator>
      <dc:date>2019-07-02T14:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: newly created data "not a SAS data set"</title>
      <link>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570567#M160908</link>
      <description>&lt;P&gt;Did the LIBNAME statement really work?&amp;nbsp; Are you running SAS on your laptop?&amp;nbsp; If SAS is running on some other server or you are using SAS University Edition that runs in a virtual machine then you will not be able to see your C drive from within the SAS program.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 14:03:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570567#M160908</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-07-02T14:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: newly created data "not a SAS data set"</title>
      <link>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570569#M160909</link>
      <description>&lt;P&gt;This is what happens when I run the libname:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;14385 DM log 'clear';&lt;BR /&gt;14386 DM out 'clear';&lt;BR /&gt;14387&lt;BR /&gt;14388 libname thesis 'C:\Users\name\Documents\Dissertation\Data';&lt;BR /&gt;NOTE: Libref THESIS refers to the same physical library as LIWONDE.&lt;BR /&gt;NOTE: Libref THESIS was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\Users\name\Documents\Dissertation\Data&lt;BR /&gt;14389 data thesis.Aim1;&lt;BR /&gt;14390 set work.aim1;&lt;BR /&gt;14391 run;&lt;/P&gt;&lt;P&gt;ERROR: File THESIS.AIM1.DATA is not a SAS data set.&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm running the program on my laptop without using an outside server and it's not university edition.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 14:07:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570569#M160909</guid>
      <dc:creator>EpiNovice</dc:creator>
      <dc:date>2019-07-02T14:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: newly created data "not a SAS data set"</title>
      <link>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570582#M160914</link>
      <description>&lt;P&gt;&lt;SPAN&gt;ERROR: File THESIS.AIM1.DATA is not a SAS data set.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It must be&amp;nbsp;THESIS.AIM1&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;see why you are not getting so.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 14:32:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570582#M160914</guid>
      <dc:creator>KachiM</dc:creator>
      <dc:date>2019-07-02T14:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: newly created data "not a SAS data set"</title>
      <link>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570587#M160918</link>
      <description>&lt;P&gt;Check if you already have a file with that name.&amp;nbsp; Not sure why SAS would care since you blowing it away.&lt;/P&gt;
&lt;P&gt;For example try running proc contents on it.&lt;/P&gt;
&lt;P&gt;Or look at it from the operating system.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is a file then remove it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you notice the message about your new libref duplicating an existing one?&amp;nbsp; Perhaps you already have that dataset open another window and the real issue is with removing the old version and the error message is just confusing.&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>Tue, 02 Jul 2019 14:50:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/newly-created-data-quot-not-a-SAS-data-set-quot/m-p/570587#M160918</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-07-02T14:50:33Z</dc:date>
    </item>
  </channel>
</rss>

