Date: Mon, 16 Mar 2009 13:33:20 -0400
Reply-To: Huong Halpin <huongnhalpin@YAHOO.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Huong Halpin <huongnhalpin@YAHOO.COM>
Subject: why does this proc print keep running?
To all,
I don't see anything wrong with proc print below but it kept running. It
did print the data correctly. However, I could not execute anything else
unless I use "break" to stop this proc print;
data sasuser.talent2;
set sasuser.talent;
ftheight=input(height,2.)/12;
run;
proc print data=sasuser.talent2;
run;
TIA
Huong
|