I've been assigned a task of modifying an existing T-SQL script in which "GO" has been liberally sprinkled. What exactly are all of these things doing?
Example:
Example:
Code:
USE DatabaseName
GO
EXEC master.dbo.sp_addlinkedserver
GO
DELETE TABLE1
GO
DELETE TABLE2
GO
CREATE TABLE1
GO
CREATE TABLE2
GO