change MS Access column datatype from "Text" to "Memo"

parkerjnc

Member
Joined
Oct 12, 2007
Messages
10
Programming Experience
3-5
I have an unknown number of MS Access database files which have a column in a table which is defined as "Text" (max 255 chars). I need to change the datatype to "Memo" (max 32K chars) using VB.net. These files probably will have data in the column. Is this possible? :confused: Any suggestions on how to do it?

-parkerjnc-
 
Enlarging a columns length shouldnt cause any problems. And this doesnt sound like something you need to do dynamically, create a backup and go into the design environment of the database and change the columns datatype.
 
The problem is that the database files are used by a VB.Net application and each user of the app will have several of their own separate database files. There's no way for me to access all the files out there.

I was hoping to modify the application to recognize when loading a file that the column in question needs altering, make the change, then save it.
 

Latest posts

Back
Top