Hi All,
I m facing mentioned error while executing below code at line no 3.
CREATE or REPLACE DIRECTORY MY_DIR AS '/outputs/EXTRACTS';
GRANT READ,WRITE ON DIRECTORY MY_DIR TO public;
fileID := UTL_FILE.FOPEN('MY_DIR', fileName,'W');
I tried all the possibe ways but still not understood what is the problem there.
Please give ur sugeetions guys so i can try.
Thanks & Regards,
Bhushan
6 37815
Hi All,
I m facing mentioned error while executing below code at line no 3.
CREATE or REPLACE DIRECTORY MY_DIR AS '/outputs/EXTRACTS';
GRANT READ,WRITE ON DIRECTORY MY_DIR TO public;
fileID := UTL_FILE.FOPEN('MY_DIR', fileName,'W');
I tried all the possibe ways but still not understood what is the problem there.
Please give ur sugeetions guys so i can try.
Thanks & Regards,
Bhushan
ORA-29283
ORA-29283: invalid file operation
Cause: An attempt was made to read from a file or directory that does not exist, or file or directory access was denied by the operating system.
Action: Verify file and directory access privileges on the file system, and if reading, verify that the file exists.
ORA-29283
ORA-29283: invalid file operation
Cause: An attempt was made to read from a file or directory that does not exist, or file or directory access was denied by the operating system.
Action: Verify file and directory access privileges on the file system, and if reading, verify that the file exists.
thanks for the reply,
But i had got the same reply on google when i searched, i need some other solution guys.
Regds,
Bhushan
thanks for the reply,
But i had got the same reply on google when i searched, i need some other solution guys.
Regds,
Bhushan
Could you check if you have R,W,X permission on the directory ''/outputs/EXTRACTS''??
And CREATE DIRECTORY only creates a references object to the directory that you specidiy and not the directory itself.
Check whether the directory is present in the SERVER side and not Client Side and Oracle has permission ot write to it....
Use below Code to create the direcotry that u r using in yur code:
SQL> HOST MD'D:/tmp'
Could you check if you have R,W,X permission on the directory ''/outputs/EXTRACTS''??
And CREATE DIRECTORY only creates a references object to the directory that you specidiy and not the directory itself.
Check whether the directory is present in the SERVER side and not Client Side and Oracle has permission ot write to it....
Use below Code to create the direcotry that u r using in yur code:
SQL> HOST MD'D:/tmp'
Amit
Everything is fine about RWX u told still i m facing the same problem, i don't understanding what could be the problem. Is there any other reason bcoz of that OS dening on access by oracle
Regds,
Bhushan
Amit
Everything is fine about RWX u told still i m facing the same problem, i don't understanding what could be the problem. Is there any other reason bcoz of that OS dening on access by oracle
Regds,
Bhushan
Hi,
I tried the following steps which worked fine: -
-
create or replace directory my_dir AS '/tmp'
-
-
GRANT READ,WRITE ON DIRECTORY my_dir TO PUBLIC;
-
-
DECLARE
-
File UTL_FILE.FILE_TYPE;
-
BEGIN
-
File:= UTL_FILE.FOPEN('MY_DIR','a.txt','W');
-
UTL_FILE.PUT_LINE(File,'I am writing to file');
-
UTL_FILE.FCLOSE(File);
-
END;
-
/
-
The file a.txt was created and the content was written to the file perfectly.
When I tried creating directory to '/usr', and GRANT all required privileges. Then tried executing the above mentioned anonymous block. It failed, it said the same error as it is showing for your code. And I also tried ftp'ing a file to the folder '/usr' but permission denied. So the DBA have given privileges only to some USERS to make use of the folder '/usr' but '/tmp' can be accessed by anybody.
Hope this helps!!
Hi,
I tried the following steps which worked fine: -
-
create or replace directory my_dir AS '/tmp'
-
-
GRANT READ,WRITE ON DIRECTORY my_dir TO PUBLIC;
-
-
DECLARE
-
File UTL_FILE.FILE_TYPE;
-
BEGIN
-
File:= UTL_FILE.FOPEN('MY_DIR','a.txt','W');
-
UTL_FILE.PUT_LINE(File,'I am writing to file');
-
UTL_FILE.FCLOSE(File);
-
END;
-
/
-
The file a.txt was created and the content was written to the file perfectly.
When I tried creating directory to '/usr', and GRANT all required privileges. Then tried executing the above mentioned anonymous block. It failed, it said the same error as it is showing for your code. And I also tried ftp'ing a file to the folder '/usr' but permission denied. So the DBA have given privileges only to some USERS to make use of the folder '/usr' but '/tmp' can be accessed by anybody.
Hope this helps!!
yep, this one works!
thx for ur help, i've been searching for this for more that 5 hours!
OPEN SOURCE ROCKSSSS!!!!!!
Sign in to post your reply or Sign up for a free account.
Similar topics
by: Galina |
last post by:
Hello
I have created a trigger not to let records with certain fields null
to be inserted into the table:
BEGIN
IF :new.RUL_CODE is null or...
|
by: Cherrish Vaidiyan |
last post by:
Hello all,
A warm Xmas greetings to all. I have a small problem with starting up
the database. Here my strategy.
I have installed Oracle 9i R...
|
by: Brett Baloun |
last post by:
Hello,
I received this error message when I issue the drop statement. We are
using a 9.2.0.3 DB on UNIX OS. I have been able to drop other...
|
by: Paul Green |
last post by:
What might cause the following behavior?
We have a set of front-end programs accessing an Oracle database on
the server.
Things work fine on our...
|
by: J.Bijleveld |
last post by:
Hello colleagues,
At this moment we have a real big problem using a .NET application with an
Oracle database (v8.1.6).
I hope someone has...
|
by: J.Bijleveld |
last post by:
Hello colleagues,
At this moment we have a real big problem using a .NET application
with an Oracle database (v8.1.6). I hope someone has...
|
by: smita81 |
last post by:
Hi,
I have a problem while trying to login to toad.
My operating system is WINDOWS XP.
I have Oracle 9i at my system. I installed the Toad into...
|
by: hemantmudaliar |
last post by:
The Trigger is giving following exception
java.sql.SQLException: ORA-04091: table PSCONTENT.VGNASCHANNEL is mutating, trigger/function may not see...
|
by: Nitvar |
last post by:
When i am trying to connect to oracle it is giving me these two errors
ORA-12224: TNS:no listener
ORA-01034: ORACLE not available
I am new...
|
by: nabh4u |
last post by:
HI everyone,
I an getting the following errors when i execute my procedure.
SQL> exec PROCEDURE_NAME
BEGIN PROCEDURE_NAME; END;
*
ERROR at...
|
by: concettolabs |
last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
|
by: better678 |
last post by:
Question:
Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct?
Answer:
Java is an object-oriented...
|
by: teenabhardwaj |
last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
| |