September 7, 2010 at 1:33 am
Hi,
I just want to know, if i change the collation in a database or column level in sql objects?
what will happened? is there any other performance issue will come?
I have one table called Emplyee. It consists of 7 columns. first 4 column are Latin_General type
Collation. The Other Columns are in SQL_Latin_General type collation.
If i change the collation from SQL_Latin_collation to Latin_General type collation.. is there any problem occurred? I would really appreciate, if anybody helps me out this issue
Thanks & Regards
Balaji.G
September 7, 2010 at 3:17 am
September 7, 2010 at 3:55 am
in that case, then every time in your query you need to define itin your matching condition. Something like :-
select.....
from tabl1 a inner join table2 b
ON a.columnname= b.columnname COLLATE Latin1_General_CI_AS
where .................
----------
Ashish
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply