In sp_help documentation doesn't says much about the property TrimTrailingBlanks of a table:
TrimTrailingBlanks | varchar(35) | Trim the trailing blanks. Returns Yes or No.
so I'm thinking if is good practice to turn it on or if I should let it's default off. What I want to do is to delete blanks from left and right strings, and (by the name) is what this property enables.
Now, do you know if is good practice to turn this property on?
I know I can do the trailling in my application code, but it will be very nice to have this done automatically in the database before any insert or update. I don't know if I will have any drawback if I change the value No by Yes.