Monday, April 17, 2017

Create file in unix system with 'Hello World'

Declare
file1 utl_file.file_type;
Begin
file1:= utl_file.fopen('MY_DIR','x.txt','r');
utl_file.put_line(file1,'Hello World' );
utl_file.fclose(file1);
end;
/
show err;

1 comment: