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 (March 2008, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 13 Mar 2008 17:17:30 -0400
Reply-To:   Chang Chung <chang_y_chung@HOTMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Chang Chung <chang_y_chung@HOTMAIL.COM>
Subject:   Re: SAS/Access OLEDB & Office 2007
Comments:   To: Sarah Whittier <swhittier@ISO-NE.COM>

On Thu, 13 Mar 2008 15:43:25 -0400, Sarah Whittier <swhittier@ISO-NE.COM> wrote:

>Hello, > >Does anyone have a working example of using SAS/Access OLEDB to read a MS >Access 2007 database? ... hi, sarah, the following worked on my win vista. sas 9.1.3 sp4 and office 2007. hth. the database1.accdb file had a table called class. cheers, chang

libname e oledb provider="Microsoft.ACE.OLEDB.12.0" properties=('Data Source'='d:\Database1.accdb') preserve_tab_names=yes ; %put &sysdbmsg; /* any message returned? */

proc print data=e.class; run;

libname e clear;


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