I have a text column thatI want to preload with some text that contains EOLN (\n) charcters.
I know I need to use "LOAD" to load the text column, but regardless of what I try, I can't get the \n character loaded. I even insert it programatically and then used "UNLOAD" to generate a file, but that same file fails to put back the \n character when used with the LOAD command.
UNLOAD generates a file like:
f1!f2!line1\
line2\
line3!f4
I also tried
f1!f2!line1\nline2\nline3!f4
Does anyone know how I can do this?