Truncated SQL statement with Nant
Lately, I had an issue with a SQL script that couldn’t pass via the Nant <sql> task.
In fact, this script was quite big and got truncated during its execution. I managed to solve this putting the “delimstyle” parameter to “Line“. The only drawback of this is that all “GO” statements should be on a separate line. But it’s generally the case.
Loading...