How do I set the the default encoding of my local file SQL-Server database?
Thanks.
EDIT: Removed the UTF-8
|
1
|
How do I set the the default encoding of my local file SQL-Server database? Thanks. EDIT: Removed the UTF-8
|
|||
|
|
|
|
Assuming by encoding you mean collation, you can change the default for new databases like:
The change the collation of an existing database:
The list of available collations is returned by a system function:
|
||
|
|
|
|
Something like that |
||
|
|
|
SQL Server dows not support UTF-8. Use nvarchar (UTF-16) if you dont mind using double space or varbinary if you dont need sort/indexing/comparision. May be supported in next release of SQL Server according to this post |
|||
|
|