LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (December 2004, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 13 Dec 2004 10:00:42 -0500
Reply-To:     Jerry Davis <jwd@GRIFFIN.UGA.EDU>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Jerry Davis <jwd@GRIFFIN.UGA.EDU>
Subject:      Re: Reading ACCESS files
In-Reply-To:  <s1bd5383.026@MAIL.NDRI.ORG>
Content-Type: text/plain; charset="US-ASCII"

Peter Flom wrote:

> What do she and I need to know so that we can make this work? > Can we read the ACCESS files using Base SAS?

I have access to SAS for PC file formats and this snippet of code works for me.

proc import table="dummy1" out=sasfiles.dummy1 dbms=access; database="c:\sas\various\dummy.mdb";

* dummy.mdb is the database name; * dummy1 is the internal table name;

data one; set sasfiles.dummy; proc print; ...

Jerry -- Jerry Davis Experimental Statistics UGA, CAES, Griffin Campus


Back to: Top of message | Previous page | Main SAS-L page