| Date: | Tue, 31 Mar 1998 09:03:28 -0800 |
| Reply-To: | Juana Sanchez <juanas@UCLA.EDU> |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | Juana Sanchez <juanas@UCLA.EDU> |
| Subject: | Re: How to import dbase file into SAS 6.12 |
|
| In-Reply-To: | <3520B7FE.5CC4F2@tm.net.my> |
| Content-Type: | text/plain; charset="us-ascii" |
|---|
At 02:31 PM 3/31/98 +0500, you wrote:
>Dear group,
>
>Any body knows how to import or read data from dbase 4.0 into sas 6.12
>for windows?
>
>Thank you
>
>
I use here
===================================================
libname in 'd:\sasdata';
filename aa 'd:\dbfdata\yourfile.dbf';
proc dbf db4=aa out=temp1 ;
data in.newsasdata; set temp1;
run;
==================================
Juana Sanchez, Ph.D.
Jonsson Comprehensive Cancer Center, UCLA
Division of Cancer Prevention and Control Research
|