Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用select sql_text from v$sql来查看我的应用程序中当前正在运行的查询。它仅显示 4000 个字符的运行查询。所以我使用了以下内容,
从 v$sql 中选择 sql_fulltext
但它只显示为clob。在这种情况下,如何在 oracle 中查看整个查询?
sqlplus 显示 CLOB 内容没有问题,只要确保 ..
set long 2000000
所以在运行查询之前,一些如此高的数字 > CLOB 的最大大小。