Date: Tue, 31 Mar 2009 08:38:19 +0530
Reply-To: Anindya Mozumdar <anindya.lugbang@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Anindya Mozumdar <anindya.lugbang@GMAIL.COM>
Subject: Re: Reading Web logs with SAS
In-Reply-To: <200903302235.n2UKB5Dd028183@malibu.cc.uga.edu>
Content-Type: text/plain; charset=ISO-8859-1
On Tue, Mar 31, 2009 at 4:05 AM, Richard Whitehead <yamiracer@yahoo.com> wrote:
> someone on another forum posted that web logs can be read directly with
> proc import. is this true? btw, i am in a brief sas-less period, so i
> can't actually check for myself. :-) anyway, regardless, of the answer to
> the above, is there an easy way, i.e. not having to write code in a data
> step, to read web logs with sas?
>
> thanks in advance,
>
> richard whitehead
>
I tried this, and got the unformatted html file -
filename sasint url
'http://sethgodin.typepad.com/seths_blog/2009/03/share-of-wallet-share-of-wall-share-of-voice.html';
proc import datafile = sasint out = sasintd dbms = dlm;
delimiter = "|";
run;
Regards,
Anindya
|