ORA-13501: Cannot drop SYSAUX tablespace
Cause: Tried to drop SYSAUX tablespace
Action: None
ORA-13501 代表一条非法的SQL语句,必须停止执行。它表明尝试删除SYSAUX表空间,这是不可能的。SYSAUX表空间是Oracle数据库自动创建的表空间,服务器需要它来存放在安装期间创建的对象,例如:内部数据和对象,它是一个系统保护的表空间,不可以被删除。
“ORA-13501:Cannot drop SYSAUX tablespace
This is an illegal SQL statement. It must be stopped.
This is an attempt to drop the SYSAUX tablespace. SYSAUX is an automatically created tablespace on an Oracle Database server instance and is used to store objects created during installation, such as internal data and objects. This is a system-protected tablespace and cannot be dropped.”
更改SYSAUX表空间时,输入以下语句:
ALTER TABLESPACE SYSAUX DROP;
要修复这个错误,请不要尝试删除SYSAUX表空间,并重新提交刚才出现错误的SQL语句,或者把它删除。