<?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: How do I import &amp;quot;.sas7bdat&amp;quot; file by creating a library in SAS University Edition in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304745#M1335</link>
    <description>&lt;P&gt;This is because you used myFolders vs myfolders. SAS UE is on unix and is case sensitive. If you create the folder (myfolders) as noted in the instructions you're original code would have worked.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general, SAS UE examples tend to rely on myfolders so I would consider creating that folder and adding it correctly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 14 Oct 2016 17:51:33 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-10-14T17:51:33Z</dc:date>
    <item>
      <title>How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304506#M1308</link>
      <description>&lt;P&gt;Hello everyone, SAS beginner here. Using SAS University Edition from a Mac. I am trying to import a file&amp;nbsp;"inventory.sas7bdat" by creating a library. I have used this piece of code in windows while using SAS from server. But not being able to make it work here.&lt;/P&gt;&lt;P&gt;Here's my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LIBNAME abcd "/folders/myfolders";&lt;BR /&gt;data abcd.inventory;&lt;BR /&gt;infile "/folders/myfolders/inventory.sas7bdat";&lt;BR /&gt;proc print data = abcd.inventory;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting this error message -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;58 infile "/folders/myfolders/inventory.sas7bdat";&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: File is in use, /folders/myfolders/inventory.sas7bdat.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The data set ABCD.INVENTORY may be incomplete. When this step was stopped there were 0 observations and 0 variables.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: Data set ABCD.INVENTORY was not replaced because this step was stopped.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;For your information:&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;- I am using virtual box VM&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;-i have checked the shared folder and the data file is inside the folder&lt;/DIV&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13052i56A6AD97D04EEA7D/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-10-13 at 8.55.13 PM.png" title="Screen Shot 2016-10-13 at 8.55.13 PM.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13053i949DD4BC5117BA31/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-10-13 at 9.00.42 PM.png" title="Screen Shot 2016-10-13 at 9.00.42 PM.png" /&gt;</description>
      <pubDate>Fri, 14 Oct 2016 01:20:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304506#M1308</guid>
      <dc:creator>shihabur</dc:creator>
      <dc:date>2016-10-14T01:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304509#M1309</link>
      <description>&lt;P&gt;You don't import a sas file per se.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You reference it using libname.data_name.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Libname abcd ...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data inventory; * dataset to be created;&lt;/P&gt;
&lt;P&gt;set abcd.inventory; *data being used in data step;&lt;/P&gt;
&lt;P&gt;run;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 02:26:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304509#M1309</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-14T02:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304510#M1310</link>
      <description>&lt;P&gt;That code shouldn't have worked regardless of system.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 02:27:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304510#M1310</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-14T02:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304513#M1311</link>
      <description>&lt;P&gt;I ran the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Libname abcd '/folders/myfolders';&lt;BR /&gt;Data inventory;&lt;BR /&gt;set abcd.inventory;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It shows an error message saying "&lt;EM&gt;Error: the table work.inventory can not be opened because &lt;/EM&gt;&lt;EM&gt;it does not contain any columns"&lt;/EM&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13054iDEC54A73733B9583/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-10-13 at 10.39.17 PM.png" title="Screen Shot 2016-10-13 at 10.39.17 PM.png" /&gt;</description>
      <pubDate>Fri, 14 Oct 2016 02:39:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304513#M1311</guid>
      <dc:creator>shihabur</dc:creator>
      <dc:date>2016-10-14T02:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304514#M1312</link>
      <description>&lt;P&gt;Yeah, your initial attempts may have wrecked your original dataset because you were trying to create that dataset (abcd.invemtory)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try replacing the dataset and running the code again.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 02:45:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304514#M1312</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-14T02:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304540#M1314</link>
      <description>&lt;P&gt;What you realy need is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On windows SAS system run the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;filename cpt '...enter path and filename';&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;proc cport data= &amp;lt;libref&amp;gt;.inventory &amp;nbsp; file=cpt; run; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then copy the above file to your MAC and run next code on MAC system:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;filenmae cpt ' ... path and filename on MAC ';&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;proc cimport infile=cpt &amp;nbsp; lib=WORK; run; &amp;nbsp; &amp;nbsp;/* or change work to any libref preffered */&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You may need check syntax of PROC CPORT / PROC CIMPORT to addapt to your systems.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 06:19:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304540#M1314</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-10-14T06:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304543#M1315</link>
      <description>&lt;P&gt;From where did you obtain your file inventory.sas7bdat?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 06:21:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304543#M1315</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-10-14T06:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304696#M1324</link>
      <description>&lt;P&gt;When you used this code:&lt;/P&gt;
&lt;P&gt;data abcd.inventory;&lt;BR /&gt;infile "/folders/myfolders/inventory.sas7bdat";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;both lines refer to the same system file. That was the cause of the&lt;/P&gt;
&lt;DIV class="sasError"&gt;ERROR: File is in use, /folders/myfolders/inventory.sas7bdat.&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;While SAS will allow the the use of&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;data abcd.inventory;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;&amp;nbsp;&amp;nbsp; SET abcd.inventory;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;That is a special case because SAS understands what it is doing with two references to the same data set (I &lt;STRONG&gt;strongly&lt;/STRONG&gt; recommend &lt;STRONG&gt;not&lt;/STRONG&gt; using that code construct until you have much experience with SAS). With the INFILE statement the file is in effect assumed to be a "foreign" or non-SAS file and actually a text file for reading.&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;You didn't show the LOG for the proc print statement. Did that execute? What was the result.&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;You don't show the log for the PROC Print. Did it actually print okay. It should have as the previous DATA step di&lt;/DIV&gt;</description>
      <pubDate>Fri, 14 Oct 2016 15:10:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304696#M1324</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-10-14T15:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304698#M1325</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/110059"&gt;@shihabur&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Libname abcd '/folders/myfolders';&lt;BR /&gt;Data inventory;&lt;BR /&gt;set abcd.inventory;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It shows an error message saying "&lt;EM&gt;Error: the table work.inventory can not be opened because &lt;/EM&gt;&lt;EM&gt;it does not contain any columns"&lt;/EM&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Note that the log behind the Studio message explains to an extent what happened. You have a basically empty set.&lt;/P&gt;
&lt;P&gt;As an example look at this code:&lt;/P&gt;
&lt;P&gt;Data work.junk;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;Does not reference any external data, does not have any code but will generate the message:&lt;/P&gt;
&lt;P&gt;NOTE: The data set WORK.JUNK has 1 observations and 0 variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apparently you either had an empty set to begin with or the file has been corrupted. Time to find a backup.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, note that in your first post&amp;nbsp; there is a message that your ABCD library also refers to DATALIB. While there are some reasons for having multiple libraries point to the same location you really shouldn't be attempting any of them at this stage of learning. Use the existing DATALIB &lt;STRONG&gt;or &lt;/STRONG&gt; create a subfolder such as /folders/myfolders/project and reference that for your data related to a project. One of the purposes of a library is to organize things that belong together. So you may have all of the datasets related to your inventory project in one library and party planning in a different library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 15:17:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304698#M1325</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-10-14T15:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304706#M1326</link>
      <description>&lt;P&gt;I tried it with a different data set which I just downloaded "survey.sas7bdat" and saved it in myFolder. The dataset is fine because I can open it by clicking in SAS UE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Still getting Error: ERROR: File DEF.SURVEY.DATA does not exist.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Libname def '/folders/myfolders';&lt;BR /&gt;Data survey;&lt;BR /&gt;set def.survey;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have even tried using a different path like /folders/myfolders/myData . But no use. Don't know if I am doing something terribly dumb !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13055i0782B243892BA306/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-10-14 at 11.52.47 AM.png" title="Screen Shot 2016-10-14 at 11.52.47 AM.png" /&gt;</description>
      <pubDate>Fri, 14 Oct 2016 15:58:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304706#M1326</guid>
      <dc:creator>shihabur</dc:creator>
      <dc:date>2016-10-14T15:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304707#M1327</link>
      <description>&lt;P&gt;Hi, Thanks for detailed response. I understand that my situation is a similar to where there would be an empty/corrupt file. I just downloaded a different file "survey.sas7bdat" and tried again but only to get same result. I opened the file by clicking and it seems fine as you can see in the attached image.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Secondly, I think I have made this mistake of creating too many libraries, probably i should have sticked to only one instead of creating a new one everytime I am running the code. But could that be reason for my problem ?&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13056iE49914CC302E5A24/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-10-14 at 11.54.56 AM.png" title="Screen Shot 2016-10-14 at 11.54.56 AM.png" /&gt;</description>
      <pubDate>Fri, 14 Oct 2016 16:08:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304707#M1327</guid>
      <dc:creator>shihabur</dc:creator>
      <dc:date>2016-10-14T16:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304708#M1328</link>
      <description>&lt;P&gt;There is a bunch of dataset to practice on. I made sure that they are not corrupted or broken as other people are also using it. In fact I used a completely different data set again just to make sure the problem is not with one file. But getting the same error.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 16:15:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304708#M1328</guid>
      <dc:creator>shihabur</dc:creator>
      <dc:date>2016-10-14T16:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304713#M1329</link>
      <description>&lt;P&gt;What code did you run and what do you mean by "same result"? if you ran a data step agains the survey data set DON'T.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 16:30:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304713#M1329</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-10-14T16:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304730#M1330</link>
      <description>&lt;P&gt;I ran this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Libname def '/folders/myFolders';&lt;BR /&gt;Data survey;&lt;BR /&gt;set def.survey;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And got this error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class="sasLog"&gt;ERROR: File DEF.SURVEY.DATA does not exist.&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What do I do now ?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 17:11:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304730#M1330</guid>
      <dc:creator>shihabur</dc:creator>
      <dc:date>2016-10-14T17:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304739#M1331</link>
      <description>&lt;P&gt;This was correct. It wasn't working because of file path mistake. Now it works fine.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 17:41:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304739#M1331</guid>
      <dc:creator>shihabur</dc:creator>
      <dc:date>2016-10-14T17:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304740#M1332</link>
      <description>&lt;P&gt;Assign your library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;library test '/folders/myfolders/';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc datasets lib=test;&lt;/P&gt;
&lt;P&gt;run;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Post the output from the code above please.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this a new install of SAS UE?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you show the set up of myfolders in your folder as well?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 17:41:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304740#M1332</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-14T17:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304741#M1333</link>
      <description>&lt;P&gt;I have already selected the solution. I was making a file path name mistake. But nonetheless I have learnt from your detailed comment too. Thanks again.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 17:43:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304741#M1333</guid>
      <dc:creator>shihabur</dc:creator>
      <dc:date>2016-10-14T17:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304744#M1334</link>
      <description>&lt;P&gt;I installed UE 2 months back. I am attaching the image of how the shared folder looks like now. Turns out as of this moment the correct file path is "/folders/myshortcuts/myFolders"&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13057i27E1F662DF4D11C6/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-10-14 at 1.47.06 PM.png" title="Screen Shot 2016-10-14 at 1.47.06 PM.png" /&gt;</description>
      <pubDate>Fri, 14 Oct 2016 17:49:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304744#M1334</guid>
      <dc:creator>shihabur</dc:creator>
      <dc:date>2016-10-14T17:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304745#M1335</link>
      <description>&lt;P&gt;This is because you used myFolders vs myfolders. SAS UE is on unix and is case sensitive. If you create the folder (myfolders) as noted in the instructions you're original code would have worked.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general, SAS UE examples tend to rely on myfolders so I would consider creating that folder and adding it correctly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 17:51:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304745#M1335</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-14T17:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import ".sas7bdat" file by creating a library in SAS University Edition</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304747#M1336</link>
      <description>&lt;P&gt;I ran the piece of code you asked to run and this is the log.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13058iFF2C112D90A70396/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-10-14 at 1.50.47 PM.png" title="Screen Shot 2016-10-14 at 1.50.47 PM.png" /&gt;</description>
      <pubDate>Fri, 14 Oct 2016 17:54:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-import-quot-sas7bdat-quot-file-by-creating-a-library-in/m-p/304747#M1336</guid>
      <dc:creator>shihabur</dc:creator>
      <dc:date>2016-10-14T17:54:15Z</dc:date>
    </item>
  </channel>
</rss>

