How do I display the full content of LOB column in Oracle SQL*Plus?

别等时光非礼了梦想. 提交于 2019-12-31 13:17:47

问题


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.



来源:https://stackoverflow.com/questions/122772/how-do-i-display-the-full-content-of-lob-column-in-oracle-sqlplus

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!