ORA-02263: need to specify the datatype for this column ORACLE 报错 故障修复 远程处理
文档解释
ORA-02263: need to specify the datatype for this column
Cause: The required datatype for the column is missing.
Action: Specify the required datatype.
ORA-02263:表示你所定义的一个表字段没有指定类型,这是一个逻辑错误。
官方解释
常见案例
1、尝试在Oracle数据库中创建新表时,把某个字段创建的语句中没有指定字段的数据类型,如:
create table test( t1 int, t2, t3 int);
2、尝试修改已经存在的表的某个字段的类型时,但把某个字段的修改的语句中没有指定字段的数据类型,如:
alter table test modify t2;
正常处理方法及步骤
1、在创建表时要确保每个字段在定义时指定字段的数据类型,如:
create table test( t1 int, t2 int, t3 int);
2、如果需要修改字段的类型,则要确保每个字段在修改时指定字段的数据类型,如:
alter table test modify t2 datatype;