Hello friends
I have a procedure that generates a file with utlfile and makes it perfect, I have no problem, except that I need you to create it in UTf-8 format and I don't know what the instruction is to tell you, I am working with oracle 9i here I leave you my code thanks
v_file_id := UTL_FILE.fopen (c:\test.txt,'W' );
UTL_FILE.put (v_file_id, r1.DEP_NUMBER);
UTL_FILE.fclose(v_file_id);
How do I make sure they are creating it in UTF-8?