ORA-22995: TABLESPACE DEFAULT option is invalid in this context ORACLE 报错 故障修复 远程处理
文档解释
ORA-22995: TABLESPACE DEFAULT option is invalid in this context
Cause: TABLESPACE DEFAULT option can be specified for LOB columns only in the following contexts:
– at the table level for a partitioned table
– at the partition level for a composite partition. An attempt was made to use the TABLESPACE DEFAULT option in a different context.
Action: Remove the TABLESPACE DEFAULT option.
ORA-22995: TABLESPACE DEFAULT option is invalid in this context
这是一个由Oracle引起的常见异常,通常在使用JDBC尝试访问Oracle数据库时出现。它表明您企图创建基于[tablespace default]选项的新表,但没有为表指定具体的表空间。
官方解释
Oracle服务器在尝试使用不支持的表空间默认选项时,返回ORA-22995错误。必须指定一个表空间,如果要在其中创建表,请编写语句,指示哪个表空间用于存储数据表。
常见案例
ORA-22995异常通常会在尝试使用JDBC而不正确构建表时发生,因为没有指定表空间。以下是一个示例:
CREATE TABLE Order (
id number(10),
name varchar2 (100);
TABLESPACE DEFAULT
)
一般处理方法及步骤
1.为新创建的表指定一个表空间。
2.重新发送要求,在指定的表空间下创建表,如下所示:
CREATE TABLE Order (
id number(10),
name varchar2(100),
)
TABLESPACE MY_TABLE_SPACE;
3.如果没有创建自定义表空间,可以使用系统表空间,如下所示:
CREATE TABLE Order (
id number(10),
name varchar2(100)
)
TABLESPACE SYSTEM;