Problem with writing in directories (ORA-29283) [message #100796] |
Tue, 07 October 2003 02:58 |
Rochut
Messages: 1 Registered: October 2003
|
Junior Member |
|
|
Hi,
I've installed a database on my PC, and created an instance. I've also created a directory to read and write file with pl/sql procedure (I've created grant too). But when i try to execute a simple example like this :
exec
declare
test utl_file.file_type;
begin
test:=utl_file.fopen('export_dir','test.txt','w');
utl_file.put_line(test,'essai');
utl_file.fclose(test);
end;
/
I receive this error message :
ORA-29283: opÚration non valide sur le fichier
ORA-06512: Ó "SYS.UTL_FILE",
ligne 449
ORA-29283: opÚration non valide sur le fichier
If somebody has already encountered this problem...
|
|
|
|
|