0

I am currently working in SQR process, and had encountered an issue during file processing as it results to error due to special character, slanted apostrophe (’). It is a flat file saved as UTF-8. I tried changing it as ANSI and worked well, but how do I make my code work without changing the encoding?

Nikolay Shebanov
  • 1,363
  • 19
  • 33
capacitive
  • 17
  • 6

1 Answers1

1

On your open statement, try adding:

ENCODING=UTF-8
John
  • 107
  • 1
  • 7