SQL*Plus does not execute SQL scripts that SQL Developer does

后端 未结 2 577
小蘑菇
小蘑菇 2020-12-10 13:37

I am facing a very annoying problem. I have written (in Notepad++) some SQL scripts. Now when I try to execute them by SQL*Plus (through the command line, on Windows 7), I a

2条回答
  •  臣服心动
    2020-12-10 14:31

    Remove the empty lines.
    In sqlplus an empty line means stop previous statement and start a new one.

    or you can set blank lines:

    set sqlbl on
    

提交回复
热议问题