I am using example on:http://support.sas.com/documentation/cdl/en/acreldb/65247/HTML/default/viewer.htm#p0bodejpo614gxn1vk...
to using hive sql instead of sas sql
Use implicit pass-through SQL to extract only 10 rows from the newtab table and load the work SAS data set with the results.
proc sql;
connect to hadoop (server=hxpduped);
create table work.a as
select * from connection to hadoop (select * from newtab limit 10);
and the connection information is the case of our school,how should I write a right connection code in sas?
If you already have the libname defined, just use it:
libname HAD001 hadoop ... ;
proc sql;
connect using HAD001;
create table A as select * from connection to HAD001 (select * from newtab limit 10);
quit;
If you already have the libname defined, just use it:
libname HAD001 hadoop ... ;
proc sql;
connect using HAD001;
create table A as select * from connection to HAD001 (select * from newtab limit 10);
quit;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.