| SQL Server 2005: How to Find Out Current Database SQL Collation |
|
Occasionally you may need to find out your database collation to fix bugs and etc. Here's how: There are two ways to get your database collation. Solution 1: Run the below script in Microsoft SQL Server Management Studio - query editor: SELECT DATABASEPROPERTYEX('AdventureWorks', 'Collation') SQLCollation; ResultSet:
Use the Microsoft SQL Server Management Studio GUI to find out the dabatabase collation. 1. Right click on the database -> Properties.
So you can use either one to find out the database collation.
|

