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 (May 2006, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 31 May 2006 10:12:13 -0400
Reply-To:     Nishant Dholakia <nishant.dholakia@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Nishant Dholakia <nishant.dholakia@GMAIL.COM>
Subject:      log analysis

Hello, I am trying to write in a macro to analyse the log and recreate the program from it. It goes like this

%macro xyz; data x; infile "location of log"; input log_ 200. @; conditions... run; %mend; %xyz

Now the problem is that some of the statements in the log are not captured by the log_ variable. I have tried playing around with the length, it does change the number of observations that I get from the log file however I am still missing out on some critical statements from the log. The interesting part is that I have done something very similar sometime back and it worked perfectly alright so i am sure its just a minor thing that my eyes are missing. A pair of fresh eyes will definitely help out.

Thanks


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