-
Notifications
You must be signed in to change notification settings - Fork 224
Closed
Labels
Description
Properties for period columns in a temporal table is generated when it's hidden
CREATE TABLE dbo.TemporalDepartment
(
DeptID INT NOT NULL PRIMARY KEY CLUSTERED,
DeptName VARCHAR(50) NOT NULL,
ManagerID INT NULL,
ParentDeptID INT NULL,
SysStartTime DATETIME2 GENERATED ALWAYS AS ROW START NOT NULL,
SysEndTime DATETIME2 GENERATED ALWAYS AS ROW END NOT NULL,
PERIOD FOR SYSTEM_TIME(SysStartTime, SysEndTime)
)
WITH (SYSTEM_VERSIONING = ON (HISTORY_TABLE = dbo.TemporalDepartmentHistory));Also classes are generated for History table (but I guess can exclude it with teh exclusion filter for now)
Reactions are currently unavailable