ORA-10615: Invalid tablespace type for temporary tablespace
Cause: Tablespace with AUTO SEGMENT SPACE MANAGENEMT specified cannot be used as a temporary tablespace
Action: Recheck the tablespace name and re-issue the statement
ORA-10615: Invalid tablespace type for temporary tablespace 这个错误表示在设置暂时表空间时,没有指定正确的表空间类型。
ORA-10615: 为暂时表空间指定的表空间类型无效
解释:
为暂时表空间指定的表空间类型是不正确的。只有系统表空间可以用作暂时表空间。
这个错误的最常见的案例就是在创建一个表时,指定一个UNDO表空间来作为暂时表空间。
1. 确认数据库中有至少一个SYSTEM表空间。
2. 把该表空间指定为暂时表空间,例如: ALTER DATABASE DEFAULT TEMPORARY TABLESPACE temp_ts;
3. 重新编译要创建的表,如果把暂时表空间与表或索引指定在一起,那么就把暂时表空间移除。