<?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: libref too many characters in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/libref-too-many-characters/m-p/121327#M24864</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The environment version and usage is not mentioned.&lt;/P&gt;&lt;P&gt;When using BI/DI server (EGuide) libnames can have very long names as defined&amp;nbsp; in the SAS metdatabase.&lt;/P&gt;&lt;P&gt;The real used name is translated to the one having the 8 character limit.&lt;/P&gt;&lt;P&gt;When the table is a physical location on the OS you can get its physical name. When it is RDBMS that is impossible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement:" Libname _all_ list ; "&amp;nbsp; will show all technical libname defiitions&amp;nbsp; &lt;/P&gt;&lt;P&gt;_all_ is the * mask like indication it could be your specific libname. &lt;BR /&gt;Showing .requesting details in EG will also let you view the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The %sysfunc(pathname(yourlib)) will give the physical path of the libname on the Unix Server. &lt;/P&gt;&lt;P&gt; The filelist option in EG will serve you with a lot of the same functionality as in Unix.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.bi-notes.com/2013/03/sas-enterprise-guide-unix-putty/" title="http://www.bi-notes.com/2013/03/sas-enterprise-guide-unix-putty/"&gt;http://www.bi-notes.com/2013/03/sas-enterprise-guide-unix-putty/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;What is the thing you are trying to achieve?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Aug 2013 04:53:23 GMT</pubDate>
    <dc:creator>jakarman</dc:creator>
    <dc:date>2013-08-26T04:53:23Z</dc:date>
    <item>
      <title>libref too many characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/libref-too-many-characters/m-p/121325#M24862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am attempting to access a file called bsl. It is located in a libname called datashare_N which is obviously more than 8 charaters.&amp;nbsp; Therefore the following code will yield an error;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;set datashare_N.bsl;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a workaround for this because I attempted to find the path using putty.&amp;nbsp; However because there is a requirement to type in a password to see the tables in the libname, I get an acess denied when attempting to get the full path.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Aug 2013 21:56:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/libref-too-many-characters/m-p/121325#M24862</guid>
      <dc:creator>omega1983</dc:creator>
      <dc:date>2013-08-24T21:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: libref too many characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/libref-too-many-characters/m-p/121326#M24863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The libref must be 8 characters or less.&amp;nbsp; However, in the libname statement, you can specify the password.&amp;nbsp; Take a look at:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lestmtsref/63323/HTML/default/viewer.htm#n1nk65k2vsfmxfn1wu17fntzszbp.htm" title="http://support.sas.com/documentation/cdl/en/lestmtsref/63323/HTML/default/viewer.htm#n1nk65k2vsfmxfn1wu17fntzszbp.htm"&gt;SAS(R) 9.3 Statements: Reference&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Aug 2013 22:49:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/libref-too-many-characters/m-p/121326#M24863</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-08-24T22:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: libref too many characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/libref-too-many-characters/m-p/121327#M24864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The environment version and usage is not mentioned.&lt;/P&gt;&lt;P&gt;When using BI/DI server (EGuide) libnames can have very long names as defined&amp;nbsp; in the SAS metdatabase.&lt;/P&gt;&lt;P&gt;The real used name is translated to the one having the 8 character limit.&lt;/P&gt;&lt;P&gt;When the table is a physical location on the OS you can get its physical name. When it is RDBMS that is impossible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement:" Libname _all_ list ; "&amp;nbsp; will show all technical libname defiitions&amp;nbsp; &lt;/P&gt;&lt;P&gt;_all_ is the * mask like indication it could be your specific libname. &lt;BR /&gt;Showing .requesting details in EG will also let you view the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The %sysfunc(pathname(yourlib)) will give the physical path of the libname on the Unix Server. &lt;/P&gt;&lt;P&gt; The filelist option in EG will serve you with a lot of the same functionality as in Unix.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.bi-notes.com/2013/03/sas-enterprise-guide-unix-putty/" title="http://www.bi-notes.com/2013/03/sas-enterprise-guide-unix-putty/"&gt;http://www.bi-notes.com/2013/03/sas-enterprise-guide-unix-putty/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;What is the thing you are trying to achieve?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 04:53:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/libref-too-many-characters/m-p/121327#M24864</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2013-08-26T04:53:23Z</dc:date>
    </item>
  </channel>
</rss>

