Multiple SQL statements in Execute SQL task

Use go statement in between 2 SQL statements.


delete *  from temp
go
delete * from temp2
go


or simply

delete *  from temp
delete * from temp2

Comments

Popular posts from this blog

SSIS: Merge vs Union All