<?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: Data not detected in SAS Studio in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261457#M375</link>
    <description>&lt;P&gt;Hi Bruno,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am afraid I will not be able to post the original output of the Proc CONTENTS. It is a sas7bdat file (TargetFile.sas7bdat). It has Y Observations and X variables. I am uploading this file in the SAS Studio and then when I am reading it, it says 0 observations, 0 indexes, 0 variables, etc. Also, when I am double clicking the file, it shows me the follwoing error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;File _TEMP5.TARGETFILE.DATA does not exist&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hope this provides some more clarity to the problem.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Santanu&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 05 Apr 2016 15:55:15 GMT</pubDate>
    <dc:creator>sk2706</dc:creator>
    <dc:date>2016-04-05T15:55:15Z</dc:date>
    <item>
      <title>Data not detected in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261415#M369</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am new to SAS. I am using SAS Studio University Edition through AWS. I am trying to read a sas7bdat file but not able to do so. After uploading the data from my local machine in the SAS Studio, I run the following program to access it:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc print data = "/folders/myfolders/TargetFile.sas7bdat";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I get the following NOTE:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;NOTE: No variables in data set /folders/myfolders/TargetFile.sas7bdat.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also, I cannot open it by double clicking the file. I get similar error. Looking forward for some help!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Santanu&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 14:44:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261415#M369</guid>
      <dc:creator>sk2706</dc:creator>
      <dc:date>2016-04-05T14:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: Data not detected in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261426#M370</link>
      <description>&lt;P&gt;How did you upload the data? Do you know which version of SAS made the data set? There are a few cross-platform issues that may make the set unreadable by your install.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 14:58:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261426#M370</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-04-05T14:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Data not detected in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261429#M371</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is possible to create a SAS data set with 0 obersvations and 0 variables, see code below. Run Proc CONTENTS on the data set and have a look at the output. As a general advice, I would avoid the use of physical names for a SAS data set, but rather use a LIBNAME statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;&lt;BR /&gt;stop;
run;

proc contents data=new;
run;

proc print data=new;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 15:07:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261429#M371</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-04-05T15:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: Data not detected in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261431#M372</link>
      <description>&lt;P&gt;Hi ballardw,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I uploaded the data using the upload functionality of SAS studio in the AWS console. I do not know the version of the SAS in which the data file&amp;nbsp;was prepared but I am using 9.4. I wonder if such basic functionality issues may arise due to cross-platform&amp;nbsp;differences!&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 15:09:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261431#M372</guid>
      <dc:creator>sk2706</dc:creator>
      <dc:date>2016-04-05T15:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Data not detected in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261437#M373</link>
      <description>&lt;P&gt;Hi Bruno,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a data file with a X columns and Y rows. But when I read the contents of the data after uploading it in SAS, the data is not read. It shows 0 variables and 0 indexes, 0 observations. However, I want the data to be read as Y observations, X variables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Santanu&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 15:20:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261437#M373</guid>
      <dc:creator>sk2706</dc:creator>
      <dc:date>2016-04-05T15:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Data not detected in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261447#M374</link>
      <description>&lt;P&gt;Hi Santanu&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It would help if you could post the output of the Proc CONTENTS from the original SAS data set, if possible, and the one you uploaded to be used in SAS Studio.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 15:35:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261447#M374</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-04-05T15:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Data not detected in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261457#M375</link>
      <description>&lt;P&gt;Hi Bruno,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am afraid I will not be able to post the original output of the Proc CONTENTS. It is a sas7bdat file (TargetFile.sas7bdat). It has Y Observations and X variables. I am uploading this file in the SAS Studio and then when I am reading it, it says 0 observations, 0 indexes, 0 variables, etc. Also, when I am double clicking the file, it shows me the follwoing error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;File _TEMP5.TARGETFILE.DATA does not exist&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hope this provides some more clarity to the problem.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Santanu&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 15:55:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261457#M375</guid>
      <dc:creator>sk2706</dc:creator>
      <dc:date>2016-04-05T15:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Data not detected in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261460#M376</link>
      <description>&lt;P&gt;Hi &lt;SPAN&gt;Santanu&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you ask the creator of the SAS data set to send you the Proc CONTENTS output?&lt;/P&gt;
&lt;P&gt;Was the SAS dataset created by SAS or some other tool?&lt;/P&gt;
&lt;P&gt;Is it possible to attach the SAS dataset to this post?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 16:00:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261460#M376</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-04-05T16:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Data not detected in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261463#M377</link>
      <description>&lt;P&gt;Hi Bruno,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will ask the creator to send the Proc CONTENTS output. However, I dont think I can share the data set as it is a classified one. The data set was created using SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Santanu&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 16:05:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/261463#M377</guid>
      <dc:creator>sk2706</dc:creator>
      <dc:date>2016-04-05T16:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Data not detected in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/262159#M385</link>
      <description>&lt;P&gt;Hi Bruno,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did not get the go ahead of the owner of the SAS file to put the output of the Proc CONTENTS in a forum. But I came to know that the file was created from a database using&amp;nbsp;a Linux system. When I am trying to open the file in SAS 9.4 AWS, it does not open, but when I am opening the file in any PC with SAS installed in it&amp;nbsp;could be opened. So I guess the problem is with the SAS AWS application. Though I have no clue what it can be and how to overcome it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Santanu&lt;/P&gt;</description>
      <pubDate>Thu, 07 Apr 2016 18:15:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/262159#M385</guid>
      <dc:creator>sk2706</dc:creator>
      <dc:date>2016-04-07T18:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Data not detected in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/262304#M387</link>
      <description>&lt;P&gt;Hi Santanu&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you have access to SAS, try uploading some other data and see how this works. I also attached a SAS data set create with SAS 9.4 on a Linux machine for testing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggested you contact &lt;A href="https://support.sas.com/techsup/contact/" target="_blank"&gt;SAS technical support&lt;/A&gt; for this problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2016 06:32:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Data-not-detected-in-SAS-Studio/m-p/262304#M387</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-04-08T06:32:08Z</dc:date>
    </item>
  </channel>
</rss>

