码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2015-05-10 17:22:19      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:oracle10g   blob   

在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

标签:oracle10g   blob   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!