SQL SERVER – 2005 – Find Database Collation Using T-SQL and SSMS – Part 2

Previously I have written two different ways to find database collation SQL SERVER – 2005 – Find Database Collation Using T-SQL and SSMS. One of blog reader jwwishart has posted another method for doing the same.

SELECT collation_name
FROM sys.databases
WHERE name = 'AdventureWorks'

Reference : Pinal Dave (https://blog.sqlauthority.com)

SQL Scripts, SQL System Table
Previous Post
SQL SERVER – 2005 – Restore Database Using Corrupt Datafiles (.mdf and .ldf) – Part 2
Next Post
SQL SERVER – 2008 – Download Presentation and Whitepapers

Related Posts

Leave a Reply