Question

Is it possible to alter column to decimal in MS Access 2007+? This is my code: ALTER TABLE [test] ALTER COLUMN [columnName] DECIMAL(18,1)

Était-ce utile?

La solution 2

Its not possible in query of ms access but in OLEDB its possible.

Autres conseils

DECIMAL(18,1) is no Access datatype. Either you link it to an MSSQL Server or you use a MS Access datatype.

Here you will find a msdn article on MS Access datatypes (use the types in the second column for your ALTER Query)

ALTER TABLE [test] ALTER COLUMN [columnName] LONG

Best Regards, Bruellhusten

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top