How to override >2499 character error in Oracle DB?

后端 未结 3 1878
梦谈多话
梦谈多话 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:13

    Try to add a line break somewhere in that long line; that's a limitation of SQL*Plus and, as far as I can tell, you can't avoid it by some setting (like SET LINESIZE 100 and similar).

提交回复
热议问题