Drop table operation failed on table 'TableHistory' because it is not supported operation on system-versioned temporal tables. code example

Example 1: Drop table operation failed on table 'TableHistory' because it is not supported operation on system-versioned temporal tables.

DROP TABLE tbl_StudentsHistory
GO

Example 2: Drop table operation failed on table 'TableHistory' because it is not supported operation on system-versioned temporal tables.

ALTER TABLE dbo.tbl_Students SET (SYSTEM_VERSIONING = OFF)

Example 3: Drop table operation failed on table 'TableHistory' because it is not supported operation on system-versioned temporal tables.

Msg 13552, Level 16, State 1, Line 1
Drop table operation failed on table 'RND.dbo.tbl_Students' because it is not supported operation on system-versioned temporal tables.