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
|