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 (July 2009, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 22 Jul 2009 15:20:36 -0400
Reply-To:     Tom <tomquin99@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Tom <tomquin99@GMAIL.COM>
Subject:      table or view? -- import from MS Access

I will import data from MS Access to SAS. I use the code below to get the content of the database. libname mylib Access "\\path\mydata.mdb"; proc contents data=mylib._all_ noprint out=contents;run;

I know there are at least two types of components in the mdb file. One is regular table, anoher is view or query.

My question is how I can distinguish them in SAS ?

In the output above, MEMNAME gives all the names of the components; TYPEMEM are all empty; MEMTYPE has a single value 'DATA'

Thanks a lot for reply.


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