어느 가을날의 전환점
ORACLE|오라클 CLOB 컬럼 사이즈 구하기(Bytes Size) 본문
select LENGTHB(TO_CHAR(SUBSTR(<CLOB-Column>,1,4000))) from your_table
최대 4000 자만 가능
or
select (DBMS_LOB.getlength(<CLOB-Column>
))/1024/1024 from your_table
'Database > Oracle' 카테고리의 다른 글
ORACLE|오라클 수정 가능 조인 뷰(/*+ BYPASS_UJVC */), ORA-01779, MERGE (0) | 2013.05.09 |
---|---|
ORACLE|Primary Key와 Unique Index의 성능 (0) | 2013.03.22 |
ORACLE|User 권한 부여 (Rule: Connect, Resource) (0) | 2012.09.19 |
ORACLE|오라클 DB Export / Import(백업/복원) (0) | 2012.07.24 |
ORACLE|ora-14551:질의 안에 DML 작업을 수행할 수 없습니다(message displayed when calling an Oracle Stored Function) (0) | 2012.02.07 |
Comments