I have got SAS/ACCESS Interface to ODBC Software,SAS/ACCESS Interface to ORACLE Software,SAS/ACCESS Interface to PC Files Software
SAS ver 9.1.3 - Win XP
Running local and signed on to Sas on Unix machine
I search to access and modify a dbf database
Now I use this code, it works, but I search some more efficient code
proc access dbms=dbf;
/* create access descriptor */
create work.tab18_01.access;
path='c:\data';
assign=yes;
list all;
create work.tab18_02.view;
select all;
run;
Tks
Message was edited by: andrew001