Hello everyone,
I’ve got a text column where I can have values of length of 3M+ character.
I need to split that column in 100 fields of 65.534 character length (because the target database have this weird structure).
At the moment I used the “Split fixed width text” action, that have a 32.767 character limit per field so I splitted the original value in 200 other columns (C1_a, C1_b, C2_a, C2_b etc.)
After that I create a new column with the concateneted pairs (C1_a + C1_b = C1)
Question: is there a better way to manage this?
I’m asking that because the original 3M+ length column is in expansion and today I can manage it with 100 fields, but tomorrow I’ll have to expand it in 150 fields, 200 fields … and for every final field I need to add 2 rows in the “Split action” and 1 new row in the “Calculate new column” action.
Last time I expanded from 50 to 100 fields, it took me a very long time … maybe some of you can suggest a smarter way to manage this?