I want to take a Database from a SQLServer 2016 and set it up on a 2014 server on a clients' site.
In SSMS I select Tasks => Generate scripts... and get a SQL file containing all CREATE TABLE
statements and the like.
I'm under the impression that the sequences are not generated correctly. The sequences are in use and have current values larger than one. However, every CREATE SEQUENCE
statement has a START WITH 1
clause.
Can I set somehow, that the sequences get a start value according to the their cuurenty value?