<?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: Library/file  do not exist? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Library-file-do-not-exist/m-p/237981#M43671</link>
    <description>&lt;P&gt;SAS University Edition runs on a virtual machine. That's like a separate computer "inside" your computer.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you look at the file paths: They are UNIX/Linux and not Windows. In order to use something on you C drive you must map this C drive to your virtual machine.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here a&amp;nbsp;link to a posting which explains this better.&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Analytics-U/how-to-use-own-data-in-SAS-university-edition/m-p/174463#M1042&amp;nbsp;" target="_blank"&gt;https://communities.sas.com/t5/SAS-Analytics-U/how-to-use-own-data-in-SAS-university-edition/m-p/174463#M1042&amp;nbsp;&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 05 Dec 2015 21:57:00 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2015-12-05T21:57:00Z</dc:date>
    <item>
      <title>Library/file  do not exist?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Library-file-do-not-exist/m-p/237979#M43670</link>
      <description>&lt;P&gt;&lt;BR /&gt;I am just getting started with the SAS University Edition on a Windows 7 machine.&lt;BR /&gt;I am getting a warning that the library does not exist even though it shows up in the library pane. I am also getting an error message that the physical file does not exist even though it does. I used copy and paste operations in order to make sure I did not make a typo.&lt;BR /&gt;I realize that in the code I am displaying I am writing to the work library. &lt;BR /&gt;Can someone please help me debug? &lt;BR /&gt;Thanks.&lt;BR /&gt;&lt;STRONG&gt;Code&lt;/STRONG&gt;&lt;BR /&gt;libname ch5a "C:\SASUniversityEdition\myfolders\Base Chapters\Chapter 5";&lt;BR /&gt;filename data1 "C:\SASUniversityEdition\myfolders\Base Chapters\Chapter 5\ch5a.txt";&lt;BR /&gt;data sas1;&lt;BR /&gt; infile data1;&lt;BR /&gt; input ID 1-3 Name $ 5-7 Salary 10-12;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc print data = sas1;&lt;BR /&gt;run;&lt;BR /&gt;&lt;STRONG&gt;Log file&lt;/STRONG&gt;&lt;BR /&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 57 &lt;BR /&gt; 58 libname ch5a "C:\\SASUniversityEdition\\myfolders\\Base Chapters\\Chapter 5";&lt;BR /&gt; &lt;STRONG&gt;NOTE: Library CH5A does not exist.&lt;/STRONG&gt;&lt;BR /&gt; 59 filename data1 "C:\\SASUniversityEdition\\myfolders\\Base Chapters\\Chapter 5\\ch5a.dat";&lt;BR /&gt; 60 data sas1;&lt;BR /&gt; 61 infile data1;&lt;BR /&gt; 62 input ID 1-3 Name $ 5-7 Salary 10-12;&lt;BR /&gt; 63 run;&lt;BR /&gt; &lt;BR /&gt; &lt;STRONG&gt;ERROR: Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/C:\\SASUniversityEdition\\myfolders\\Base Chapters\\Chapter &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; 5\\ch5a.dat.&lt;/STRONG&gt;&lt;BR /&gt; NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt; WARNING: The data set WORK.SAS1 may be incomplete. When this step was stopped there were 0 observations and 3 variables.&lt;BR /&gt; WARNING: Data set WORK.SAS1 was not replaced because this step was stopped.&lt;BR /&gt; NOTE: DATA statement used (Total process time):&lt;BR /&gt; real time 0.01 seconds&lt;BR /&gt; cpu time 0.03 seconds&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; 64 &lt;BR /&gt; 65 proc print data = sas1;&lt;BR /&gt; 66 run;&lt;BR /&gt; &lt;BR /&gt; NOTE: No observations in data set WORK.SAS1.&lt;BR /&gt; NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt; real time 0.01 seconds&lt;BR /&gt; cpu time 0.00 seconds&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; 67 &lt;BR /&gt; 68 &lt;BR /&gt; 69 &lt;BR /&gt; 70 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 82&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>Sat, 05 Dec 2015 21:47:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Library-file-do-not-exist/m-p/237979#M43670</guid>
      <dc:creator>irasharenow100</dc:creator>
      <dc:date>2015-12-05T21:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Library/file  do not exist?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Library-file-do-not-exist/m-p/237981#M43671</link>
      <description>&lt;P&gt;SAS University Edition runs on a virtual machine. That's like a separate computer "inside" your computer.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you look at the file paths: They are UNIX/Linux and not Windows. In order to use something on you C drive you must map this C drive to your virtual machine.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here a&amp;nbsp;link to a posting which explains this better.&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Analytics-U/how-to-use-own-data-in-SAS-university-edition/m-p/174463#M1042&amp;nbsp;" target="_blank"&gt;https://communities.sas.com/t5/SAS-Analytics-U/how-to-use-own-data-in-SAS-university-edition/m-p/174463#M1042&amp;nbsp;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Dec 2015 21:57:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Library-file-do-not-exist/m-p/237981#M43671</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2015-12-05T21:57:00Z</dc:date>
    </item>
  </channel>
</rss>

