When using SQL Server, you can use T-SQL to specify the default collation of a database. Specifically, you can use the COLLATE
clause of either the CREATE DATABASE
or ALTER DATABASE
 statements.
The COLLATE
clause is optional – if you don’t use it when creating the database, the database will use the default collation of the server (which was specified at the time SQL Server was installed). And if you don’t specify the clause when altering the database, its default collation won’t change.
Continue reading