So I have an existing table that looks like:
I am converting this table to something that will be multi language compliant. My question is, I know that NVARCHAR's take double the space of a VARCHAR. Do I actually need to double the length of the VAL field to store the same amount of data or does the DB handle that?Code:ID BIGINT VAL VARCHAR(128)
Basically I want to store a 128 character NVARCHAR.. do I need to set my table up like this:
orCode:ID BIGINT VAL NVARCHAR(256)
Code:ID BIGINT VAL NVARCHAR(128)




Reply With Quote