472,347 Members | 2,413 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,347 software developers and data experts.

ORA-29283: invalid file operation

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
Sep 11 '07 #1
6 37815
amitpatel66
2,367 Expert 2GB
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.
Sep 11 '07 #2
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
Sep 11 '07 #3
amitpatel66
2,367 Expert 2GB
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'
Sep 11 '07 #4
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
Sep 12 '07 #5
amitpatel66
2,367 Expert 2GB
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:

Expand|Select|Wrap|Line Numbers
  1.  
  2. create or replace directory my_dir AS '/tmp'
  3.  
  4. GRANT READ,WRITE ON DIRECTORY my_dir TO PUBLIC;
  5.  
  6. DECLARE
  7. File    UTL_FILE.FILE_TYPE;
  8. BEGIN
  9. File:= UTL_FILE.FOPEN('MY_DIR','a.txt','W');
  10. UTL_FILE.PUT_LINE(File,'I am writing to file');
  11. UTL_FILE.FCLOSE(File);
  12. END;
  13. /
  14.  
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!!
Sep 12 '07 #6
jorj
1
Hi,

I tried the following steps which worked fine:

Expand|Select|Wrap|Line Numbers
  1.  
  2. create or replace directory my_dir AS '/tmp'
  3.  
  4. GRANT READ,WRITE ON DIRECTORY my_dir TO PUBLIC;
  5.  
  6. DECLARE
  7. File    UTL_FILE.FILE_TYPE;
  8. BEGIN
  9. File:= UTL_FILE.FOPEN('MY_DIR','a.txt','W');
  10. UTL_FILE.PUT_LINE(File,'I am writing to file');
  11. UTL_FILE.FCLOSE(File);
  12. END;
  13. /
  14.  
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!!!!!!
Mar 28 '08 #7

Sign in to post your reply or Sign up for a free account.

Similar topics

1
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...
2
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...
1
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...
1
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...
0
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...
2
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...
1
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...
2
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...
5
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...
3
nabh4u
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...
0
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...
0
better678
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...
0
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...
0
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...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
2
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...
0
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...
0
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...
0
hi
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...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.