Nitish
Nitish

Reputation: 1736

How to change permission of a file created using UTL_FILE.FOPEN?

I have an oracle procedure which creates a text file using the UTL_FILE.FOPEN function. The file is created with permission 660. How can I change the permission of the file without using chmod?(I don't have access to the server)

Upvotes: 3

Views: 14715

Answers (1)

Frank Schmitt
Frank Schmitt

Reputation: 30775

You could change the umask of the Unix user that owns the Oracle process (resp. ask the system administrator to perform this task for your), see

UTL_FILE permissions

Upvotes: 4

Related Questions