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 2007, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Wed, 2 May 2007 10:21:08 -0400
Reply-To:   Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Subject:   Re: What does this warning OUTREP imply ???

On Wed, 2 May 2007 09:09:47 -0500, SAS_learner <proccontents@GMAIL.COM> wrote:

>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

Hi, You should give some more details: what means: generated by Oracle? That are no Oracle views, right? Otherwise there must be something like SQL pass-through... ...select ... from connection to ...

Or is the libname "views" a libname on Oracle? Something like:

LIBNAME views oracle SSID=xxxx AUTHID=xxxx ACCESS=READONLY CONNECTION=global;

Or is it a view on a ACCESS descriptor on a Oracle table?

Anyway. Try to make a

proq sql; describe view views.imn4; quit;

Maybe that could tell anything about the view.

Otherwise, more details please!

Gerhard


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