cancel
Showing results for 
Search instead for 
Did you mean: 

replacing control characters in procedures

Baron
Participant
1,745

Hi, I am using unload command to read from ml_script table and export it into text file. Problem: I get the text file in only one line (\\x0d, x0a, x09 are replacing the 'new line', 'space'...etc.) Question: how can I get the context in the text file without those special characters.

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

Breck_Carter
Participant

Try these UNLOAD options...

UNLOAD 
SELECT *
  FROM ml_script
TO 'c:\\temp\\ml_script.txt'
DELIMITED BY '' HEXADECIMAL OFF ESCAPES OFF QUOTES OFF;
Baron
Participant
0 Kudos

It has really worked!!! many thanks

Answers (0)