How to override >2499 character error in Oracle DB?

后端 未结 3 1881
梦谈多话
梦谈多话 2021-01-05 18:44

I have a Oracle query which I\'m executing through shell script and in that my query is getting exceeded the maximum length of 2499.

I\'m getting error

3条回答
  •  情话喂你
    2021-01-05 19:18

    The real issue is input SQL text itself is too long, single line exceed 2500 characters, not about the data inside the database. To workaround the error, you should follow the steps from @Jon Heller

提交回复
热议问题