<?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: Accessing server libraries in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435029#M28129</link>
    <description>&lt;P&gt;Ok. Thanks.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One more question:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What about datasets in my local drive?&amp;nbsp; Must all the datasets reside on the Server to use EG within SAS Server?&amp;nbsp; &amp;nbsp;OR can I use a reference library in my local drive:&amp;nbsp; D:\1OrigDataSets\March\Oceanside and run my code in the Program Window within the Server.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Definitely, the server will be able to process all the merge/sorts/appends much quicker than if it was in my local drive.&amp;nbsp; Any info?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you so much for responding!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 07 Feb 2018 19:53:43 GMT</pubDate>
    <dc:creator>BaileyY</dc:creator>
    <dc:date>2018-02-07T19:53:43Z</dc:date>
    <item>
      <title>Accessing server libraries</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/434993#M28121</link>
      <description>&lt;P&gt;Hi-&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;New to SAS Enterprise Guide and trying to understand how to use EG in the Programming window to access my dataset stored on our SAS server.&amp;nbsp; Data is located under Servers/SASApp/Libraries/Medic1 and the dataset name is: RiverdaleMed&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Wrote this:&amp;nbsp; data a; Set Medic1.RiverdaleMed; where location in ('15');run;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am getting error message in my log telling me&amp;nbsp; ERROR: Libref Medic1 is not assigned.&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can anyone help me get started?&amp;nbsp; Thanks in advance!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 18:36:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/434993#M28121</guid>
      <dc:creator>BaileyY</dc:creator>
      <dc:date>2018-02-07T18:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing server libraries</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435002#M28122</link>
      <description>&lt;P&gt;Before you can read your dataset you need to assign the LIBREF medic1 pointing at your SAS library:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname medic1 '//&lt;SPAN&gt;Servers/SASApp/Libraries/Medic1';&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 18:53:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435002#M28122</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-02-07T18:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing server libraries</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435012#M28123</link>
      <description>Hi-  Thanks for responding.  I am now getting a green NOTE message telling me Library medic1 does not exist?  Any insights?</description>
      <pubDate>Wed, 07 Feb 2018 19:05:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435012#M28123</guid>
      <dc:creator>BaileyY</dc:creator>
      <dc:date>2018-02-07T19:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing server libraries</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435013#M28124</link>
      <description>&lt;P&gt;Please post the SAS log containing the LIBNAME statement and any notes. Did it assign successfully?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 19:08:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435013#M28124</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-02-07T19:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing server libraries</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435017#M28125</link>
      <description>&lt;P&gt;25 libname medic1 '//Servers/SASApp/Libraries/medic1';&lt;BR /&gt;NOTE: Library medic1 does not exist.&lt;/P&gt;
&lt;P&gt;26 &lt;BR /&gt;27 GOPTIONS NOACCESSIBLE;&lt;BR /&gt;28 %LET _CLIENTTASKLABEL=;&lt;BR /&gt;29 %LET _CLIENTPROCESSFLOWNAME=;&lt;BR /&gt;30 %LET _CLIENTPROJECTPATH=;&lt;BR /&gt;31 %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;32 %LET _SASPROGRAMFILE=;&lt;BR /&gt;33 &lt;BR /&gt;34 ;*';*";*/;quit;run;&lt;BR /&gt;35 ODS _ALL_ CLOSE;&lt;BR /&gt;36 &lt;BR /&gt;37 &lt;BR /&gt;38 QUIT; RUN;&lt;BR /&gt;39&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 19:14:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435017#M28125</guid>
      <dc:creator>BaileyY</dc:creator>
      <dc:date>2018-02-07T19:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing server libraries</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435027#M28128</link>
      <description>&lt;P&gt;It looks like the path&amp;nbsp;&lt;SPAN&gt;//Servers/SASApp/Libraries/medic1 is incorrect. Please talk to your SAS admin to find out what the correct path is. Usually the first bit is the server name like this //ServerName which may go on the front of the path you have. Also try this: /Servers/SASApp/Libraries/medic1.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 19:41:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435027#M28128</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-02-07T19:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing server libraries</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435029#M28129</link>
      <description>&lt;P&gt;Ok. Thanks.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One more question:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What about datasets in my local drive?&amp;nbsp; Must all the datasets reside on the Server to use EG within SAS Server?&amp;nbsp; &amp;nbsp;OR can I use a reference library in my local drive:&amp;nbsp; D:\1OrigDataSets\March\Oceanside and run my code in the Program Window within the Server.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Definitely, the server will be able to process all the merge/sorts/appends much quicker than if it was in my local drive.&amp;nbsp; Any info?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you so much for responding!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 19:53:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435029#M28129</guid>
      <dc:creator>BaileyY</dc:creator>
      <dc:date>2018-02-07T19:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing server libraries</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435079#M28139</link>
      <description>&lt;P&gt;There's an EG Task to upload local datasets to the SAS server: Tasks / Data / Upload Data Files to Server.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can't reference your local PC drive from the SAS server in code without a lot of IT admin, and it wouldn't be very efficient anyway as you say.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may also want to consider asking your IT Admin to set up a permanent SAS server LIBREF for you, particularly if it is being shared with other users. That means it is automatically set up in EG when you connect to the SAS server and you don't need to code for it yourself.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 21:27:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Accessing-server-libraries/m-p/435079#M28139</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-02-07T21:27:46Z</dc:date>
    </item>
  </channel>
</rss>

