glgcag1991
Programmer
I have a need to store certain non-English characters from Spanish, French or German infrequently. They will either be in client names or client project names, but it's not like it's a multilingual database. I've read that it shouldn't be a problem with varchar since it's based on ASCII and those non-English characters exist, but if I want to include characters from languages like Chinese, then I would need to use Unicode, hence nvarchar.
Am I shooting myself in the foot by using varchar in order to save the space in not storing it in nvarchar which takes up twice the space?
Lastly, in this case, what collation is recommended?
Am I shooting myself in the foot by using varchar in order to save the space in not storing it in nvarchar which takes up twice the space?
Lastly, in this case, what collation is recommended?