By default - what is the character encoding set for a database in Microsoft SQL Server?
How can I see the current character encoding in SQL Server?
|
By default - what is the character encoding set for a database in Microsoft SQL Server? How can I see the current character encoding in SQL Server? |
||||
| show 1 more comment |
|
If you need to know the default collation for a newly created database use:
This is the server collation for the SQL Server instance that you are running. |
|||||
|
|
Where DBName is your database name. |
|||
|
|
|
The default character encoding for a SQL Server database is iso_1, which is ISO 8859-1. Note that the character encoding depends on the data type of a column. You can get an idea of what character encodings are used for the columns in a database as well as the collations using this SQL:
If it's using the default, the character_set_name should be iso_1 for the char and varchar data types. Since nchar and nvarchar store Unicode data in UCS-2 format, the character_set_name for those data types is UNICODE. |
|||
|
|
MSSQLxml is stored inUTF-16, nchar's is stored inUCS-2– Johnny Mar 3 '11 at 15:21