<?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: SAS Enterprise Guide 7 | Import DBF in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-7-Import-DBF/m-p/514561#M32548</link>
    <description>&lt;P&gt;This link should help:&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=acpcref&amp;amp;docsetTarget=p04mnmm6ms0y8yn1ass9qgxa932c.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=acpcref&amp;amp;docsetTarget=p04mnmm6ms0y8yn1ass9qgxa932c.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It lists the statements that are valid for PROC IMPORT and DBMS = DBF. You can't use server, port, serveruser, serverpass with DBMS = DBF. I suspect you need to have the DBF folder directly accessible by your SAS server, not on another one.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Nov 2018 20:15:27 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2018-11-19T20:15:27Z</dc:date>
    <item>
      <title>SAS Enterprise Guide 7 | Import DBF</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-7-Import-DBF/m-p/514521#M32547</link>
      <description>&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Recently we move to SAS 9.4 and &amp;nbsp;SAS EG 7 on Unix. Now, the users has problem to import .DBF files using point-and-click. We tried to use the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#000080"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;FONT face="Courier New" size="2" color="#000080"&gt;&lt;STRONG&gt;import&lt;/STRONG&gt;&lt;/FONT&gt; &lt;FONT face="Courier New" size="2" color="blue"&gt;datafile&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#800080"&gt;'\\folder_on_network\file.DBF'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="blue"&gt;dbms&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=dbf &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="blue"&gt;out&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=work.table&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="blue"&gt;replace&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="blue"&gt;server&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#800080"&gt;'IP'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="blue"&gt;port&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#008080"&gt;&lt;STRONG&gt;9621&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="blue"&gt;serveruser&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#800080"&gt;'domain\user'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="blue"&gt;serverpass&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#800080"&gt;'senha'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="Courier New" size="2" color="#000080"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;But the procedure not&amp;nbsp;recognise&amp;nbsp;the PCFF server options and our files are on windows network folder:&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;30 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; server='IP';&lt;BR /&gt;&lt;FONT face="Courier New" size="2" color="red"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;______&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="Courier New" size="2" color="red"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;180&lt;/FONT&gt;&lt;BR /&gt;31 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; port=9621; &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;Any idea to resolve it?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 18:09:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-7-Import-DBF/m-p/514521#M32547</guid>
      <dc:creator>MariaD</dc:creator>
      <dc:date>2018-11-19T18:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide 7 | Import DBF</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-7-Import-DBF/m-p/514561#M32548</link>
      <description>&lt;P&gt;This link should help:&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=acpcref&amp;amp;docsetTarget=p04mnmm6ms0y8yn1ass9qgxa932c.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=acpcref&amp;amp;docsetTarget=p04mnmm6ms0y8yn1ass9qgxa932c.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It lists the statements that are valid for PROC IMPORT and DBMS = DBF. You can't use server, port, serveruser, serverpass with DBMS = DBF. I suspect you need to have the DBF folder directly accessible by your SAS server, not on another one.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 20:15:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-7-Import-DBF/m-p/514561#M32548</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-11-19T20:15:27Z</dc:date>
    </item>
  </channel>
</rss>

