<?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 create permanent libnames in my program in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56381#M15759</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not a big fan of using the registry in SAS because it is tied to the SASUSER library.&amp;nbsp; If you run on multiple machines you might not have the same SASUSER library.&amp;nbsp; And worse if you run multiple instances of SAS on the same machine it will likely not give you your SASUSER library and hence the settings you might have saved there because you already have it open.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why can you not define the library in the new programs?&lt;/P&gt;&lt;P&gt;You can use the LIBREF function to test if the libname has already been assigned.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Feb 2012 23:29:26 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2012-02-16T23:29:26Z</dc:date>
    <item>
      <title>How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56359#M15737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a program that others in my department need to use. Within this program I want to create a permanent libname so each user who runs this program will always have this libname. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there an option to the libname statement that will cause the libname to become permanent? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't have access to each users autoexec.sas or else I could put it there.&amp;nbsp; I need it to happen in my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 15:11:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56359#M15737</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2012-02-16T15:11:35Z</dc:date>
    </item>
    <item>
      <title>How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56360#M15738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is always a risk that you will override someone's existing libname or that they may override the one you assign.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An alternative you might be able to use is to use proc sql, and a view in which you imbed the libname in the code.&amp;nbsp; That could work as the imbedded libname is local to the proc sql run and won't cause any conflicts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that is a possibility, take a look at: &lt;A href="http://support.sas.com/documentation/cdl/en/sqlproc/62086/HTML/default/viewer.htm#a001395624.htm"&gt;http://support.sas.com/documentation/cdl/en/sqlproc/62086/HTML/default/viewer.htm#a001395624.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 15:21:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56360#M15738</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-16T15:21:41Z</dc:date>
    </item>
    <item>
      <title>How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56361#M15739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Art,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for your reply.&amp;nbsp; This will only be used for certain people and the libname we will use they will be sure to know what it is as not to overwrite.&amp;nbsp; &lt;/P&gt;&lt;P&gt;I was hoping there was an option in the libname statement something like startup=yes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can this be done in a regular sas program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for all your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 15:26:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56361#M15739</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2012-02-16T15:26:50Z</dc:date>
    </item>
    <item>
      <title>How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56362#M15740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; One approach would be to an and %INCLUDE statement to the AUTOEXEC.SAS file pointing to a common SAS program assigning LIBNAMES. Then each time their SAS session starts it would have the libraries available and the code would reflect any changes you made.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If they don't have an AUTOEXEC.SAS file then you would modify the SAS configuration file, look for something like SASV9.CFG and add a line like:&lt;/P&gt;&lt;P&gt;-autoexec='D:\data\autoexec.sas'&lt;/P&gt;&lt;P&gt;to point to a common autoexec with the code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 16:28:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56362#M15740</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-02-16T16:28:03Z</dc:date>
    </item>
    <item>
      <title>How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56363#M15741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ballardw,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My issue is I can not use the autoexec.sas or the config file it has to happen within my program.&amp;nbsp; This way when the select users use it I know that the libname will always be there for them when they use specific apps and programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 17:34:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56363#M15741</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2012-02-16T17:34:40Z</dc:date>
    </item>
    <item>
      <title>How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56364#M15742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I don't understand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; In your program you have LIBNAME NAME 'path';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; When the program runs should the path not exist you can create it with DCREATE.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Or is it the path that you need to somehow derive based on user specific info?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Or do you need make this LIBNAME known to all future SAS session/programs?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 17:36:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56364#M15742</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2012-02-16T17:36:55Z</dc:date>
    </item>
    <item>
      <title>How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56365#M15743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm with you.&amp;nbsp; I don't understand either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want your users to have a program with a permanent libname, why not put the LIBNAME statement in the program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the path has to change from one user to the next, why not give each user a program with two lines in it:&amp;nbsp; a LIBNAME statement tailored to that user, &lt;/P&gt;&lt;P&gt;and a %include statement to fetch your program? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 17:59:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56365#M15743</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-02-16T17:59:22Z</dc:date>
    </item>
    <item>
      <title>How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56366#M15744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DataNull: I think the OP wants to make the LIBNAME known to all future sessions.&amp;nbsp; I was wondering if the method proposed by Richard &lt;A href="http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0701C&amp;amp;L=sas-l&amp;amp;P=23578" style="color: #0000ff; font-family: courier, monospace; font-size: 14px; text-align: -webkit-auto; white-space: pre; background-color: #ffffff;"&gt;http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0701C&amp;amp;L=sas-l&amp;amp;P=23578&lt;/A&gt;&lt;/P&gt;&lt;P&gt;could be modified to accomplish it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 18:13:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56366#M15744</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-16T18:13:45Z</dc:date>
    </item>
    <item>
      <title>How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56367#M15745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DataNull,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want this libname for future programs and apps to access.&amp;nbsp; &lt;/P&gt;&lt;P&gt;For example say I write a sas program with my libname and there is a way to make it permanent.&amp;nbsp; The next time I send out a sas program I already know the user has this libname to the data we are working with.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 18:17:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56367#M15745</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2012-02-16T18:17:40Z</dc:date>
    </item>
    <item>
      <title>How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56368#M15746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Art,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't want the users to see any reference to the registry.&amp;nbsp; Then if they change anything is could lead to other issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 18:23:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56368#M15746</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2012-02-16T18:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56369#M15747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's a practical approach then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store all LIBNAME statements in a file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Redefine one of the user's function keys within SAS to go to the Program Editor, %include the file, and run it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user will still have to hit the function key of course.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That way, you can even update the LIBNAMEs in the future and the users wouldn't have to change what they do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 18:23:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56369#M15747</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-02-16T18:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56370#M15748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;jerry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you saying that you don't want the users to know the LIBNAME definitions?&amp;nbsp; You might be able to hide them from a user, but you can't hide them from a programmer.&amp;nbsp; Once a LIBNAME has been defined, SAS saves that in the session's metadata (dictionary tables).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question:&amp;nbsp; Are users set up with a macro autocall library defined?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question:&amp;nbsp; Does your operating system allow you to have complete access to a file, but users to have read access only to that file? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 18:54:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56370#M15748</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-02-16T18:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56371#M15749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jerry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is obviously your call but, if a user were to go to tools and assign a libname as being permanent, it would result in being added to the sas registry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you may have misunderstood what I was suggesting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say you had the following lines in a text file called s:\testreg&amp;nbsp; where s was some network drive that everyone had access to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[CORE\OPTIONS\LIBNAMES\!USER]&lt;/P&gt;&lt;P&gt;"ENGINE"="&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&lt;/P&gt;&lt;P&gt;"LIBRARY"="project "&lt;/P&gt;&lt;P&gt;"OPTIONS"=""&lt;/P&gt;&lt;P&gt;"PATH"="s:\\thefiles"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you were to have everyone run the following code, the libary project would always appear whenever they open subsequent sas sessions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc registry import="s:\testreg";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I obviously could be wrong, but I thought that was what you were trying to accomplish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 19:17:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56371#M15749</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-16T19:17:42Z</dc:date>
    </item>
    <item>
      <title>How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56372#M15750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Tools &amp;gt; New Library &amp;gt; tick "enable at start up"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 20:43:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56372#M15750</guid>
      <dc:creator>VX_Xc</dc:creator>
      <dc:date>2012-02-16T20:43:35Z</dc:date>
    </item>
    <item>
      <title>How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56373#M15751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Amazing.&amp;nbsp; It worked perfectly.&amp;nbsp; Does the definition travel with you, if you log on to a network from another machine?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 20:50:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56373#M15751</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-02-16T20:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56374#M15752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Astounding: Which method were you referring to?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 20:58:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56374#M15752</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-16T20:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56375#M15753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; The VX=Xc method.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 21:00:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56375#M15753</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-02-16T21:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56376#M15754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Astounding: I must have missed something because I don't see anything like that among the responses.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 21:12:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56376#M15754</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-16T21:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56377#M15755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; It should be 5 or 6 responses above this one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 21:22:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56377#M15755</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-02-16T21:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to create permanent libnames in my program</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56378#M15756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Astounding: I still don't see it.&amp;nbsp; Can you post the time it has listed for having been posted?&lt;/P&gt;&lt;P&gt;Thanks in advance, Art&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 21:28:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-create-permanent-libnames-in-my-program/m-p/56378#M15756</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-16T21:28:59Z</dc:date>
    </item>
  </channel>
</rss>

