CREATE TABLE [dbo].[tbl_Person](
[PersonID] [int] IDENTITY(1,1) NOT NULL,
[Name] [varchar](50) NULL,
[Address] [varchar](50) NULL,
[Phone] [varchar](50) NULL,
CONSTRAINT [PK_tbl_Person] PRIMARY KEY CLUSTERED
(
[PersonID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
In this table when inserting value from application using stored procedure with query
INSERT INTO [dbo].[tbl_PersonName]
([Name])
VALUES
('name')
the 'PersonID' column got unusual value. The value jumps randomly like, from 1896 to 11896 and again jumps from 11905 to 21905. i worry if such jumps occurs the range could be insufficient and the data seems quite unorganized. I wonder if those unused value would be reused or not? After inserting some data what should i do to re managed the sequence? i am worried with the issue, this didn't happen in 2010 though i used the same pattern of code as in 2012. help me!