Seed data with old dates in Temporal Table - SQL Server
问题 I need to seed data for my local development purpose in the following Temporal Table, the start date should be old. The given Table Schema is CREATE TABLE [dbo].[Contact]( [ContactID] [uniqueidentifier] NOT NULL, [ContactNumber] [nvarchar](50) NOT NULL, [SequenceID] [int] IDENTITY(1,1) NOT NULL, [SysStartTime] [datetime2](0) GENERATED ALWAYS AS ROW START NOT NULL, [SysEndTime] [datetime2](0) GENERATED ALWAYS AS ROW END NOT NULL, CONSTRAINT [PK_Contact] PRIMARY KEY NONCLUSTERED ( [ContactID]