Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

copy file

Tricampeon_1981Jun 15 2016 — edited Jun 15 2016

friends like I copy a file already created look here is the code

v_archivo := utl_file.fopen ('DIR_TMP', 'test_utl_file.txt', 'w');

  utl_file.put_line (v_archivo, 'Prueba de escritura');

  utl_file.put (v_archivo, 'Texto sin fin de línea');

  utl_file.put_line (v_archivo, ' que sigue y termina acá.');

utl_file.fclose(v_archivo);

--

  utl_file.fclose(v_archivo);

as doubled this file you need to copy?

This post has been answered by Saubhik on Jun 15 2016
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 13 2016
Added on Jun 15 2016
7 comments
427 views