3、删除ASM磁盘组,会报ORA-15053错误,即磁盘组存在文件;
4、根据上述方案,再次删除ASM磁盘组并加INCLUDING CONTENTS参数。但是出现ORA-
15027错误,即磁盘组被实例占用无法dismount。
--删除ASM磁盘组1
su - grid 2
$sqlplus / as sysasm 3
SQL> drop diskgroup ywzd; 4
drop diskgroup ywzd 5
* 6
ERROR at line 1: 7
ORA-15039: diskgroup not dropped 8
ORA-15053: diskgroup "YWZD" contains existing files9
10
--错误码具体说明11
$oerr ora 15053 12
15053, 00000, "diskgroup \"%s\" contains existing files" 13
// *Cause: An attempt was made to drop a diskgroup that still contains 14
// existing files. 15
// *Action: Specify the INCLUDING CONTENTS option to drop the diskgroup 16
// and all of its existing files. 17
// 18
--删除ASM磁盘组1
SQL> drop diskgroup ywzd including contents; 2
drop diskgroup ywzd including contents 3
* 4
ERROR at line 1: 5
ORA-15039: diskgroup not dropped 6
ORA-15027: active use of diskgroup "YWZD" precludes its dismount 7
文档被以下合辑收录
评论