<?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 to access libraries on SASApp server using BASE SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-access-libraries-on-SASApp-server-using-BASE-SAS/m-p/254428#M48528</link>
    <description>&lt;P&gt;The repository is rarely different from Foundation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
options metarepository='Foundation';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;When in doubt you should consult your SAS administrator or, if available to you, have a look in SAS Management Console.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reg's Jan.&lt;/P&gt;</description>
    <pubDate>Fri, 04 Mar 2016 10:12:52 GMT</pubDate>
    <dc:creator>jklaverstijn</dc:creator>
    <dc:date>2016-03-04T10:12:52Z</dc:date>
    <item>
      <title>How to access libraries on SASApp server using BASE SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-access-libraries-on-SASApp-server-using-BASE-SAS/m-p/253756#M48312</link>
      <description>&lt;P&gt;I have&amp;nbsp;my SAS Metadata Server username and password.&lt;/P&gt;&lt;P&gt;In&amp;nbsp;Enterprise Guide, I can access the&amp;nbsp;libraries on this server.&lt;/P&gt;&lt;P&gt;Now, how do I&amp;nbsp;get access to these same libraries on this server in BASE SAS?&lt;/P&gt;&lt;P&gt;I don't want to use Enterprise Guide.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using SAS 9.3 on a work computer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2016 11:46:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-access-libraries-on-SASApp-server-using-BASE-SAS/m-p/253756#M48312</guid>
      <dc:creator>banksider</dc:creator>
      <dc:date>2016-03-02T11:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to access libraries on SASApp server using BASE SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-access-libraries-on-SASApp-server-using-BASE-SAS/m-p/253765#M48313</link>
      <description>&lt;P&gt;Talk to your SAS administrator, he/she will guide you if your request is approved.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2016 12:12:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-access-libraries-on-SASApp-server-using-BASE-SAS/m-p/253765#M48313</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-03-02T12:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to access libraries on SASApp server using BASE SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-access-libraries-on-SASApp-server-using-BASE-SAS/m-p/253857#M48336</link>
      <description>&lt;P&gt;Your library is most likely preassigned from the metadata and the libname statement code is not obvious. But you can get it by using the meta engine:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options metaserver=... metaport=... metauser=... metapass=... metarepository=...; 

libname mylib meta library="&amp;lt;whatever the library is called in metadata&amp;gt;" ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make sure you have all the META options in place. I advise to code the password as at least a {sas002} hash. See proc pwencode.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As a bonus, you will find the actual libname statement syntax in the log if you add the LIBDEBUG option. The library will be allocated if you match the metadata security so you can go right ahead and use it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;- Jan.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2016 16:11:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-access-libraries-on-SASApp-server-using-BASE-SAS/m-p/253857#M48336</guid>
      <dc:creator>jklaverstijn</dc:creator>
      <dc:date>2016-03-02T16:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to access libraries on SASApp server using BASE SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-access-libraries-on-SASApp-server-using-BASE-SAS/m-p/254147#M48429</link>
      <description>&lt;P&gt;Hi jklaverstijn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much for this. I've filled all the meta options except &lt;SPAN class="strong"&gt;METAREPOSITORY. I don't know how to identify that, still searching. Any suggestions would be great!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="strong"&gt;Thanks again.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 12:54:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-access-libraries-on-SASApp-server-using-BASE-SAS/m-p/254147#M48429</guid>
      <dc:creator>banksider</dc:creator>
      <dc:date>2016-03-03T12:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to access libraries on SASApp server using BASE SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-access-libraries-on-SASApp-server-using-BASE-SAS/m-p/254428#M48528</link>
      <description>&lt;P&gt;The repository is rarely different from Foundation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
options metarepository='Foundation';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;When in doubt you should consult your SAS administrator or, if available to you, have a look in SAS Management Console.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reg's Jan.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2016 10:12:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-access-libraries-on-SASApp-server-using-BASE-SAS/m-p/254428#M48528</guid>
      <dc:creator>jklaverstijn</dc:creator>
      <dc:date>2016-03-04T10:12:52Z</dc:date>
    </item>
  </channel>
</rss>

