We decided to use Nvarchar
to store some information in some tables, the reason is that we assumed that we will have a lot of special characters since the database contains French and German data.
After extracting some of the data, we estimated the full run to have and extreamlly huge size (20 TB)
Now we would like to check every table to find if there are special characters found, if not then we change the type from NvarChar
to Varchar
Any idea how can we query this?
or what do you think the best way to optimize the size?