LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (March 2009, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: Richard Whitehead <yamiracer@yahoo.com>
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


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