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

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 4 replies
  • 1051 views
  • 0 likes
  • 3 in conversation