文档解释 ORA-15094: attempted to write to file opened in read only mode Cause: The file handle passed to DBMS_DISKGROUP.WRIT
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;
--结束END--
本文标题: ORA-15094: attempted to write to file opened in read only mode ORACLE 报错 故障修复 远程处理
本文链接: https://lsjlt.com/news/535085.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0