Quote:
Originally Posted by anjanesh
I don't want to have an auto increment field as there are like 1000 rows being inserted every hour, which may result in overflow of max length of the auto_increment ID.
|
using an INTEGER auto_increment column, with 1000 rows arriving per hour, guess how long before the overflow?
if you do the math, you will discover that it will take 245 years
if the column is UNSIGNED it will take 490 years
so how realistic is your concern about overflow? i would say not realistic at all
there has never, in the history of computer systems on this planet, been an application that has lasted that long
yours will ~not~ be the first
