首页 > 数据库技术 > 详细

SP2-0678: Column or attribute type can not be displayed by SQL*Plus

时间:2015-05-10 17:21:18      阅读:552      评论:0      收藏:0      [点我收藏+]
在Oracle10g及以前版本的sqlplus中,不能直接显示blob或者bfile类型的数据:
SQL> create table t(b blob);
Table created.
SQL> insert into t values(‘1‘);
1 row created.
SQL> select * from t;
SP2-0678: Column or attribute type can not be displayed by SQL*Plus

Oracle11g中,sqlplus的这个限制已经取消,可以在sqlplus中直接显示blob和bfile类型的数据:
SQL> create table t(b blob);
Table created.
SQL> insert into t values(‘1‘);
1 row created.
SQL> select * from t;
B
-----------------
1

SP2-0678: Column or attribute type can not be displayed by SQL*Plus

原文:http://blog.csdn.net/djd1234567/article/details/45621681

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!