Hi Folks,
Recently we move to SAS 9.4 and 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:
proc import datafile='\\folder_on_network\file.DBF'
dbms=dbf
out=work.table replace;
server='IP';
port=9621;
serveruser='domain\user';
serverpass='senha';
run;
But the procedure not recognise the PCFF server options and our files are on windows network folder:
30 server='IP';
______
180
31 port=9621;
Any idea to resolve it?
Regards,