BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
dmanna
Calcite | Level 5

Creating a table with SAS and Cloudera Impala ODBC engine I can't import data with many columns (more than 1080). The table is created but the data is not written and the following error is generated:

ERROR: CLI execute error: [Cloudera][ImpalaODBC] (110) Error while executing a query in Impala: [HY000] : AnalysisException: Syntax error in line 1: ...,xxx`) VALUES ( ? , ? , ? , ? , ? , ? , ? , ... ^ Encountered: Unexpected character Expected: CASE, CAST, DEFAULT, EXISTS, FALSE, IF, INTERVAL, NOT, NULL, TRUNCATE, TRUE, IDENTIFIER

 

I've tried a Create table as select from an existing table in sas (work) or impala. Also I've tried the same create table as select with only one row and give me the same error. The ODBC driver used is the Cloudera Impala ODBC driver 2.5.32 and run on Linux CentOs.

The limit is 1080 columns... after there's the error!

 

Thank you

1 ACCEPTED SOLUTION

Accepted Solutions
dmanna
Calcite | Level 5

I've solved with bulkload=yes:

 

data Impala.table (bulkload=yes);
set work.table;
run;

 

or


proc sql;
create table Impala.table(bulkload=yes) as
select * from work.table;

quit;

View solution in original post

2 REPLIES 2
SASKiwi
PROC Star

I suggest you open a track with SAS Tech Support if you haven't already done so. I had a quick look in the SAS notes on this but most problems reported were to do with out-of-date ODBC drivers - yours appears to be more recent than those causing problems.

dmanna
Calcite | Level 5

I've solved with bulkload=yes:

 

data Impala.table (bulkload=yes);
set work.table;
run;

 

or


proc sql;
create table Impala.table(bulkload=yes) as
select * from work.table;

quit;

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 2 replies
  • 6718 views
  • 1 like
  • 2 in conversation