|
If the tables
have different collation you will get an error message if you
are using regular JOIN. You have to use the collate clause. It is sufficient to use it on one side. Example:
where PO.InvoiceDetailID = Transmittal.InvoiceDetailID
COLLATE SQL_Latin1_General_CP1_CI_AS
where PO.InvoiceDetailID = Transmittal.InvoiceDetailID
COLLATE DATABASE_DEFAULT
Related Link:
http://www.sqlusa.com/bestpractices2005/collatedatabasedefault/
|