I'm trying to update my field data types. It seems to keep it as just an integer and I cannot update my database because the numbers are too large. I might just do the datatypes as Double if I can't get it to convert to long.
Here's the sql code I'm using for MS Access:
ALTER TABLE Flows ALTER COLUMN Softener2 LONG
The ALTER TABLE statement you cited in your question does work. If I start with a table definition where [Softener2] is
Integer
......and then close the table and run the following code...
...the column is indeed changed to
Long Integer