Hi All,
Version: oracle 11g version
I have a requirement like to append a line(new line) at the beginning of the file.
my file is my_txt file contains lines like this
this is the first line of the file
this is the second line of the file
this is the third line of the file
Now I want to append a line to the my_txt file
this is starting
this is the first line of the file
this is the second line of the file
this is the third line of the file
I tried with UTL_FILe package PUT_LINE,PUT,NEW_LINE procedures
but all these are adding the line at the end of the file like
this is the first line of the file
this is the second line of the file
this is the third line of the file
this is starting
Please help me to get the required result