<?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: Proc export error in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/910722#M359129</link>
    <description>&lt;P&gt;The DBMS ACCESS option is only valid if your SAS Server runs on the Windows OS. For other OSs then ACCESSCS is the only option but it requires the &lt;A href="https://support.sas.com/downloads/browse.htm?fil=&amp;amp;cat=63" target="_blank" rel="noopener"&gt;SAS PC Files Server product&lt;/A&gt; to be installed, either on your client PC or on an accessible Windows server. The link is to where you can download the appropriate version.&lt;/P&gt;</description>
    <pubDate>Fri, 05 Jan 2024 23:59:16 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2024-01-05T23:59:16Z</dc:date>
    <item>
      <title>Proc export error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/910696#M359117</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;I have an issue where I am trying to export a dataset from EG to the sas server to access databse using export procedure.&lt;/P&gt;
&lt;P&gt;PROC EXPORT DATA=cars&lt;BR /&gt;OUTTABLE='Acces'&lt;BR /&gt;DBMS=ACCESSCS REPLACE;&lt;BR /&gt;DATABASE='ss.accdb';&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;I get the following error:&lt;/P&gt;
&lt;P&gt;ERROR: Server Name is invalid or missing.&lt;/P&gt;
&lt;P&gt;Note that I have logged in to SAS server and executing the sas program.. so i dont need to&amp;nbsp;&lt;/P&gt;
&lt;P&gt;sepecify server details in proc export statement.&lt;/P&gt;
&lt;P&gt;also I have the license for sas/access interface to PC files&lt;/P&gt;
&lt;P&gt;could you help me fix the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Mushy&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 19:16:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/910696#M359117</guid>
      <dc:creator>Mushy</dc:creator>
      <dc:date>2024-01-05T19:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Proc export error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/910697#M359118</link>
      <description>&lt;P&gt;By using DBMS=ACCESSCS you are asking SAS to connect to SAS PC Files Server where it can run Microsoft code to create an ACCESS file.&amp;nbsp; But you did not tell your SAS session what the name of the SAS PC Files Server was that it should use.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your SAS code is already running on a Windows machine that has ACCESS installed try using DBMS=ACCESS instead.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 19:22:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/910697#M359118</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-01-05T19:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: Proc export error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/910718#M359125</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp; Thanks for the response and the explanation. When the change the DBMS=ACCESS, I get the following error message:&lt;/P&gt;
&lt;P&gt;ERROR: DBMS type ACCESS not valid for export.&lt;/P&gt;
&lt;P&gt;Let me know if you know the root cause.&lt;/P&gt;
&lt;P&gt;Thanks Mushy&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 22:56:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/910718#M359125</guid>
      <dc:creator>Mushy</dc:creator>
      <dc:date>2024-01-05T22:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc export error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/910720#M359127</link>
      <description>&lt;P&gt;Please share more information.&lt;/P&gt;
&lt;P&gt;Do you use a local SAS installation, or a client/server setup?&lt;/P&gt;
&lt;P&gt;Which interface do you use? SAS Studio, Enterprise Guide, Display Manager?&lt;/P&gt;
&lt;P&gt;If C/S, which operating system does the server use?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run PROC SETINIT and post the complete log.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 23:36:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/910720#M359127</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-01-05T23:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Proc export error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/910722#M359129</link>
      <description>&lt;P&gt;The DBMS ACCESS option is only valid if your SAS Server runs on the Windows OS. For other OSs then ACCESSCS is the only option but it requires the &lt;A href="https://support.sas.com/downloads/browse.htm?fil=&amp;amp;cat=63" target="_blank" rel="noopener"&gt;SAS PC Files Server product&lt;/A&gt; to be installed, either on your client PC or on an accessible Windows server. The link is to where you can download the appropriate version.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 23:59:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/910722#M359129</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-01-05T23:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Proc export error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/914264#M360252</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;&amp;nbsp; Thanks for the guidance!&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2024 18:02:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-export-error/m-p/914264#M360252</guid>
      <dc:creator>Mushy</dc:creator>
      <dc:date>2024-02-02T18:02:39Z</dc:date>
    </item>
  </channel>
</rss>

