<?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 shows up in list, isn't getting created at physical location in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Library-shows-up-in-list-isn-t-getting-created-at-physical/m-p/445333#M111573</link>
    <description>Thank you for the note Reeza.</description>
    <pubDate>Tue, 13 Mar 2018 21:50:40 GMT</pubDate>
    <dc:creator>vr2002</dc:creator>
    <dc:date>2018-03-13T21:50:40Z</dc:date>
    <item>
      <title>Library shows up in list, isn't getting created at physical location</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Library-shows-up-in-list-isn-t-getting-created-at-physical/m-p/443086#M110826</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am new to SAS. I am using University edition. I am having trouble creating library. It shows up in the list but not at the physical location. I have provided the correct path in settings of virtualware. Attached herewith are screen shots which provide the details. Would appreciate inputs.&lt;/P&gt;&lt;P&gt;P.S: I searched for similar queries and tried the solutions that have been shared but wasn't able to resolve the issue. Apologies for posting a trivial query.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 22:25:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Library-shows-up-in-list-isn-t-getting-created-at-physical/m-p/443086#M110826</guid>
      <dc:creator>vr2002</dc:creator>
      <dc:date>2018-03-06T22:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Library shows up in list, isn't getting created at physical location</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Library-shows-up-in-list-isn-t-getting-created-at-physical/m-p/443087#M110827</link>
      <description>&lt;P&gt;&lt;A href="http://support.sas.com/software/products/university-edition/faq/SAS_libname.htm" target="_blank"&gt;http://support.sas.com/software/products/university-edition/faq/SAS_libname.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/53/333.html" target="_blank"&gt;http://support.sas.com/kb/53/333.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You're doing it wrong. SAS UE runs on a Unix virtual machine, not your desktop so it can't see your C drive. It can only see the shared folder that you've linked so far. You can create other linked folders but I'll leave that alone for now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You reference your files using the Unix path, like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname myfiles '/folders/myfolders/';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The links above have more detailed explanations but that's the gist of the idea.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think there's a video specifically on this, but you can find video tutorials here:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://video.sas.com/detail/videos/sas-analytics-u/video/4572997794001/accessing-data-in-sas-libraries?autoStart=true" target="_blank"&gt;http://video.sas.com/detail/videos/sas-analytics-u/video/4572997794001/accessing-data-in-sas-libraries?autoStart=true&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/197151"&gt;@vr2002&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I am new to SAS. I am using University edition. I am having trouble creating library. It shows up in the list but not at the physical location. I have provided the correct path in settings of virtualware. Attached herewith are screen shots which provide the details. Would appreciate inputs.&lt;/P&gt;
&lt;P&gt;P.S: I searched for similar queries and tried the solutions that have been shared but wasn't able to resolve the issue. Apologies for posting a trivial query.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 22:38:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Library-shows-up-in-list-isn-t-getting-created-at-physical/m-p/443087#M110827</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-03-06T22:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Library shows up in list, isn't getting created at physical location</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Library-shows-up-in-list-isn-t-getting-created-at-physical/m-p/443089#M110828</link>
      <description>&lt;P&gt;Your libname statement is incorrect - when working in University Edition you need to assign a Library as in this link&amp;nbsp;&lt;A href="https://support.sas.com/software/products/university-edition/faq/SAS_libname.htm" target="_blank"&gt;https://support.sas.com/software/products/university-edition/faq/SAS_libname.htm&lt;/A&gt; e.g.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname newlib '/folders/myfolders/';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Don't forget that you're running inside a Linux virtual machine so you should always use forward slashes even when your host machine OS is Windows&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 22:43:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Library-shows-up-in-list-isn-t-getting-created-at-physical/m-p/443089#M110828</guid>
      <dc:creator>ChrisBrooks</dc:creator>
      <dc:date>2018-03-06T22:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: Library shows up in list, isn't getting created at physical location</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Library-shows-up-in-list-isn-t-getting-created-at-physical/m-p/445333#M111573</link>
      <description>Thank you for the note Reeza.</description>
      <pubDate>Tue, 13 Mar 2018 21:50:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Library-shows-up-in-list-isn-t-getting-created-at-physical/m-p/445333#M111573</guid>
      <dc:creator>vr2002</dc:creator>
      <dc:date>2018-03-13T21:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Library shows up in list, isn't getting created at physical location</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Library-shows-up-in-list-isn-t-getting-created-at-physical/m-p/445334#M111574</link>
      <description>Thank you for the note Chris</description>
      <pubDate>Tue, 13 Mar 2018 21:51:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Library-shows-up-in-list-isn-t-getting-created-at-physical/m-p/445334#M111574</guid>
      <dc:creator>vr2002</dc:creator>
      <dc:date>2018-03-13T21:51:01Z</dc:date>
    </item>
  </channel>
</rss>

