Pregunta

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)

¿Fue útil?

Solución 2

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

Otros consejos

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top