What are the pro's and cons with using Memo Fields in Microsoft Access 2010 Accdb databases? I'm altering an Access 2010 (accdb) database to convert 5 columns in a table of 45,000 records to be memo. This data will then be imported into SQL-Server as varchar(max).
I'm creating new fields for the data and then copying the data from the text(255) fields across as neither 'ALTER TABLE' in VBA nor altering the column through the Ms Access table view is working ("not enough disk space or memory").
This is making me feel very wary about using this many Memo fields. Eventually will eventually be 4 tables with 5 Memo fields each. Each table will have around 100+ fields in total with up to 400,000 records.
Should I just go back to the end user and tell them that they will have to use text(255) rather than multiple Memo fields as I suspect that the field has been defined as Memo 'just in case'.