How to change database collation in MSSQL?

To do it use the following query:

ALTER DATABASE database_name COLLATE collation_name

you can get current collation and other properties of database by the
following query:
sp_helpdb database_name
Your rating: None Average: 2.5 (2 votes)