Hello,
This is an xml file I use:
GO
I have few problems with it.
- I create this file in MS Visual Studio which saves files using UTF-8 with BOM. We have many developers and I don't like the idea of forcing everyone to save files using encoding we need. There are potential errors which will appear at every moment. So I would like to use those files as is, but I can't. Liquibase cannot execute SQL script because it always finds an error in the very beginning of script file.
- Even when I save the file with the encoding which Liquibase can read, I still have an error
Incorrect syntax near 'GO'.:
Caused By: Error executing SQL CREATE SCHEMA [biglion] AUTHORIZATION [dbo]
GO
What should I do? I’m afraid even when (if) I resolve 1st problem, I will anyway meet the 2nd. Please help, I spent very much time trying to resolve problems.
Thank you.