在Oracle 11g中,增加磁盘到已有的磁盘组中,操作命令还是"alter diskgroup webdg add disk "/dev/raw/raw4";",但是使用sysdba连接则会报错。ORA-15260: permission denied on ASM disk group
告知权限被否则。[root@serv1 ~]# su - grid
/home/grid@serv1=>+ASM1$sqlplus / as sysdbaSQL*Plus: Release 11.2.0.1.0 Production on Thu May 3 15:28:20 2012Copyright (c) 1982, 2009, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Real Application Clusters and Automatic Storage Management optionsSQL> alter diskgroup webdg add disk "/dev/raw/raw4";
alter diskgroup webdg add disk "/dev/raw/raw4"
*
ERROR at line 1:
ORA-15032: not all alterations performed
ORA-15260: permission denied on ASM disk group 使用sysasm连接,即可。/home/grid@serv1=>+ASM1$sqlplus / as sysasmSQL*Plus: Release 11.2.0.1.0 Production on Thu May 3 15:29:42 2012Copyright (c) 1982, 2009, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Real Application Clusters and Automatic Storage Management optionsSQL> show user
USER is "SYS"
SQL> alter diskgroup webdg add disk "/dev/raw/raw4";这是11g在ASM管理上一个改进。
更多Oracle相关信息见Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12在Oracle 11g的ASM实例上删除diskgroup报错ORA-15027Oracle 11.2中SCAN的鸡肋功能相关资讯 oracle数据库教程
- Oracle raw数据类型介绍 (01/29/2013 10:05:53)
- 监听器注册与ORA-12514 错误分析 (11/13/2012 14:30:08)
- Oracle SQL的cursor理解 (11/13/2012 14:16:17)
| - Oracle 如何强制刷新Buffer Cache (01/29/2013 10:02:46)
- dblink致Oracle库的SCN变成两库的 (11/13/2012 14:24:41)
- Linux操作系统下完全删除Oracle数 (11/13/2012 08:25:52)
|
本文评论 查看全部评论 (0)