BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Geo-
Quartz | Level 8

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?

 

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisNZ
Tourmaline | Level 20

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;

View solution in original post

1 REPLY 1
ChrisNZ
Tourmaline | Level 20

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;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 1128 views
  • 1 like
  • 2 in conversation