Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

collations 1

Status
Not open for further replies.

shanghai2004

Programmer
Dec 16, 2004
37
CA
Dear Expert,

What is the different between SQL_Latin1_General_Cp1_CI_AS and Latin1_General_CI_AS ? What does Cp1 represent for? Where do I find this kind information? I searched from SQL help, but I did not find the answer. Help please!

Happy New Year

 
So basically this is the difference

Latin1_General_CI_AS
Latin1-General, case-insensitive, accent-sensitive, kanatype-insensitive, width-insensitive

SQL_Latin1_General_CP1_CI_AS
Latin1-General, case-insensitive, accent-sensitive, kanatype-insensitive, width-insensitive for Unicode Data, SQL Server Sort Order 52 on Code Page 1252 for non-Unicode Data

SELECT *
FROM ::fn_helpcollations()
where name in ('SQL_Latin1_General_Cp1_CI_AS','Latin1_General_CI_AS')

Denis The SQL Menace
SQL blog:
Personal Blog:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top