Skip to content

Commit 8bea018

Browse files
committed
Prefer raiserror over print for status messages
1 parent 21b5be1 commit 8bea018

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
IF '$(PopulateReferenceTables)' = 'True'
22
BEGIN
3-
PRINT('Executing post deployment script. This may take a while...')
3+
RAISERROR (N'Executing post deployment script. This may take a while...', 0, 0) WITH NOWAIT;
44
EXEC processing.PopulateReferenceTables;
55
END

0 commit comments

Comments
 (0)