If you execute through sqlplus 'select <clob column>' you will get truncated data. To see the complete data in sqlplus
set buffer <X>
select DBMS_LOB.substr(column, <buffer size>) from table
Note: This is required for sqlplus. JDBC and hibernate handle it directly so this 'select column' should be good enough.
set buffer <X>
select DBMS_LOB.substr(column, <buffer size>) from table
Note: This is required for sqlplus. JDBC and hibernate handle it directly so this 'select column' should be good enough.
No comments:
Post a Comment