turn on system versioning with table sql server code example
Example: t-sql disable system versioning
-- REF: https://docs.microsoft.com/en-us/sql/relational-databases/tables/stopping-system-versioning-on-a-system-versioned-temporal-table?view=sql-server-ver15
ALTER TABLE [TABLE_NAME]
SET(SYSTEM_VERSIONING = OFF)
GO