BookmarkSubscribeRSS Feed
shubhamjain
Calcite | Level 5

Hi,

 

I have been facing error while executing a test query in SAS for Hadoop. PFB query and error.

 

proc sql;
connect to hadoop as hd
 (server='server-name' user=username password='********' schema='schema-name' subprotocol=hive2 connection=global)

 

create table work.test as
select * from connection to hd(
select * from schema-name.table_name);

disconnect from hd;
quit;



ERROR: Unable to read from pipe: Success
ERROR: Fetch error.

 

Can someone please let me know how to resolve above error?

4 REPLIES 4
ChrisNZ
Tourmaline | Level 20

What do you get when you run

proc contents data=HD.table_name;
run;

?

 

shubhamjain
Calcite | Level 5

Hi Chris,

 

The proc contents ran successfully and I got the details of the tables and alphabetic list of variables and attributes.

 

Thanks,

Shubham Jain

ChrisNZ
Tourmaline | Level 20

That's odd.

Please show us the log when running:

proc sql;
 connect using hd;
 create table work.test as
 select * from connection to hd(
  select * from schema-name.table_name);
 disconnect from hd;
quit;
proc sql;
  select * from hd.table_name;
quit;

 

 

 

LinusH
Tourmaline | Level 20
Try an implicit pass through using a libname instead. Then you use the SASTRACE debugging options.
Data never sleeps

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1677 views
  • 0 likes
  • 3 in conversation