How to keep the result set in SAS -


how can write result set select statement in sas table ?

execute ( select *  test ) ...  /* how write sas table  data mytable; set theaboveresultset 

assuming using sort of pass-through sql here.

proc sql; connect oledb (init_string= ...) ; select * connection oledb (   select ... ...  ); quit; 

that simple select query. if you're doing execute (such stored procedure), need have stored proc save data temporary table or view , perform select that. far know can't select execute directly.


Comments

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -