vote up 1 vote down star
1

How do I set the the default encoding of my local file SQL-Server database?

Thanks.

EDIT: Removed the UTF-8

flag

3 Answers

vote up 2 vote down check

Assuming by encoding you mean collation, you can change the default for new databases like:

alter database model collate SQL_Latin1_General_CP1_CI_AS

The change the collation of an existing database:

alter database YourDbName collate SQL_Latin1_General_CP1_CI_AS

The list of available collations is returned by a system function:

select * from fn_helpcollations()
link|flag
vote up 0 vote down
/*!40101 SET NAMES utf8 */

Something like that

link|flag
Where do I write that? – Alon Nov 5 at 12:00
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.