Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello!
I have a connection with Databricks, where I have a table with the geographic coordinates of Brazilian states.
However, this data is a string with many characters, and Qlik is only loading 255.
Is there any way around this?
I have already set the connection parameter to 16384 as the maximum string size, but it continues to get 255.
Hello!
I resolved the problem following the instructions in this link.
Hi @isaiasdd92,
Can you please provide the following:
Regards,
Mark Costa
Read more at Data Voyagers - datavoyagers.net
Follow me on my LinkedIn | Know IPC Global at ipc-global.com
Hi @isaiasdd92 ,
instead of databricks connection can you crearte odbc connection and setup paramaters for chracters
length which you can extened as per your choice.
we also faced this challenges while loadaing the data from feedback reviews for the products which is more than 255 characters length.
Suggestion: We used simba spark odbc driver for our requirement.
Regards,
Siva Prasad
1 - Yes, my data is correct in Databricks.
2 - Data type is string and not have a length in Databricks.
3 - I using a Databricks Connector in Qlik Sense SaaS, in Databricks I use a SQL Warehouse Serveless
4 - Sure, it's simples, just a script load a table from Databricks contains a Geolocation from states of Brazil.
UFs:
LOAD
KeyUF,
SiglaEstado,
IndicadorDivisaoAtendimentoCDs,
AreaEstado,
CoordenadasGeograficasEstado,
RegiaoUFTramontina,
CodigoPais,
DescricaoUnidadeFederacao,
RegiaoEstado;
SELECT
KeyUF,
SiglaEstado,
IndicadorDivisaoAtendimentoCDs,
AreaEstado,
CoordenadasGeograficasEstado,
RegiaoUFTramontina,
CodigoPais,
DescricaoUnidadeFederacao,
RegiaoEstado
FROM `adm_sit_gold_prd`.masterdata.`dim_uf`;
1 - Yes, my data is correct in Databricks.
2 - Data type is string and not have a length in Databricks.
3 - I using a Databricks Connector in Qlik Sense SaaS, in Databricks I use a SQL Warehouse Serveless
4 - Sure, it's simples, just a script load a table from Databricks contains a Geolocation from states of Brazil.
UFs:
LOAD
KeyUF,
SiglaEstado,
IndicadorDivisaoAtendimentoCDs,
AreaEstado,
CoordenadasGeograficasEstado,
RegiaoUFTramontina,
CodigoPais,
DescricaoUnidadeFederacao,
RegiaoEstado;
SELECT
KeyUF,
SiglaEstado,
IndicadorDivisaoAtendimentoCDs,
AreaEstado,
CoordenadasGeograficasEstado,
RegiaoUFTramontina,
CodigoPais,
DescricaoUnidadeFederacao,
RegiaoEstado
FROM `adm_sit_gold_prd`.masterdata.`dim_uf`;
Hi @Raju_6952
I am using a Qlik Sense SaaS, not have a option to ODBC Connection.
Hello!
I resolved the problem following the instructions in this link.