Date: Wed, 2 May 2007 07:26:07 -0700
Reply-To: "Terjeson, Mark" <Mterjeson@RUSSELL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Terjeson, Mark" <Mterjeson@RUSSELL.COM>
Subject: Re: What does this warning OUTREP imply ???
In-Reply-To: A<c2192a610705020709n1ca7d813xb7cb0813df44db2c@mail.gmail.com>
Content-Type: text/plain; charset="US-ASCII"
Hi,
Three questions:
1) are the extract views remote or local?
2) what is your LIBNAME criteria?
3) what is the extract format flavor?
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
SAS_learner
Sent: Wednesday, May 02, 2007 7:10 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: What does this warning OUTREP imply ???
Hello guys I am trying to extract views (generated by oracle ) into SAS
, everything looks fine expect I am getting a WARNING "WARNING: The
option OUTREP is not implemented in the V8 engine." What does it mean
??
*Capture the variables for Subset One ;
931 data v_imn4 ;
932 set views.imn4 (where = ( subsetsn = 6 ) ) ;
WARNING: The option OUTREP is not implemented in the V8 engine.
933 length PGNM $15. ;
934 PGNM = trim(left(QUALIFYV))!!'.'!! trim( put(SUBEVE, 2. -l )) ;
935 label pgnm = "Page Number";
936 keep &keep_var &keep_var1 PGNM ;
937 run;
NOTE: There were 2 observations read from the data set VIEWS.IMN4.
WHERE subsetsn=6;
NOTE: The data set WORK.V_IMN4 has 2 observations and 27 variables.
NOTE: DATA statement used:
real time 0.31 seconds
cpu time 0.02 seconds
|