sql - Attaching file for a SAS program -


i new sas , tried performing simple query on sas enterprise guide. program follows:

libname iss meta library="sql - iss" metaout=data;   proc sql;     select *      market_option_day      contract_market_code = '023a61'      , report_date between '1/1/13' , '6/30/15'; quit; 

the error im getting following : file work.market_option_day.data not exist.

i dont understand whats wrong because can view file in "sql-iss" library

if file located in library, need prefix library name.

proc sql;   select * iss.market_option_day /* other stuff here ...*/ ; quit; 

for example.


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -