Hello
In the output columns I added a new column with an Expression like this:
$(vars/@aabbcc)
The content of this variable I created in a JS activity in vars.aabbcc
Now I get the following error:
PM query6 PGS-220000 PostgreSQL error: ERROR: value too long for type character varying(255)
The problem is that the standard type is string and the standard length is 255, but the content of vars.aabbcc is longer than 255 chars.
So: How can I change the allowed length or change the type from text to memo?
Michael