USE [Test]
GO
/** Object: Table [dbo].[AlarmEnroll] Script Date: 5/17/2024 2:18:51 PM **/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[AlarmEnroll1](
[ObjPropRef] varbinary NULL,
)
GO
USE [Test]
GO
INSERT INTO [dbo].[AlarmEnroll1]
([ObjPropRef])
VALUES
(0)
GO
Description: Unable to export table containing varbinary column on SQL Server 2022
Steps required to reproduce the bug:
Attach the dbptk-app.log.txt file below. dbptk-app.log.txt
TCL Script
USE [Test] GO /** Object: Table [dbo].[AlarmEnroll] Script Date: 5/17/2024 2:18:51 PM **/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[AlarmEnroll1]( [ObjPropRef] varbinary NULL, ) GO USE [Test] GO INSERT INTO [dbo].[AlarmEnroll1] ([ObjPropRef]) VALUES (0) GO