if u have identity column and of course before deployed it to production, u'll need to test the value
when u done, u probably want to reset it to initial value (0 for example) so u have 'fresh' data for production
u'll be need to use this syntax
DBCC CHECKIDENT (orders, RESEED, 0)PS: the next value will be always +1, so in my case next value will be 1 until then
Comments