If you were building a new database in SQL Azure, which collation would you use?
SQL_Latin_General_CP1_AS_AI or Latin_General_AS_AI?
Reason I ask is that the default collation on SQL Azure is SQL_Latin_General_CP1_AS_AI
as described here:
https://azure.microsoft.com/en-gb/documentation/articles/sql-database-general-limitations/
BUT
If you look at the MSDN article about Collation it states,
SQL Server supports Windows collations. SQL Server also supports a limited number (<80) of collations called SQL Server collations which were developed before SQL Server supported Windows collations. SQL Server collations are still supported for backward compatibility, but should not be used for new development work. For more information about Windows collations, see Windows Collation Name (Transact-SQL).
Taken from: https://msdn.microsoft.com/en-GB/library/ms180175.aspx
This suggests that SQL collation support is not recommended for new database development, yet that conflicts with the fact that the SQL Azure collation is SQL_Latin by default.
Appreciate people's thoughts on this.
Thanks.