<?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: ERROR: Library does not exist in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/ERROR-Library-does-not-exist/m-p/546969#M8308</link>
    <description>&lt;P&gt;Since the issue is with the D31JAN19 it would be appropriate to actually show the libname statement for that library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Clear the log.&lt;/P&gt;
&lt;P&gt;Run your autoexec manually.&lt;/P&gt;
&lt;P&gt;Paste the log into a code box opened using the forum's {I} icon.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 28 Mar 2019 17:34:56 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-03-28T17:34:56Z</dc:date>
    <item>
      <title>ERROR: Library does not exist</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-Library-does-not-exist/m-p/546932#M8299</link>
      <description>&lt;P&gt;We are running MXG36.36 with SAS9.4 on Windows 10 x64 bit. (Testing phase - not a live one yet)&lt;/P&gt;&lt;P&gt;When I try to run a proc content command I keep getting Library xxxxxx&amp;nbsp;Does not exist.&lt;/P&gt;&lt;P&gt;Physically the file is present and I have also assigned them in my autoexec file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I execute&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc contents data=detail.typetcp&lt;/STRONG&gt;; ----&amp;gt; this is a SQL VIEW&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR: Library D31JAN19 does not exist&lt;/STRONG&gt;. ----&amp;gt; I get almost 90 errors with different dates starting from Dec 2018&lt;/P&gt;&lt;P&gt;where as when I run the following&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc contents data=D31JAN19._all_ nods;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;I get the output&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Only this Procedure Content is causing trouble, all other proc's are running fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Background&amp;nbsp;: We also use SAS 9.2 on Windows 7 32bit and the same code works fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for you help.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 15:56:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-Library-does-not-exist/m-p/546932#M8299</guid>
      <dc:creator>chelly</dc:creator>
      <dc:date>2019-03-28T15:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Library does not exist</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-Library-does-not-exist/m-p/546938#M8301</link>
      <description>&lt;P&gt;Where is the LIBNAME statement that assigns your library named &lt;STRONG&gt;D31JAN19.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Or is &lt;STRONG&gt;D31JAN19&lt;/STRONG&gt; supposed to be a data set in the DETAIL library? If so the syntax would use the library name with the data set:&lt;/P&gt;
&lt;PRE&gt;proc contents data=detail.D31JAN19;
run;
&lt;/PRE&gt;
&lt;P&gt;If you looking to run contents on a library the library has to be defined first and the only library I see that may be defined other than the WORK and SAS supplied SASHELP and SASUSER is DETAIL.&lt;/P&gt;
&lt;P&gt;If you want all of the data sets in the DETAIL library the syntax would be&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc contents data=detail._all_
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Mar 2019 16:14:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-Library-does-not-exist/m-p/546938#M8301</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-03-28T16:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Library does not exist</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-Library-does-not-exist/m-p/546943#M8302</link>
      <description>&lt;P&gt;LIBANAME statement is coded in my autoexec file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LIBNAME GDG&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'd:\SASDATA\GDG';&lt;BR /&gt;LIBNAME EMPTY&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;'d:\SASDATA\EMPTY';&lt;BR /&gt;LIBNAME HISTORY&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'd:\SASDATA\HISTORY';&lt;BR /&gt;LIBNAME D01JAN19&amp;nbsp;&amp;nbsp;&amp;nbsp; 'd:\SASDATA\GDG\D01JAN19';&lt;BR /&gt;LIBNAME D02JAN19&amp;nbsp;&amp;nbsp;&amp;nbsp; 'd:\SASDATA\GDG\D02JAN19';&lt;/P&gt;&lt;P&gt;etc...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I run the following&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;proc&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;sql&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;describe&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;view&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; DETAIL.TYPETCPA;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;I get&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;SQL view is defined as follows&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;from D01FEB19.TYPETCPA&lt;/P&gt;&lt;P&gt;union all corresponding&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;from D01JAN19.TYPETCPA&lt;/P&gt;&lt;P&gt;union all corresponding&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;from D01MAR19.TYPETCPA&lt;/P&gt;&lt;P&gt;union all corresponding&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;from D02FEB19.TYPETCPA&lt;/P&gt;&lt;P&gt;union all corresponding&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;from D02JAN19.TYPETCPA&lt;/P&gt;&lt;P&gt;union all corresponding&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;etc...…..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 16:23:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-Library-does-not-exist/m-p/546943#M8302</guid>
      <dc:creator>chelly</dc:creator>
      <dc:date>2019-03-28T16:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Library does not exist</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-Library-does-not-exist/m-p/546969#M8308</link>
      <description>&lt;P&gt;Since the issue is with the D31JAN19 it would be appropriate to actually show the libname statement for that library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Clear the log.&lt;/P&gt;
&lt;P&gt;Run your autoexec manually.&lt;/P&gt;
&lt;P&gt;Paste the log into a code box opened using the forum's {I} icon.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 17:34:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-Library-does-not-exist/m-p/546969#M8308</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-03-28T17:34:56Z</dc:date>
    </item>
  </channel>
</rss>

