/* This is good for reading dBase files. This will work with dBase II, III, IV and V. Just replace db4= with db2=, db3= or db5=. I believe that this will work on Unix SAS also. This is not documented in any of the newer SAS manuals. Look in 'SAS Procedures Guide for Personal Computers, Version 6 Edition' -- this is one of the old SAS for DOS manuals. 17 JUL 96 -- sas.help@umich.edu */ filename dbfile 'c:\dbfile.dbf'; libname temp 'c:\temp\'; proc dbf db4=dbfile out=temp.sasdata; run;