<?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: WARNING: One or more libraries specified in the concatenated library SASHELP in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484729#M125862</link>
    <description>&lt;P&gt;Well, you would need to be more specific, run the code and show the log each time.&amp;nbsp; From a look through:&lt;/P&gt;
&lt;P&gt;- This is not used in the first part:&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token statement"&gt;Libname&lt;/SPAN&gt; saspms &lt;SPAN class="token string"&gt;"C:\PMS"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This engine does not match the file type:&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt; datafile&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"C:\PMS\Anzeigen2.xls"&lt;/SPAN&gt;
 DBMS &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;EXCEL&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;XLS file type is old binary, and may not be the same Excel engine, so that may be causing you issues.&amp;nbsp; Remove the dbms and let it choose which engine to use.&lt;/P&gt;
&lt;P&gt;Same here, not sure excelcs should be the engine:&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;            DATAFILE&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"C:\SAS_PMS\Datensatz_PMS.xls"&lt;/SPAN&gt; 
            DBMS&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;EX&lt;/SPAN&gt;CELCS &lt;SPAN class="token keyword"&gt;REPLACE&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Are you sure the paths are correct as in 1:&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token statement"&gt;Libname&lt;/SPAN&gt; saspms &lt;SPAN class="token string"&gt;"C:\PMS"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And in 2;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token statement"&gt;Libname&lt;/SPAN&gt; saspms &lt;SPAN class="token string"&gt;"C:\SAS_PMS"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Does one or either of those exist (and do you have write permission to them.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Aug 2018 13:11:16 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2018-08-07T13:11:16Z</dc:date>
    <item>
      <title>WARNING: One or more libraries specified in the concatenated library SASHELP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484720#M125860</link>
      <description>&lt;P&gt;Dear Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working with sas for months, but now this error message is showing up everytime I start my SAS 9.4.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;WARNING: One or more libraries specified in the concatenated library SASHELP&lt;BR /&gt;WARNING: do not exist.&amp;nbsp; These libraries were removed from the concatenation.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I also cannot import my excel sheets anymore. Does anybody know what to do and how to fix the problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I always get that error message when I try to import:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: Connect: Das angegebene Modul wurde nicht gefunden.&lt;BR /&gt;ERROR: Error in the LIBNAME statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I have a 64bit SAS and 32bit Excel btw, which may cause the Problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;I tried both

Libname saspms "C:\PMS";


proc import out=work.datensatz
 datafile="C:\PMS\Anzeigen2.xls"
 DBMS = EXCEL;
run;

or:

Libname saspms "C:\PMS";

PROC IMPORT OUT= work.datensatz
            DATAFILE= "C:\PMS\Anzeigen2.xls" 
            DBMS=EXCELCS REPLACE;
     RANGE="Sheet1$"; 
     SCANTEXT=YES;
     USEDATE=YES;
     SCANTIME=YES;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 13:21:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484720#M125860</guid>
      <dc:creator>marysmith</dc:creator>
      <dc:date>2018-08-07T13:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: One or more libraries specified in the concatenated library SASHELP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484729#M125862</link>
      <description>&lt;P&gt;Well, you would need to be more specific, run the code and show the log each time.&amp;nbsp; From a look through:&lt;/P&gt;
&lt;P&gt;- This is not used in the first part:&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token statement"&gt;Libname&lt;/SPAN&gt; saspms &lt;SPAN class="token string"&gt;"C:\PMS"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This engine does not match the file type:&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt; datafile&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"C:\PMS\Anzeigen2.xls"&lt;/SPAN&gt;
 DBMS &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;EXCEL&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;XLS file type is old binary, and may not be the same Excel engine, so that may be causing you issues.&amp;nbsp; Remove the dbms and let it choose which engine to use.&lt;/P&gt;
&lt;P&gt;Same here, not sure excelcs should be the engine:&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;            DATAFILE&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"C:\SAS_PMS\Datensatz_PMS.xls"&lt;/SPAN&gt; 
            DBMS&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;EX&lt;/SPAN&gt;CELCS &lt;SPAN class="token keyword"&gt;REPLACE&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Are you sure the paths are correct as in 1:&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token statement"&gt;Libname&lt;/SPAN&gt; saspms &lt;SPAN class="token string"&gt;"C:\PMS"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And in 2;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token statement"&gt;Libname&lt;/SPAN&gt; saspms &lt;SPAN class="token string"&gt;"C:\SAS_PMS"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Does one or either of those exist (and do you have write permission to them.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 13:11:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484729#M125862</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-08-07T13:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: One or more libraries specified in the concatenated library SASHELP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484735#M125865</link>
      <description>Hey thanks for your quick reply.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Do you know what this error message means?&lt;BR /&gt;WARNING: One or more libraries specified in the concatenated library SASHELP&lt;BR /&gt;&lt;BR /&gt;WARNING: do not exist. These libraries were removed from the concatenation.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;It always shows up when I open SAS.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I habe 64 bit SAS and 32 bitExcel that's why I used the DBMS, got it from a youtube video^^&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Aug 2018 13:21:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484735#M125865</guid>
      <dc:creator>marysmith</dc:creator>
      <dc:date>2018-08-07T13:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: One or more libraries specified in the concatenated library SASHELP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484739#M125868</link>
      <description>&lt;P&gt;Check out the files which are run with startup like autoexec.sas.&amp;nbsp; It sounds like there is a libname statement referencing folders on your computer that don't exist.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for opening Excel 32 bit on 64 SAS, not sure that is possible.&amp;nbsp; Use pcfiles, or better yet, save to CSV and read in a CSV file with proper datastep import - avoid a guessing procedure like proc import.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 13:26:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484739#M125868</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-08-07T13:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: One or more libraries specified in the concatenated library SASHELP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484740#M125869</link>
      <description>Ok thanks!&lt;BR /&gt;Check out the files which are run with startup like autoexec.sas.&lt;BR /&gt;&lt;BR /&gt;How to do that?&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Aug 2018 13:27:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484740#M125869</guid>
      <dc:creator>marysmith</dc:creator>
      <dc:date>2018-08-07T13:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: One or more libraries specified in the concatenated library SASHELP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484744#M125871</link>
      <description>&lt;P&gt;Been a while since I have used desktop SAS.&amp;nbsp; It is a SAS file which should be in the SAS install location which is run as the system starts up.&amp;nbsp; Search for autoexec.sas.&amp;nbsp; You want to see any line in there which has network or local paths.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 13:35:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484744#M125871</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-08-07T13:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: One or more libraries specified in the concatenated library SASHELP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484830#M125894</link>
      <description>&lt;P&gt;Looks like you have a damaged SAS installation; SASHELP is spread over several directories, and part of them are missing.&lt;/P&gt;
&lt;P&gt;Look in sasv9.cfg for the paths that constitute SASHELP, and see what's missing, so you can restore it from the backup.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 17:09:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/484830#M125894</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-08-07T17:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: One or more libraries specified in the concatenated library SASHELP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/880755#M348002</link>
      <description>&lt;P&gt;&lt;STRONG&gt;WARNING: One or more libraries specified in the concatenated library SASHELP&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;WARNING: do not exist. These libraries were removed from the concatenation.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To remove the warning message that appears when you launch SAS, go to the "nls" folder on your PC, folder path - "C:\Program Files\SASHome\SASFoundation\9.4\nls".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Locate the "SASCFG" folder in one of the folders present in the "nls" folder. Copy it and paste it into the "en" folder. To do so, you must have administrative rights.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you reopen SAS, the warning message will no longer appear in the log.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2023 17:14:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-One-or-more-libraries-specified-in-the-concatenated/m-p/880755#M348002</guid>
      <dc:creator>Pradeep_R</dc:creator>
      <dc:date>2023-06-14T17:14:29Z</dc:date>
    </item>
  </channel>
</rss>

