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.