Skip to content

Commit 1cb8bd1

Browse files
authored
Fix example for sp_PrintString
1 parent 33e0745 commit 1cb8bd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Stored_Procedure/sp_PrintString.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ DECLARE @longStr NVARCHAR(MAX) = REPLICATE(N'R', 5000) + CAST(CHAR(13) AS NVARCH
1111
PRINT('Microsoft PRINT with string truncating:');
1212
PRINT(@longStr);
1313
PRINT('Right PRINT using dbo.sp_PrintString without string truncating:');
14-
EXEC dbo.sp_PrintString @Str = @longStr;
14+
EXEC dbo.sp_PrintString @str = @longStr;
1515
*/
1616
BEGIN
1717
DECLARE @line NVARCHAR(MAX)

0 commit comments

Comments
 (0)