Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

create UTF8 file

Status
Not open for further replies.

spicysudhi

Programmer
Nov 10, 2003
575
FR
Hi,

I am using code similar to below to create a file.

l_output UTL_FILE.file_type;
l_output := UTL_FILE.fopen ('d:\', 'filename.txt', 'W');
UTL_FILE.put_line (l_output, 'data');
UTL_FILE.fclose (l_output);

The file created in ANSI format. Anyway to create the file UTF8 format?

thanks

regards,
Sudhi
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top