There was an error while loading. Please reload this page.
1 parent 33e0745 commit 1cb8bd1Copy full SHA for 1cb8bd1
Stored_Procedure/sp_PrintString.sql
@@ -11,7 +11,7 @@ DECLARE @longStr NVARCHAR(MAX) = REPLICATE(N'R', 5000) + CAST(CHAR(13) AS NVARCH
11
PRINT('Microsoft PRINT with string truncating:');
12
PRINT(@longStr);
13
PRINT('Right PRINT using dbo.sp_PrintString without string truncating:');
14
-EXEC dbo.sp_PrintString @Str = @longStr;
+EXEC dbo.sp_PrintString @str = @longStr;
15
*/
16
BEGIN
17
DECLARE @line NVARCHAR(MAX)
0 commit comments