I have a set of MapINFO TAB files that are coming from SQL. Their field widths are defaulted to CHAR 254. I would like to truncate the field widths to fit the largest width of the field's contents.
For instance,
FIELD1 CHAR 254 having rows aaaaa bb ccccccc dddd eeeee fffff ggggg
become truncated to
FIELD1 CHAR 7
7 being the largest width of all the rows of FIELD1
Any help would be appreciated.
Thiru