Domanda

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)

È stato utile?

Soluzione 2

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

Altri suggerimenti

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top