-
2
- #1
In thread183-255524 last week, <cfaulkner> correctly comments out GO in the stored procedure like this:
--GO
But you might be interested to discover that this does NOT work with GO:
/*
GO
*/
In this case, the GO will terminate the batch, and will also cause an error, because the parser will see /* in the first batch and report "Missing end comment mark"
bp
--GO
But you might be interested to discover that this does NOT work with GO:
/*
GO
*/
In this case, the GO will terminate the batch, and will also cause an error, because the parser will see /* in the first batch and report "Missing end comment mark"
bp