The collation of a user database can be changed via the ALTER DATABASE command.
<pre>alter database MyDatabase
collate Latin1_General_BIN</pre>
You can see the list of available collations <a href="http://msdn.microsoft.com/en-us/library/ms180175.aspx">here</a> or by running the following SQL Command.
<pre>select *
from sys.fn_helpcollations()</pre>
Last Wiki Answer Submitted: May 28, 2008 8:28 am by alessandro.panzetta9,695 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
Check out my SQL Server blog “SQL Server with Mr Denny” for more SQL Server information.