Daniel,I am not sure exactly what you are trying to say. If you have a field typed as a VarChar(x), and you store a value of "FAX", it will only store and retrieve "FAX" however, if you are using a char(x) type, if you store a value of "FAX" SQL Server will return a value of "FAX ". StrataFrame BOs will retrieve the value as it is stored in the database. If you have a VarChar(x) field that has padding on the right, it had to be stored that way. If you store a padded value into a VarChar field, it will respect that padding and keep it in the database.