News

Unlike the previous version of SQL Server, SQL Server 2000 lets you specify collations for almost any task, at virtually every level within a database — from table column to SELECT statement ...
SQL Server 2000I need to change the collation for a database from case senstitive to case insensitive. ALTER DATABASE COLLATE SQL_Latin1_General_CI_AS When I try to so, I get a whole slew of ...
I am trying to write a select statement that joins two tables from different databases on my SQL server. The issue is that the two databases are different collation types. DataBaseA is collation ...