Error:
Cannot delete rows from a temporal history table xxxxxxx
Fix:
DELETE FROM tbTable01
ALTER TABLE tbTable01 SET ( SYSTEM_VERSIONING = OFF )
DELETE FROM tbTable01History
ALTER TABLE tbTable01 SET ( SYSTEM_VERSIONING = ON (HISTORY_TABLE = tbTable01History))
Reference:
https://stackoverflow.com/questions/53746197/cannot-delete-rows-from-a-temporal-history-table
Comments