|
> From: ninon [mailto:ndavi@AUFEMININ.COM]
> I'm trying to create MS Access datasets from SAS using PC/SAS
> 8.2 with PROC EXPORT like this :
>
> proc export
> data =work.mytable
> outtable = "tblCleverAccessTableName"
> dbms = ACCESS REPLACE;
> database = "c:\temp\mytable.mdb";
> run;
>
> But in the log I have this message :
> ERROR: DBMS type ACCESS not valid for export.
you need
dbms = access97
Ron Fehd the macro maven CDC Atlanta GA USA RJF2@cdc.gov
|