<?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: to force a specific temporary library to appear for every sas session in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-force-a-specific-temporary-library-to-appear-for-every-sas/m-p/227188#M16578</link>
    <description>&lt;P&gt;The gridwork directory has special technical implementation. Ask your sasgrid implementators..&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/gridref/64808/HTML/default/viewer.htm#p06nu8c3qifl8vn15ya1ghu97lku.htm" target="_blank"&gt;Submitting Batch SAS Jobs to the Grid&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Thu, 24 Sep 2015 21:19:27 GMT</pubDate>
    <dc:creator>jakarman</dc:creator>
    <dc:date>2015-09-24T21:19:27Z</dc:date>
    <item>
      <title>to force a specific temporary library to appear for every sas session</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-force-a-specific-temporary-library-to-appear-for-every-sas/m-p/227159#M16574</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to force a specific temporary library to appear for every sas session? Is it possible to have GRIDWORD appear as an option?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;THanks&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2015 19:15:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-force-a-specific-temporary-library-to-appear-for-every-sas/m-p/227159#M16574</guid>
      <dc:creator>Georgia</dc:creator>
      <dc:date>2015-09-24T19:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: to force a specific temporary library to appear for every sas session</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-force-a-specific-temporary-library-to-appear-for-every-sas/m-p/227162#M16575</link>
      <description>&lt;P&gt;You can add a LIBNAME satement to your AUTOEXEC file and now the library will appear every time you launch SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know what GRIDWORD is.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2015 19:20:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-force-a-specific-temporary-library-to-appear-for-every-sas/m-p/227162#M16575</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2015-09-24T19:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: to force a specific temporary library to appear for every sas session</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-force-a-specific-temporary-library-to-appear-for-every-sas/m-p/227168#M16576</link>
      <description>&lt;P&gt;Having the same library appear in each EG session seems to me to be a permanent library. What is it about this library that is "temporary"? Is this library just for your use and not for others? I also don't know what you mean by GRIDWORD.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2015 19:35:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-force-a-specific-temporary-library-to-appear-for-every-sas/m-p/227168#M16576</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-09-24T19:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: to force a specific temporary library to appear for every sas session</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-force-a-specific-temporary-library-to-appear-for-every-sas/m-p/227172#M16577</link>
      <description>&lt;P&gt;The original poster probably meant GRIDWORK, which is a common temp library that appears in SAS Grid Computing sessions. &amp;nbsp;Maybe you want to simply guarantee that when you're not working in a grid session, your program can still rely on a GRIDWORK library?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to assign such a library name yourself, you can do this by:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Creating an alias for WORK:&lt;/LI&gt;
&lt;LI&gt;
&lt;PRE&gt;libname GRIDWORK (WORK);&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Creating a new temporary library in any path:&lt;/LI&gt;
&lt;LI&gt;
&lt;PRE&gt;libname GRIDWORK "c:\temp" ACCESS=TEMP;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;You could add these statements in Tools-&amp;gt;Options-&amp;gt;SAS Programs,&amp;nbsp;&lt;STRONG&gt;Submit SAS code when server is connected&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2015 19:43:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-force-a-specific-temporary-library-to-appear-for-every-sas/m-p/227172#M16577</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2015-09-24T19:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: to force a specific temporary library to appear for every sas session</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-force-a-specific-temporary-library-to-appear-for-every-sas/m-p/227188#M16578</link>
      <description>&lt;P&gt;The gridwork directory has special technical implementation. Ask your sasgrid implementators..&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/gridref/64808/HTML/default/viewer.htm#p06nu8c3qifl8vn15ya1ghu97lku.htm" target="_blank"&gt;Submitting Batch SAS Jobs to the Grid&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2015 21:19:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-force-a-specific-temporary-library-to-appear-for-every-sas/m-p/227188#M16578</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2015-09-24T21:19:27Z</dc:date>
    </item>
  </channel>
</rss>

