Hi,
I need to write into file which resded in local disk folder 'C\logfolder'
DECLARE
fhandler UTL_FILE.file_type;
BEGIN
fhandler := UTL_FILE.fopen ('C\logfolder', 'logfile', 'w');
UTL_FILE.putf (fhandler,'I am able to write into file');
END;
i get an error "Invalid file path'
How to write into file which resides in local disk (client side)(not in server side file).
Cannot make UTIL_parameter setting in init.ora since dont have previlage to do
