Randomly sql server resets sequence to a lower value
And this is the definition of the sequence:
CREATE SEQUENCE [dbo].[seqPJob]
AS [bigint]
START WITH 1
INCREMENT BY 1
MINVALUE 0
MAXVALUE 9223372036854775807
CYCLE
CACHE
GO
Randomly sql server resets sequence to a lower value
And this is the definition of the sequence:
CREATE SEQUENCE [dbo].[seqPJob]
AS [bigint]
START WITH 1
INCREMENT BY 1
MINVALUE 0
MAXVALUE 9223372036854775807
CYCLE
CACHE
GO