分类: Oracle
2008-04-09 12:33:51
PHP code:
$ sqlplus yangtk/yangtk@ytk102
SQL*Plus: Release 11.1.0.6.0 - Production on Mon Aug 20 18:02:36 2007
Copyright (c) 1982, 2007, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL> desc t_blob
Name Null? Type
----------------------------------------- -------- -------------------------
ID NUMBER
OTHER BLOB
SQL> COL OTHER FORMAT A50
SQL> SELECT * FROM T_BLOB;
ID OTHER
---------- --------------------------------------------------
1 ABC12340D30392BE398F
SQL>
.
PHP code:
E:>sqlplus yangtk/yangtk@ora11g
SQL*Plus: Release 10.2.0.1.0 - Production on 星期一 8月 20 15:38:58 2007
Copyright (c) 1982, 2005, Oracle. All rights reserved.
连接到:
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> SELECT * FROM T_BLOB;
SP2-0678: 列或属性类型无法通过 SQL*Plus 显示
.