|
This is correct. In your first ALTER statement you tried to drop the PERIOD only. It would result in the invalid table definition, with columns GENERATED ALWAYS AS ROW START and GENERATED ALWAYS AS ROW END but without a PERIOD. In your second ALTER statement you tried to drop the system versioning, while keeping the period. It is invalid too.
You need to drop system versioning, the period, and both generated columns in one statement. To succeed your ALTER TABLE must transition from one valid table structure to another valid table structure. The error message told you what ALTER TABLE operations were missing.
|