Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
fontesflp
Contributor
Contributor

DATABASE LOAD CHANGES LENGTH WHEN SWITCHING TO MEMORY (POSTGRESQL)

My text field has a maximum size of 255 characters when loading into qlik's memory. The same field loaded in pgadmin has a longer length.

Sem título.png

Labels (1)
  • SaaS

1 Solution

Accepted Solutions
fontesflp
Contributor
Contributor
Author

I solved the problem.
For some reason, when the column is of type TEXT, the qlik LOAD only loads 255 characters.
By changing the type to CHARACTER VARYING(1000), the LOAD loads the complete string

View solution in original post

3 Replies
fontesflp
Contributor
Contributor
Author

I solved the problem.
For some reason, when the column is of type TEXT, the qlik LOAD only loads 255 characters.
By changing the type to CHARACTER VARYING(1000), the LOAD loads the complete string

obmk
Partner - Contributor II
Partner - Contributor II

In addition to this solution, the following tip might also be helpful in this context when it's about

"extracting data from TEXT columns having much more than 1000 or 16384 characters inside":

https://community.qlik.com/t5/App-Development/Does-column-length-in-SQL-SF-table-matter-when-reading...

so short

Stefan

amon
Contributor
Contributor

You saved my life, I had the same issue with the same use case (polyline geometries), works as a charm