博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle如何向空表中添加一个类型为clob的非空列
阅读量:5344 次
发布时间:2019-06-15

本文共 1291 字,大约阅读时间需要 4 分钟。

一般的添加非空列的步骤是:先add可以为空的列,然后update该列为一个值(比如0),最后modify该列的类型

但是遇到类型为clob的就不行了。在modify这步时报错:ORA-22296:invalid ALTER TABLE option for conversion of Long datatype to LOB,于是去找了下22296错误的详细信息:()

Cause: An attempt was made to specify ALTER TABLE options which are disallowed during conversion of LONG datatype to LOB. The only ALTER TABLE options allowed during conversion of LONG datatype to LOB are the default clause and LOB storage clause for the column being converted to LOB.
Action: Remove the disallowed options.
解决办法:
在update这步执行:update tableName set colName = empty_clob();
在modify这步执行:alter table tableName modify (colName not null);//不是colName clob not null,这和一般的modify是不同的!!!
示例:
alter table post_info add  ( POST_CONTENT CLOB);
update post_info set post_content = empty_clob();
alter table post_info modify (POST_CONTENT not null);
COMMENT ON COLUMN "DBVOP"."POST_INFO"."POST_CONTENT" IS
'通告内容';
commit;
---------------另外:如何将not null 的clob类型的类变为null的列
语法:alter table tableName modify colName null ;

注:EMPTY_BLOB()和EMPTY_CLOB()函数是用来对类型字段进行初始化操作的。

-----------------如何删除列名带空格的列

alter table  cplnt_workorder drop column "CLIENT_ ISSUE"  ;

-----------------如何修改列名

alter table  cplnt_workorder rename column "CLIENT_ ISSUE1" to CLIENT_ ISSUE ;

 

转载于:https://www.cnblogs.com/seasonzone/p/7465232.html

你可能感兴趣的文章
关于CSS的使用方式
查看>>
本地MongoDB服务开启与连接本地以及远程服务器MongoDB服务
查看>>
跨域解决方案之CORS
查看>>
分析语句执行步骤并对排出耗时比较多的语句
查看>>
原生JS轮播-各种效果的极简实现
查看>>
软件工程总结作业---提问回顾与个人总结
查看>>
计数器方法使用?
查看>>
带你全面了解高级 Java 面试中需要掌握的 JVM 知识点
查看>>
sonar结合jenkins
查看>>
解决VS+QT无法生成moc文件的问题
查看>>
AngularJs练习Demo14自定义服务
查看>>
关于空想X
查看>>
CF1067C Knights 构造
查看>>
[BZOJ2938] 病毒
查看>>
webstorm修改文件,webpack-dev-server不会自动编译刷新
查看>>
Scikit-learn 库的使用
查看>>
CSS: caption-side 属性
查看>>
python 用数组实现队列
查看>>
认证和授权(Authentication和Authorization)
查看>>
Mac上安装Tomcat
查看>>