好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

SP2-0678: Column or attribute type can not be disp

在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   

查看更多关于SP2-0678: Column or attribute type can not be disp的详细内容...

  阅读:30次