Reputation: 5982
When I try to display the contents of a LOB (large object) column in SQL*Plus, it is truncated. How do I display the whole thing?
Upvotes: 29
Views: 66841
Reputation: 383
You may also need:
SQL> set longchunksize 30000
Otherwise the LOB/CLOB will wrap.
Upvotes: 21