BookmarkSubscribeRSS Feed
joker
Fluorite | Level 6

Hello,

 

We are accessing Impala tables from SAS using the LIBNAME engine IMPALA.

 

I create table SAS table using the following code:

PROC SQL;

 CREATE TABLE SASTABLE AS

 SELECT * FROM IMPALA.TABLE 

  WHERE COL=123 ;

QUIT ;

The table SASTABLE contains one row. Ok

 

then I try access the created table using the following code:

PROC SQL ;

CREATE TABLE SASTABLE2 as SELECT * FROM SASTABLE

WHERE COL=123 ;

QUIT ;

The table SASTABLE2 does not contain any record.

 

I checked the content of the variable COL using an Hexadecimal and the value contains trailing digits "FF".

Have you ever faced this problem?

 

Thanks for your input

1 REPLY 1
ChrisNZ
Tourmaline | Level 20

What are the delimiters used in the Impala file?

 

>I checked the content of the variable COL using an Hexadecimal and the value contains trailing digits "FF".

How did you check this?

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
  • 1 reply
  • 709 views
  • 0 likes
  • 2 in conversation