I am developing an Access database application. This app have huge amount of changes (Added rows) every minute. All changes saved in a table which has an 'ID' Auto increase column (Starts from 0 ). At some point the 'ID' value will reach max. allowed value (Integer.MaxValue I think or whatever). how can I add new rows after this?
Note: When Adding rows I also remove previous rows. So, the total table rows count won't be greater than 100 rows, but 'ID' column won't repeat its values or restart counting from 0 again.