Open mariamkupa opened 2 years ago
My fstab entries is the following:
/usr/bin/goofys#wasb://dbbackup@marirmanstorage.blob.core.windows.net /dbbackup fuse _netdev,allow_other,--file-mode=0777,--dir-mode=0777,--uid=3001,--gid=2000 0 0
I think the problem is not file type but how oracle db write the file.
Goofys does not support random write or file append operations, which I think that's what your application does. Can you verify the write pattern of your application to see if it really is the case?
I am trying to backup database using RMAN, I mounted Azure blob storage container using goofys on my DB server and tried to run backup, got this:
After that tried to create a text file from oracle user using
touch a
, it succeeded. Also tried to create a parameter file from sqlplus (note the parameter file was in text format), it succeeded.But when I tried to create binary file from database, it failed:
Is not goofys supported with Oracle database?