Alter Table <Table Name> Alter Column <Field Name> VarChar(1000)
the 1000 is an example, any value up to 8000 is valid. You need to be a little careful though because SQL Server has a size limit per row/record of 8060 bytes.
You could change it to a "memo" field if you really want to. The problem with memo fields is that many of the string functions will not work with it.
Alter Table <Table Name> Alter Column <Field Name> Text
Hope this helps.
-George
Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
so if I changed the field type on the Access side (it is currently 'Text') to 'Memo' -- everything should be fine on the Sql Server backend (in the field which is a 'Text' field).
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.