• crussell-931424 (10/22/2012)


    The effective result is different for a table that has had records from a table that has never had any records. Don't know why. It just is.

    Not quite - it depends how you deleted the records. If you deleted them using DELETE, it's as you describe (the first record after reseed gets the incremented number) but if you deleted them using TRUNCATE TABLE it's as if there had never been any records (the first record after reseed gets the specified number, unincremented).

    Tom