Generally speaking, this is "safe cr@p" generated by wizard. If collation is not specified, database default is assumed. Ditto if you use [!]COLLATE database_default[/!] instead.
Collations in a nuthsell:
Code:
select description
from ::fn_helpcollations()
where name = 'SQL_Latin1_General_CP1_CI_AS'
- SQL_ - SQL collation
- Latin1_General_CP1 - accepts most of characters from Western alphabets (ISO code page 1252).
- CI - case-insensitive ('Blah' is equal to 'BLAH' in comparisons)
- AS - accent-sensitive, makes sense for alphabets with accented characters (in German U is different than Ü)
Some collations also have Kana-sensitivity (Japanese) or width-sensitivity flag (common for Eastern European alphabets)
------
[small]select stuff(stuff(replicate('<P> <B> ', 14), 109, 0, '<.'), 112, 0, '/')[/small]
![[banghead] [banghead] [banghead]](/data/assets/smilies/banghead.gif)