How do I display the full content of LOB column in

2020-05-22 03:34发布

问题:

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?

回答1:

SQL> set long 30000
SQL> show long
long 30000


回答2:

You may also need:

SQL> set longchunksize 30000

Otherwise the LOB/CLOB will wrap.