You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It doesn't split scripts on GO statements.
It has problems when I copy the statement over from the profiler.
This is because it's terminated with a go statement.
(GO is a management-studio extension, not a valid SQL statement)
script 1
GO
script2
GO
script 3
GO
==>
[script 1, script 2, script 3]
While I am at writing suggestions, could the result on https://execsqlformat.herokuapp.com/ be put into a textarea ?
Because then I could just CTRL+A, CTRL + C instead of having to mark everything with the mouse.
Very nice tool by the way ;)
The text was updated successfully, but these errors were encountered:
It doesn't split scripts on GO statements.
It has problems when I copy the statement over from the profiler.
This is because it's terminated with a go statement.
(GO is a management-studio extension, not a valid SQL statement)
Here a script-splitter implemented in C#, for reference:
https://github.com/ststeiger/ScriptSplitter/blob/master/csScriptSplitter/ScriSpli.cs
script 1
GO
script2
GO
script 3
GO
==>
[script 1, script 2, script 3]
While I am at writing suggestions, could the result on https://execsqlformat.herokuapp.com/ be put into a textarea ?
Because then I could just CTRL+A, CTRL + C instead of having to mark everything with the mouse.
Very nice tool by the way ;)
The text was updated successfully, but these errors were encountered: