liyue1025 commented on issue #8918:
URL: https://github.com/apache/seatunnel/issues/8918#issuecomment-2703068143

   SQL Server CDC 原表:
   
   `USE [TEST]
   GO
   
   /****** Object:  Table [dbo].[Student]    Script Date: 2025/3/6 12:07:18 
******/
   SET ANSI_NULLS ON
   GO
   
   SET QUOTED_IDENTIFIER ON
   GO
   
   CREATE TABLE [dbo].[Student](
        [StudentID] [int] IDENTITY(1,1) NOT FOR REPLICATION NOT NULL,
        [FirstName] [nvarchar](50) NOT NULL,
        [LastName] [nvarchar](50) NOT NULL,
        [BirthDate] [date] NULL,
        [EnrollmentDate] [date] NULL,
        [Major] [nvarchar](50) NULL,
        [Email] [varchar](100) NULL,
    CONSTRAINT [PK__Student__32C52A79E0690328] PRIMARY KEY CLUSTERED 
   (
        [StudentID] ASC
   )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, 
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) 
ON [PRIMARY]
   ) ON [PRIMARY]
   GO
   
   `


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to