产生此错误的原因是Oracle中不允许将NULL字段修改为NULL字段。
如果要修改可在之前判断一下,然后再修改,给出样例代码如下:
declare
visnull varchar2(4);
begin
select nullable
into visnull
from user_tab_columns
where table_name = upper('tblStockInspect')
and column_name = upper('FDepartID');
if visnull = 'N' then
execute immediate 'alter table tblStockInspect modify FDepartID int null';
end if;
end;
最可能的问题,你的gradeld已是允许null了你可测试下,先改为not nullalter table GRADE modify gradeld not null;如果成功,再改回来alter table GRADE modify gradeld null。
修改oracle字段的数据类型,提示不兼容的解决方法:
1、假设字段数据为空,则不管改为什么字段类型,可以直接执行:
alter table tb modify (name nvarchar2(20));
2、假设字段有数据,则改为nvarchar2(20)可以直接执行:
alter table tb modify (name nvarchar2(20));
3、假设字段有数据,则改为varchar2(40)执行时会弹出:“ORA-01439:要更改数据类型,则要修改的列必须为空”,这时要用下面方法来解决这个问题:
/*修改原字段名name为name_tmp*/
alter table tb rename column name to name_tmp;
/*增加一个和原字段名同名的字段name*/
alter table tb add name varchar2(40);
/*将原字段name_tmp数据更新到增加的字段name*/
update tb set name=trim(name_tmp);
/*更新完,删除原字段name_tmp*/
alter table tb drop column name_tmp;
最可能的问题,你的gradeld已是允许null了你可测试下,先改为not nullalter table GRADE modify gradeld not null;如果成功,再改回来alter table GRADE modify gradeld null;
字段由不允许为空改为允许为空,更改为不含not null的原表结构即可;
如:alter table userinfo modify id VARCHAR2 (10);
求毕业留言