oracle varchar2(4000)改成大字段类型clob,如果需要改成大字段的varchar2列有内容,不能直接用
alter table med_generic modify option07 blob;
直接用上面的会提示:ORA-22858: 数据类型的变更无效
因此,修改应采用下面的方法:
–增加大字段项
alter table med_generic add hehe clob;
–将需要改成大字段的项内容copy到大字段中
update med_generic set hehe=option07;
–删除原有字段
alter table med_generic drop column option07;
–将大字段名改成原字段名
alter table med_generic rename column hehe to option07;
若要直接查出大字段的内容,可将sql改为:
select dbms_lob.substr(option07) from med_generic;
转载:https://blog.csdn.net/cai7095576/article/details/23999549