MS Access has a passable text file import wizard. (File -> Get External Data -> Import.) Unfortunately, text columns (fields) are always imported with 255-character size, regardless of the actual data found in the input file.
How can I reduce these 255-character Text columns to a reasonable size without manually doing a bunch of "SELECT Max(Len(_column_)) FROM _data_
" queries?
I already have a solution and I will post it below.