Created on 03-29-2018 12:23 AM - edited 09-16-2022 06:02 AM
Is there a parameter in Impala ODBC driver that would define the number of characters/bytes fetched in a row. When I create a report in OBIEE with varchar/char/string characters, we loose one of the columns. But same size of report with int/bigint works fine. I suspect it could be because of the array size that loads a row. Any help would be appreciated. Thanks.
Created on 04-03-2018 03:32 AM - edited 04-03-2018 03:33 AM
Hi @GopinathS,
You are welcome.
Try to use a website like this one Upload files for free nd share the links..
Created 04-05-2018 03:55 AM
Hi,
We can't upload any of the artifcats,log files to open internet. Sorry about that.
Thanks a lot for your assistance.
Created on 04-05-2018 07:35 AM - edited 04-05-2018 07:36 AM
Hi @GopinathS
You are welcome man, It's okay.
You can work on them before the upload by removing the authentification code lines and replacing your domains/IPs.. else try to read it and if you find a abnormal, WARN or ERROR message try to share it here.
Good luck.
Created 04-05-2018 07:38 AM
Hi @AcharkiMed,
I went through the log files. Nothing alarming. No errors, no warnings. It beats me.
Out of columns a,b,c,d,e,f,g,h,i,j,k,l only e displays null value. If I select only g,h,i,j,k,l in the select, l gets null value. Only the 5 th column, always.
Thanks for your help.
Created 04-05-2018 07:54 AM
Hmm, strange!
Let me propose a temporary solution, in your select query try always to fill the 5 th by a null value or write the 5th column name twice and just adapt your get method..
SELECT a,b,c,d,null,e,f,g,h,i,j,k,l FROM typetest; or SELECT a,b,c,d,e,e,f,g,h,i,j,k,l FROM typetest;
Lets me know if it doesn't work.
Created 04-05-2018 07:55 AM
Thats a great idea. Will try that. How ever, we have 1000s of user reports. Unfortunately, we can't modify all.
Created 04-09-2018 10:51 AM
Hi,
I tried select a,b,c,d,null,e from table - worked
select a,b,c,d,1,e from table - worked
select a,b,c,d,'z',f from table - null value instead of 'z'
where a,b,c,d, e and f are table columns.
Thanks.
Created 04-17-2018 04:08 PM
Sorry for the delay.
Hmm, now I have doubt in your backend application!
can you share the code used for read and browse your select query results..