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

在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;

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

时间: 2024-10-07 21:45:25

SP2-0678: Column or attribute type can not be displayed by SQL*Plus的相关文章

'Basic' attribute type should not be a persistence entity/a container

在使用IDEA进行HIbernate开发时,从datasource得到的实体映射并不理想,需要手动更改. 在向实体类添加属性的Setter时,暂时会有红色tip:'Basic' attribute type should not be a persistence entity 或者 'Basic' attribute type should not be a container. 然后,向hbm.xml文件添加关联关系后,那个红色tip就会消失. 'Basic' attribute type s

POSTGRESQL中ERROR: recursive query "t" column 2 has type character varying(150) in non-recursive term but type character varying overall

最近在做项目的时候有个需求是需要查到当前登录的用户下辖所有区域的数据,并将查询出来的部门信息以如下格式展示 最高人民法院>江苏省高级人民法院>南通市中级人民法院最高人民法院>江苏省高级人民法院>连云港市中级人民法院 ,于是用如下语句查询 WITH RECURSIVE T AS ( SELECT c_id, c_name FROM db_aty.t_aty_corp WHERE c_pid IS NULL UNION ALL SELECT D.c_id, T.c_name || '&

Excel Sheet Column Title (STRING - TYPE CONVERTION)

QUESTION Given a positive integer, return its corresponding column title as appear in an Excel sheet. For example: 1 -> A 2 -> B 3 -> C ... 26 -> Z 27 -> AA 28 -> AB FIRST TRY class Solution { public: string convertToTitle(int n) { int r

org.apache.jasper.JasperException: /index.jsp (line: 24, column: 26) attribute for %>" is not proper

JSP页面,本来想使用标签进行请求跳转的,然后就报了这么一个错误,原来这个里面还不能写表达式,之前一直以为可以的.当然也可以使用另外一个标签. <body> <jsp:forward page="<%=basePath %>msgServlet?action=getAllList"></jsp:forward> </body> 之后改成这样使用EL表达式就OK了. <body> <jsp:forward pa

Type mismatch: cannot convert from java.sql.PreparedStatement to com.mysql.jdbc.PreparedStatement

Connection.prepareStatement()函数出错,提示: 这是因为引入的包不对头, import com.mysql.jdbc.PreparedStatement; import com.mysql.jdbc.Statement; 引入正确的包就没有这个错误了. import java.sql.PreparedStatement; import java.sql.Statement;

oracle lob 简单介绍

何为LOB? lob为oracle数据库的一个大对象数据类型,可以存储超过4000bytes的字符串,二进制数据,OS文件等大对象信息.最大可存储的容量根oracle的版本和oracle 块大小有关. 有那几种可供选择的LOB类型? 目前ORACLE提供了CLOB,NCLOB,BLOB,BFILE共四种LOB类型,CLOB,NLOB为大字符串类型,NLOB为多语言集字符类型,类似于NVARCHAR类型,用他们代替以前的LONG类型;BLOG为大二进制类型,用来代替以前的LONG RAW类型;BF

【2019年8月】OCP 071认证考试最新版本的考试原题-第20题

Choose two The PRODUCT_INFORMATION table has a UNIT_PRICE column of data type NUMBER(8, 2). Evaluate this SQL statement: SELECT TO_CHAR(unit_price,'$9,999') FROM Product_intormation; Which two statements are true about the output? A) A row whose UNIT

Entity Framework Code-First(9.8):DataAnnotations - Column Attribute

DataAnnotations - Column Attribute: Column attribute can be applied to properties of a class. Default Code First convention creates a column name same as the property name. Column attribute overrides this default convention. EF Code-First will create

Computed column Usage

顾名思义,计算列是通过计算产生值得列,Computed_Column_Name as Computed_Expression,计算列的数据类型是由计算表达式的结果确定的. 计算列有两个特性:Persisted,Deterministic 和自动确定Data Type 1, 如果没有为计算列指定Persisted 关键字,那么计算列是不会物理存储的,是个Virtual Column,只存储计算的逻辑,而不占用物理存储空间:如果为计算列指定Persisted 关键字,那么计算列将占用物理存储空间,将