Question

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?

Was it helpful?

Solution

SQL> set long 30000
SQL> show long
long 30000

OTHER TIPS

You may also need:

SQL> set longchunksize 30000

Otherwise the LOB/CLOB will wrap.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top