IT in their infinite wisdom decided to change upwards of 70+ column names in a table we use in many workflows. So, I have to repeat the find/replace in the workflow 70+ times for multiple workflows(so hundreds of times).
I tried to do this programmatically using Alteryx and I got close by doing the following
- Save workflow to desktop
- Change .yxmd extension to .txt
- Use the .txt file as an input in a different workflow
- Use the Find/replace tool with the values mapped from a text tool with the mapping connected to it
- Export results to some sort of text file
- Rename text file extension back to .yxmd
In the output tool in Step 5 I get error "Error: Output Data (14): The field "Field1" is too big (2147483647 bytes) for a flat file". The limit is 64K." when trying to write to a flat file. I can't use any other file format because I need to be able to write to a non-formatted so I can change the file extension back to .yxmd.
How can I output to a text file without data size limitations?
Thanks,
Craig