<?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: I cant to export  a file Access Database, connection failed error in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284789#M19493</link>
    <description>I have checked that PC File Server is running. First i checked in the control panel, administrative tools, services, SAS PC... and your state is runnig, and then i opened the application without errors.</description>
    <pubDate>Fri, 15 Jul 2016 10:10:20 GMT</pubDate>
    <dc:creator>Felixmb</dc:creator>
    <dc:date>2016-07-15T10:10:20Z</dc:date>
    <item>
      <title>I cant to export  a file Access Database, connection failed error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284763#M19488</link>
      <description>&lt;P&gt;I'm having a bit of trouble with SAS Enterpise Guide to export &amp;nbsp;a Access database.&amp;nbsp; I'm running 64-bit Windows, 32-bit SAS.&amp;nbsp; I've downloaded the PC File Server. &amp;nbsp;&lt;SPAN style="line-height: 20px;"&gt;I am using the next&amp;nbsp;code. &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="line-height: 20px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc export&lt;BR /&gt;data=work.rr_if&lt;BR /&gt;outtable='ACCESS'&lt;BR /&gt;dbms=ACCESS replace;&lt;BR /&gt;database='D:\Users\martin\Desktop\prueba.mdb';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i run the program, i get&amp;nbsp;&lt;SPAN&gt;"Connection Failed.&amp;nbsp; See log for details." I need more details.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Someone can i help me?.&lt;/P&gt;&lt;P&gt;Thanks, Felix.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2016 07:48:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284763#M19488</guid>
      <dc:creator>Felixmb</dc:creator>
      <dc:date>2016-07-15T07:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: I cant to export  a file Access Database, connection failed error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284774#M19489</link>
      <description>&lt;P&gt;Check whether the&amp;nbsp;&lt;SPAN&gt;PC File Server process is running.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If possible post the complete error message.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2016 08:48:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284774#M19489</guid>
      <dc:creator>naveenraj</dc:creator>
      <dc:date>2016-07-15T08:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: I cant to export  a file Access Database, connection failed error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284778#M19490</link>
      <description>&lt;P&gt;And what does the log say?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2016 08:57:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284778#M19490</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-07-15T08:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: I cant to export  a file Access Database, connection failed error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284782#M19492</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In order to use the SAS PC File Server with Proc EXPORT, you need to use dbms=ACCESSCS instead of dbms=ACCESS, see also code below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc export
  data=sashelp.class
  outtable='fromSAS'
  dbms=ACCESSCS
  replace
;
  database='c:\temp\sample.mdb';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2016 09:39:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284782#M19492</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-07-15T09:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: I cant to export  a file Access Database, connection failed error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284789#M19493</link>
      <description>I have checked that PC File Server is running. First i checked in the control panel, administrative tools, services, SAS PC... and your state is runnig, and then i opened the application without errors.</description>
      <pubDate>Fri, 15 Jul 2016 10:10:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284789#M19493</guid>
      <dc:creator>Felixmb</dc:creator>
      <dc:date>2016-07-15T10:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: I cant to export  a file Access Database, connection failed error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284790#M19494</link>
      <description>15 proc export&lt;BR /&gt;16 data=work.rr_if&lt;BR /&gt;17 outtable='ACCESSCS'&lt;BR /&gt;18 dbms=ACCESS replace;&lt;BR /&gt;19 database='D:\Test.mdb';&lt;BR /&gt;20 run;&lt;BR /&gt;&lt;BR /&gt;Connection Failed. See log for details.&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE EXPORT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;I have modificated the code, and i runned the program, and appear the same error, what i do wrong?</description>
      <pubDate>Fri, 15 Jul 2016 10:13:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284790#M19494</guid>
      <dc:creator>Felixmb</dc:creator>
      <dc:date>2016-07-15T10:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: I cant to export  a file Access Database, connection failed error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284792#M19495</link>
      <description>hi, is i use the same code, the program run successful, however i cant´t access to file, windows dasen´t find the file, but i run the program change the database, i see again the same error, connection failed...&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 15 Jul 2016 10:16:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284792#M19495</guid>
      <dc:creator>Felixmb</dc:creator>
      <dc:date>2016-07-15T10:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: I cant to export  a file Access Database, connection failed error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284840#M19497</link>
      <description>&lt;P&gt;Try changing&lt;/P&gt;
&lt;P&gt;database='D:\Test.mdb';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to&lt;/P&gt;
&lt;P&gt;database='D:\Test.accdb';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The file extensions changed.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2016 14:50:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/284840#M19497</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-07-15T14:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: I cant to export  a file Access Database, connection failed error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/285183#M19525</link>
      <description>I have changed the extension, but i always see the same error, connection failed.... Thanks</description>
      <pubDate>Mon, 18 Jul 2016 09:32:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/I-cant-to-export-a-file-Access-Database-connection-failed-error/m-p/285183#M19525</guid>
      <dc:creator>Felixmb</dc:creator>
      <dc:date>2016-07-18T09:32:34Z</dc:date>
    </item>
  </channel>
</rss>

