I used TEXT datatype for large fields up to 4000 positions that I put into MSSQL7. However, MSSQL7 does not show large columns in full, if a SELECT Query is performed. I did: <br>Select MyColumn from MyTable where Len(convert(varchar(8000), MyColumn)) > 500 .<br>Showing the result, SQL7 truncates the field's content down to 257 positions. I tried File->SaveAs (saved as a text file), but again, received only 257 positions, not the whole original length. Can I hope that the whole-length data could be retrieved back in any way?