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的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did118902