<?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: sas library in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588376#M168141</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; The STORM_SUMMARY data set is one of the names that we use for the Programming 1 course. Are you doing Programming 1? If so, you have to follow the instructions to make the data by running a program. The name of the library that we recommend for class is PG1. For various interfaces, the correct LIBNAME statements would be:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="correct_libname.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32420i899EE72DC3E71301/image-size/large?v=v2&amp;amp;px=999" role="button" title="correct_libname.png" alt="correct_libname.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If you are using SAS University Edition in a Virtual Machine, then your LIBNAME statement would look like #2. If you are using SAS OnDemand for Academics, then LIBNAME statement #1. If you are, for example, using SAS on a Mac in a Parallels or BootCamp then you should have a C: drive on your Windows installation in the Windows partition and then you would use #4a.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You do NOT use the file name in a LIBNAME statement. The LIBNAME statement for a SAS library points to the high-level location of the folder for all the SAS data. If I were going to run PROC CONTENTS on the STORM_SUMMARY data, using a LIBNAME statement, as shown above, then the code would be:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc contents data=PG1.storm_summary;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I were going to use the &lt;EM&gt;&lt;STRONG&gt;fully qualified&lt;/STRONG&gt;&lt;/EM&gt; path folder location and file name for SAS University Edition, as an example, then the code would be:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc contents data="/folders/myfolders/EPG194/data/storm_summary.sas7bdat";&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for SAS OnDemand for Academics, it would be:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc contents data="/home/&amp;lt;yourUserID&amp;gt;/EPG194/data/storm_summary.sas7bdat";&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for EG, it would be:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc contents data="&amp;amp;path/storm_summary.sas7bdat";&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;of course, if you're NOT doing Programming 1 and you have some random bike data that happens to use a file called storm_summary which is different from the Programming 1 data, then you still have to write the appropriate LIBNAME statement, but again, unless your folder is named storm_summary, the table names don't belong in the LIBNAME statement for a SAS data set.&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Hope this helps,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Cynthia&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 12 Sep 2019 20:50:08 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2019-09-12T20:50:08Z</dc:date>
    <item>
      <title>sas library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588369#M168137</link>
      <description>&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;libname&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; bikes &lt;/SPAN&gt;&lt;SPAN class="s1"&gt;base&lt;/SPAN&gt; "c:/mac/home/desktop/storm_summary"&lt;SPAN class="s2"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN class="s3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s3"&gt;&lt;STRONG&gt;print&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;data&lt;/SPAN&gt;=bikes.storm_summary;&lt;/P&gt;&lt;P class="p3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;SPAN class="s2"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p3"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p3"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p3"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p3"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p3"&gt;&lt;SPAN class="s2"&gt;is that the right code for creating library bikes&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p3"&gt;&lt;SPAN class="s2"&gt;its not enabling me to create this library&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 20:20:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588369#M168137</guid>
      <dc:creator>ambreen</dc:creator>
      <dc:date>2019-09-12T20:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: sas library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588370#M168138</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/289899"&gt;@ambreen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;libname&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; bikes &lt;/SPAN&gt;&lt;SPAN class="s1"&gt;base&lt;/SPAN&gt; "c:/mac/home/desktop/storm_summary"&lt;SPAN class="s2"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="s3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s3"&gt;&lt;STRONG&gt;print&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;data&lt;/SPAN&gt;=bikes.storm_summary;&lt;/P&gt;
&lt;P class="p3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;SPAN class="s2"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p3"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p3"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p3"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p3"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p3"&gt;&lt;SPAN class="s2"&gt;is that the right code for creating library bikes&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p3"&gt;&lt;SPAN class="s2"&gt;its not enabling me to create this library&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You have to use the name of a folder on your computer that actually exists. And I don't think "base" belongs in the Libname statement at all. And if you are on Windows, you would want a backslash instead of a forward slash (although it may work with the forward slashes)&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 20:28:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588370#M168138</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-09-12T20:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: sas library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588374#M168139</link>
      <description>&lt;P&gt;libname pg1 "c:Mac/Home/Desktop/EPG194/data";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;If I have to create a library named as pg1&amp;nbsp;&lt;/P&gt;&lt;P&gt;how can I do it&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I have to use the above mentioned file path&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 20:41:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588374#M168139</guid>
      <dc:creator>ambreen</dc:creator>
      <dc:date>2019-09-12T20:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: sas library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588376#M168141</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; The STORM_SUMMARY data set is one of the names that we use for the Programming 1 course. Are you doing Programming 1? If so, you have to follow the instructions to make the data by running a program. The name of the library that we recommend for class is PG1. For various interfaces, the correct LIBNAME statements would be:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="correct_libname.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32420i899EE72DC3E71301/image-size/large?v=v2&amp;amp;px=999" role="button" title="correct_libname.png" alt="correct_libname.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If you are using SAS University Edition in a Virtual Machine, then your LIBNAME statement would look like #2. If you are using SAS OnDemand for Academics, then LIBNAME statement #1. If you are, for example, using SAS on a Mac in a Parallels or BootCamp then you should have a C: drive on your Windows installation in the Windows partition and then you would use #4a.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You do NOT use the file name in a LIBNAME statement. The LIBNAME statement for a SAS library points to the high-level location of the folder for all the SAS data. If I were going to run PROC CONTENTS on the STORM_SUMMARY data, using a LIBNAME statement, as shown above, then the code would be:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc contents data=PG1.storm_summary;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I were going to use the &lt;EM&gt;&lt;STRONG&gt;fully qualified&lt;/STRONG&gt;&lt;/EM&gt; path folder location and file name for SAS University Edition, as an example, then the code would be:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc contents data="/folders/myfolders/EPG194/data/storm_summary.sas7bdat";&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for SAS OnDemand for Academics, it would be:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc contents data="/home/&amp;lt;yourUserID&amp;gt;/EPG194/data/storm_summary.sas7bdat";&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for EG, it would be:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc contents data="&amp;amp;path/storm_summary.sas7bdat";&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;of course, if you're NOT doing Programming 1 and you have some random bike data that happens to use a file called storm_summary which is different from the Programming 1 data, then you still have to write the appropriate LIBNAME statement, but again, unless your folder is named storm_summary, the table names don't belong in the LIBNAME statement for a SAS data set.&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Hope this helps,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Cynthia&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 20:50:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588376#M168141</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-09-12T20:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: sas library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588378#M168142</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I am doing programing 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 libname pg1 "Mac/Home/Desktop/EPG194/data";&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Library PG1 does not exist.&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;88&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 libname pg1 "c:\SAS_CLASS\EPG194\data";&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Library PG1 does not exist.&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;89&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 libname pg1 "c:/Mac/Home/Desktop/EPG194/data";&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Library PG1 does not exist.&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ABOVE MENTIONED ARE THE LOG THAT i AM GETTIG AFTER TRYING ALL POSSIBLE PATH i COULD&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;now I am getting low I cant create this library&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 12 Sep 2019 20:59:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588378#M168142</guid>
      <dc:creator>ambreen</dc:creator>
      <dc:date>2019-09-12T20:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: sas library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588386#M168143</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Are you running SAS in Parallels or in BootCamp? if so, you should have Windows installed in the Mac partition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You should be able to open Windows Explorer in your partition and find the location of the EPG194 data. You CANNOT use Macintosh names. I only put C:\SAS_class\EPG194\data because that is where I unzipped the zip archive from the instructions. If you have NOT created a C:\SAS_class\EPG194 folder and unzipped the class folders and files there, then using that path will NOT work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Using a Mac path will NOT work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You need to find the path location INSIDE Parallels or BootCamp where the EPG194 folder is. Then you need to use THAT location in your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;Unfortunately, I no longer have Parallels on a Mac to test with, but when I did have a Mac with Parallels and with SAS in the Parallels Windows partition, I was able to use Windows Explorer to make folders and find files.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 21:43:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588386#M168143</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-09-12T21:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: sas library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588390#M168145</link>
      <description>&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;73 libname pg1 "Mac/Home/Desktop/EPG194/data";&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;This folder does not exist. So you can't use it. It's the same as in Microsoft Word or Excel, you can only save files to folders that exist. You need to find the EXACT name of the folder as seen in the operating system used by SAS (which could be UNIX running on a PC or MAC, or it could be Windows or OSX depending on how SAS is installed).&lt;/DIV&gt;</description>
      <pubDate>Thu, 12 Sep 2019 21:52:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588390#M168145</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-09-12T21:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: sas library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588392#M168147</link>
      <description>YOU'RE NOT USING SAS UE. YOU'RE USING YOUR OWN SET UP.&lt;BR /&gt;&lt;BR /&gt;IN PARALLELS SET UP YOUR OWN PATH TO THE YOUR LOCAL DRIVE. &lt;BR /&gt;&lt;BR /&gt;VIRTUAL MACHINES CANNOT ACCESS YOUR LOCAL DRIVE BY DEFAULT. &lt;BR /&gt;&lt;BR /&gt;FIND THE PATH IN THE WINDOWS SIDE AND THEN USE THAT. IN WINDOWS, RIGHT CLICK THE FILE wHile holding down CTRL+SHIFT and select copy path. Use that path. &lt;BR /&gt;&lt;BR /&gt;This will solve your issue.</description>
      <pubDate>Thu, 12 Sep 2019 22:06:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/588392#M168147</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-12T22:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: sas library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/847094#M334914</link>
      <description>&lt;P&gt;I had a similar issue this week using with SAS in Parallels. It was difficult to find a solution online that worked for me, but I solved it on my own. I wanted to share in case it is useful to anyone.&amp;nbsp;&lt;/P&gt;&lt;P&gt;To solve this issue, I clicked on the Windows Icon on my Mac menu bar. Then, I selected "recommended" which showed recently opened files and their pathways. This is how I could see that the folder I wanted to use for my libname was:&lt;/P&gt;&lt;P class=""&gt;\\Mac\Home\Desktop\folder_name&lt;/P&gt;&lt;P class=""&gt;(note: you'd need to replace "desktop" with the location e.g. "Downloads." You'd also need to replace the folder name or add additional sub-folder names depending on the location)&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;So I entered:&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;libname A "\\Mac\Home\Desktop\folder_name";&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;And that worked for me as of Nov 30, 2022.&amp;nbsp;I hope this helps others!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 17:14:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/847094#M334914</guid>
      <dc:creator>CXavierHall</dc:creator>
      <dc:date>2022-11-30T17:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: sas library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/847141#M334936</link>
      <description>&lt;P&gt;So it looks like &lt;SPAN&gt;Parallels&amp;nbsp;&lt;/SPAN&gt;(a way to run Windows in virtual machine on a Mac) is treating access to the actual DISK on the Mac as if it was a Windows shared drive.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So \\Mac is the name of the SERVER that is sharing the drive.&lt;/P&gt;
&lt;P&gt;and \Home&amp;nbsp; is the sharename of the directory being shared.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would assume that \\Mac\Home is mapped to some folder in the Unix filesystem of the Mac that is running the virtual machine.&amp;nbsp; Since it is showing \Desktop right under that directory then perhaps it is actually mapped directly to the home directory of the Mac userid that you used to sign onto the Mac.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 21:35:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-library/m-p/847141#M334936</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-11-30T21:35:26Z</dc:date>
    </item>
  </channel>
</rss>

