How can I findout what's my MSSQL server collation?

OscarRyz picture OscarRyz · Feb 22, 2011 · Viewed 27.9k times · Source

Is there a SQL I can execute to find out?

Answer

RichardTheKiwi picture RichardTheKiwi · Feb 22, 2011

The server default collation:

select serverproperty('collation')

Which is the same as

select databasepropertyex('master','collation')

Check SERVERPROPERTY in Books Online for other information you can get about the server (instance).