I've got sql file that contains sqlplus specific script: it includes / or ; as statement terminators, EXEC to execute stored procedures, etc.
I need to execute this script from java (jdbc) without the need for sqlplus.
sql ant task / maven sql plugin can't handle the different terminators or EXEC commands.
Do you know any good way to do so without running sqlplus ?