Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- SqlCe

SELECT
(CAST(COUNT(*) AS NVarChar(11)) + ' items have not been processed, e.g. #' + Coalesce(CAST(MIN([s].[PersonID]) AS NVarChar(11)), '')) + '.' as [c1]
(CAST(COUNT(*) AS NVarChar(11)) + ' items have not been processed, e.g. #' + Coalesce(CAST(MIN([s].[PersonID]) AS NVarChar(11)), '')) + '.' as [Message]
FROM
[Person] [s]
WHERE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ FROM
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
DECLARE @Id Int -- Int32
SET @Id = 1
DECLARE @Column 36(16) -- Binary
DECLARE @Column Vector(16) -- Binary
SET @Column = JSON_ARRAY(1.2, -1.1)
DECLARE @ColumnNullable NVarChar -- String
SET @ColumnNullable = NULL
Expand Down Expand Up @@ -67,7 +67,7 @@ FROM
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
DECLARE @p1 Int -- Int32
SET @p1 = 1
DECLARE @p2 36(16) -- Binary
DECLARE @p2 Vector(16) -- Binary
SET @p2 = JSON_ARRAY(1.2, -1.1)
DECLARE @p3 NVarChar -- String
SET @p3 = NULL
Expand Down Expand Up @@ -161,7 +161,7 @@ FROM
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
DECLARE @Id Int -- Int32
SET @Id = 1
DECLARE @Column 36(16) -- Binary
DECLARE @Column Vector(16) -- Binary
SET @Column = JSON_ARRAY(5.2, -3.1)
DECLARE @ColumnNullable NVarChar -- String
SET @ColumnNullable = NULL
Expand Down Expand Up @@ -199,7 +199,7 @@ FROM
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
DECLARE @p1 Int -- Int32
SET @p1 = 1
DECLARE @p2 36(16) -- Binary
DECLARE @p2 Vector(16) -- Binary
SET @p2 = JSON_ARRAY(5.2, -3.1)
DECLARE @p3 NVarChar -- String
SET @p3 = NULL
Expand Down Expand Up @@ -289,9 +289,9 @@ FROM
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
DECLARE @Id Int -- Int32
SET @Id = 1
DECLARE @Column 36(16) -- Binary
DECLARE @Column Vector(16) -- Binary
SET @Column = JSON_ARRAY(11.2, -4.1)
DECLARE @ColumnNullable 36(16) -- Binary
DECLARE @ColumnNullable Vector(16) -- Binary
SET @ColumnNullable = JSON_ARRAY(5.2, -3.1)

INSERT INTO [TypeTable`2]
Expand Down Expand Up @@ -325,9 +325,9 @@ FROM
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
DECLARE @p1 Int -- Int32
SET @p1 = 1
DECLARE @p2 36(16) -- Binary
DECLARE @p2 Vector(16) -- Binary
SET @p2 = JSON_ARRAY(11.2, -4.1)
DECLARE @p3 36(16) -- Binary
DECLARE @p3 Vector(16) -- Binary
SET @p3 = JSON_ARRAY(5.2, -3.1)

INSERT INTO [TypeTable`2]
Expand Down