How do I set the the default encoding of my local file SQL-Server database?
Thanks.
EDIT: Removed the UTF-8
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:
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()