ORA-10921: Cannot drop tablespace belonging to default temporary tablespace group
Cause: An attempt was made to drop a tablespace in the default database temporary tablespace group.
Action: Either change the database default temporary tablespace or change the tablespace group of this tablespace.
ORA-10921错误表明,用户无法删除属于默认暂时表空间组的表空间。
这种情况发生,当你试图删除一个表空间是默认的暂时表空间组中的成员时。Oracle数据库必须要有一个暂时表空间组的默认对象,你不能删除一个表空间,如果它是此组的唯一成员,或者此组的默认表空间。
ORA-10921错误的常见案例是,当用户试图删除默认暂时表空间组的(或者临时表空间组)表空间时可能会遇到此错误。
1.用CREATE TEMPORARY TABLESPACE语句创建新的暂时表空间。
2.使用ALTER DATABASE DEFAULT TEMPORARY TABLESPACE语句将该表空间设置为新的暂时表空间组的默认表空间。
3.一旦该错误被修正,用户可以使用DROP TABLESPACE语句来删除原来的表空间。