SQL Server Sequence Gaps
问题 I have a SEQUENCE that I used to set the transaction folio of a table: CREATE SEQUENCE [Seq].[Folio] AS [bigint] START WITH 114090 INCREMENT BY 1 MINVALUE -9223372036854775808 MAXVALUE 9223372036854775807 CACHE Today just for curiousity I did a: SELECT folio FROM transactions ORDER BY folio DESC and what was the surprise that there are gaps, so there are missing folios in the table. Example: 898, 897, 894, 892, 890, 889 ... That means that something is happening. Just to give more information