I have SQL SET statements that assemble messages. For example (this is all one long, unwrapped line):
Code: Select all
SET @message = 'Start [some processing step] MonthEnding: ' + CONVERT(VARCHAR(25), @MonthEnding, 107) + ', and User = ' + @UserName;
Code: Select all
SET @message = 'Start [some processing step] MonthEnding: ' +
CONVERT(VARCHAR(25),@MonthEnding, 107) + ', and User = ' + @UserName;
Code: Select all
SET @message = 'Start [some processing step] MonthEnding: ' +
CONVERT(VARCHAR(25),@MonthEnding, 107) + ', and User = ' + @UserName;
Thanks.