I have an abnormally large table for one of my applications in MS Access. It violently breaks some rules of normalization, but is otherwise fine for this small application. It has ~100 fields(columns). I have read the limitation specifications here but can't see where I violate any of these. Most of the fields are text fields, and range from a couple words to a couple of sentences. My questions are:
Is there a way to get a more descriptive error than "record is too large", so that I can determine how to make it smaller?
Would changing my 'text' fields to 'memo' fields decrease the size of my record?
At first glance, of all of the specifications potentially violated, this :Number of characters in a record (excluding Memo and OLE Object fields) when the UnicodeCompression property of the fields is set to Yes :: 4,000
appears to be the most likely culprit.
Would this violation potentially give the "record is too large" runtime error(while filling out a form).
Would setting the UnicodeCompression property to 'no' positively or negatively impact the performance?