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 としてのみ表示されます。この場合、オラクルでクエリ全体を表示するにはどうすればよいですか?
sqlplusはCLOBの内容を表示するのに問題はありません。必ず..
set long 2000000
したがって、クエリを実行する前に、そのような高い数値>CLOBの最大サイズ。