December 22, 2016 at 3:48 pm
In the process of upgrading the front end of my DB and apparently, it doesn't like BigInt data type. Am I going to be able update a new table that changes the BigInt to and Int without loosing any data? Have several tables that currently use the BigInt data type.
December 22, 2016 at 3:59 pm
Only if the data in the BIGINT columns will convert to INT. If the values exceed the range of allowable values in an INT column, the conversion from BIGINT to INT will fail.
December 22, 2016 at 4:06 pm
Based on my current BigInt values, I think I will be okay. Thanks for your reply.:-)
December 22, 2016 at 4:22 pm
Just curious... which language is the frontend code written in?
--Jeff Moden
Change is inevitable... Change for the better is not.
December 23, 2016 at 7:45 am
Access 2013 is the GUI front end. A lot of VB is used.
December 23, 2016 at 10:16 am
Additionally: if that column takes part in constraints, indexes and etc. you'll have to re-create them.
Igor Micev,My blog: www.igormicev.com
December 23, 2016 at 11:19 am
I have a lot of work ahead of myself. There are several tables that have this issue. Gotta love Microsoft!:crazy:
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply