I have a batch file that execute SQL scripts through sqlplus:
(
echo @"./myUTF8.sql"
echo @"./myAnsi.sql"
) | sqlplus uset/pwd@mybd
Unfortunately these SQL scripts are generated in different encoding, Ansi, UTF8, ...
How can I tell sqlplus that a script is of a specified encoding?