long type컬럼의 함수는 to_lob만 있는것으로 알고있다.
(다른 것이 있으면 알려주세요)
long type컬럼 대신 temp table를 이용하여
clob로 변환하여 처리하는 방법이다.
create global temporary table t_long_temp
(text_temp clob);
insert into t_long_temp
select to_lob(contents) from wlng31mt;
select length(text_temp)
from t_long_temp
order by length(text_temp) desc
drop table t_long_temp
(text_temp clob);
insert into t_long_temp
select to_lob(contents) from wlng31mt;
select length(text_temp)
from t_long_temp
order by length(text_temp) desc
drop table t_long_temp
by 꼬마갱이 2008-01-16
'ORACLE·sql' 카테고리의 다른 글
LPAD, RPAD (0) | 2009.12.11 |
---|---|
sysdate (0) | 2009.12.11 |
Random (0) | 2009.12.11 |
DBMS_LOB (0) | 2009.09.16 |
[복사되는블로그 꼬마갱이] 밀리세컨드 변환 (0) | 2009.09.16 |