Oracle Sql Developer “string literal too long” error

前端 未结 5 1236
甜味超标
甜味超标 2020-12-19 06:18

I have the following SQL that I would like to run in Oracle SQL Developer against an Oracle 10g server:

WITH openedXml AS (
  SELECT extractvalue(column_va         


        
5条回答
  •  时光说笑
    2020-12-19 07:02

    Where does that great big chunk of XML come from ? I assume you are not typing it in.

    Generally I'd look at a program that reads the source and turns it into a CLOB. That might be a perl/python/whatever script on a client, or it might be a server side routine that pulls the value from a web-server.

提交回复
热议问题