Код: Выделить всё
"(LOWER(CAST(pr.exampleColumn as string)) LIKE :value)"
< /code>
Это преобразуется в следующий SQL-запрос: < /p>
(LOWER(CAST(p14_0.exampleColumn AS VARCHAR2(4000 CHAR)))) LIKE '%test%'
I am receiving the error:
ORA-22835: Buffer too small for CLOB to CHAR or BLOB to RAW conversion
(actual: 4215, maximum: 4000)
< /blockquote>
Какое решение я могу применить для решения этой проблемы? < /p>
Подробнее здесь: https://stackoverflow.com/questions/795 ... e-sql-with