<?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: Libname error using PCFILES engine for Access in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Libname-error-using-PCFILES-engine-for-Access/m-p/488997#M6077</link>
    <description>&lt;P&gt;UE does not support the PCFiles server. See&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Programming/pcfiles-serverr-with-SAS-University-Edition/td-p/244098" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/pcfiles-serverr-with-SAS-University-Edition/td-p/244098&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 22 Aug 2018 18:19:54 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2018-08-22T18:19:54Z</dc:date>
    <item>
      <title>Libname error using PCFILES engine for Access</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libname-error-using-PCFILES-engine-for-Access/m-p/488988#M6076</link>
      <description>&lt;P&gt;Hi there&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am&amp;nbsp; using SAS University&amp;nbsp; Edition&amp;nbsp; and&amp;nbsp; trying to&amp;nbsp; access excel workbook products.xlsx using&amp;nbsp; excel and&amp;nbsp; pcfiles&amp;nbsp; engines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am&amp;nbsp; using&amp;nbsp; Excel 2013&amp;nbsp; with 64 bit&amp;nbsp; and SAS University&amp;nbsp; edition&amp;nbsp; with 64 bit&amp;nbsp; on my personal&amp;nbsp; computer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The&amp;nbsp; path I&amp;nbsp; am&amp;nbsp; using is&amp;nbsp; "path=/folders/myfolders/products.xlsx;&lt;/P&gt;&lt;P&gt;The&amp;nbsp; code&amp;nbsp; is&amp;nbsp; as&amp;nbsp; follows ,&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options  validvarname=V7;

libname  prod pcfiles path="&amp;amp;path\products.xlsx";

proc contents data= prod._all_;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I am&amp;nbsp; getting&amp;nbsp; the&amp;nbsp; following&amp;nbsp; errors,&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;         libname  prod pcfiles path="&amp;amp;path\products.xlsx";
 ERROR: The SERVER= option is required for establishing a connection through the SAS/ACCESS Interface to PC Files.
 ERROR: Error in the LIBNAME statement.
        
         proc contents data= prod._all_;
         run;
 
 ERROR: Libref PROD is not assigned.
 NOTE: Statements not processed because of errors noted above.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I&amp;nbsp; am not&amp;nbsp; getting&amp;nbsp; why&amp;nbsp; this&amp;nbsp; error comes&amp;nbsp; there&amp;nbsp; when I&amp;nbsp; try to use&amp;nbsp; excel&amp;nbsp; and&amp;nbsp; pcfiles&amp;nbsp; engines . Please help&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp; in advance ,&lt;/P&gt;&lt;P&gt;Sanika:)&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 17:28:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libname-error-using-PCFILES-engine-for-Access/m-p/488988#M6076</guid>
      <dc:creator>San_0611</dc:creator>
      <dc:date>2018-08-22T17:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: Libname error using PCFILES engine for Access</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libname-error-using-PCFILES-engine-for-Access/m-p/488997#M6077</link>
      <description>&lt;P&gt;UE does not support the PCFiles server. See&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Programming/pcfiles-serverr-with-SAS-University-Edition/td-p/244098" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/pcfiles-serverr-with-SAS-University-Edition/td-p/244098&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 18:19:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libname-error-using-PCFILES-engine-for-Access/m-p/488997#M6077</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-08-22T18:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: Libname error using PCFILES engine for Access</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libname-error-using-PCFILES-engine-for-Access/m-p/489004#M6078</link>
      <description>&lt;P&gt;Did you check &lt;A href="https://blogs.sas.com/content/sasdummy/2015/05/20/using-libname-xlsx-to-read-and-write-excel-files/" target="_self"&gt;XLSX libname&lt;/A&gt; engine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* because Excel field names often have spaces */
options validvarname=any;
 
libname xl XLSX '/folders/myfolders/sas_tech_talks_15.xlsx';
 
/* discover member (DATA) names */
proc datasets lib=xl; quit;
 
libname xl CLEAR;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Aug 2018 18:40:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libname-error-using-PCFILES-engine-for-Access/m-p/489004#M6078</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-08-22T18:40:48Z</dc:date>
    </item>
  </channel>
</rss>

