up vote 0 down vote favorite
share [g+] share [fb]

I'm having a hard time trying to reset my ID/Name column in my google app. Right now it's on 3002, yet there's only 1 other peice of data still in the DB. I'm not even certain how it decided on 300x over like 1,2,3...

I'm sure this is a simple problem for someone more SQL inclined than I am :).

Thanks in advance!

link|improve this question

80% accept rate
1  
why do you want to reset the number? – AutomatedTester Aug 17 '09 at 9:28
It's not that important...as you can see from the comment below, I was just curious. – farina Aug 18 '09 at 6:09
feedback

1 Answer

up vote 1 down vote accepted

You can't. Generated IDs are guaranteed to be unique, but not sequential or contiguous. There's no facility for resetting the ID counters.

link|improve this answer
That sucks. Wonder why it jumped into the three and four thousands? – farina Aug 17 '09 at 18:47
why does it suck? how are you using the id? – Peter Recore Aug 18 '09 at 4:57
I guess it doesn't suck...I just get annoyed when things aren't in perfect order (starting with 0 or 1). Thanks again. :) – farina Aug 18 '09 at 6:09
It jumped because servers request IDs in chunks for efficiency. Sometimes a server restarts and its chunk of IDs gets discarded. – Nick Johnson Aug 18 '09 at 10:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.