文档解释
ORA-15094: attempted to write to file opened in read only mode
Cause: The file handle passed to DBMS_DISKGROUP.WRITE() did not have write privileges.
Action: Obtain a file handle in read-write mode and retry the write operation.
ORA-15094错误表明系统尝试写入以“只读模式”打开的文件,而该操作无效。
官方解释
ORA-15094:“尝试将’string’写入只读文件’string’失败。”
常见案例
很多时候,当在把数据库文件移动到新的ASM磁盘组中时,系统会报出ORA-15094错误,因为数据文件已经被标记为只读模式,系统不能再对这个只读文件进行写操作。
一般处理方法及步骤
1.首先,检查数据库的只读属性,并把只读属性翻转到“读写”模式:
SQL> alter database open read write;
2.然后,检查数据文件,看是否有文件被标记为只读模式:
select status
from v$datafile;
3.如果发现有只读模式的数据文件,可以将只读模式翻转到“读写”模式:
alter database datafile ‘string’ read write;
4.最后,提交所有操作,当然也要在ASM中处理好相关磁盘组和普通文件系统:
commit;