|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Collation Conflict
I am getting the following error on a SQL Server with collation type of "SQL_Latin1_General_CP1_CS_AS" and all my tables are of the collation type of "Database_Default". The error is
Implicit conversion of varchar value to varchar cannot be performed because the collation of the value is unresolved due to a collation conflict. Any suggestion besides manually changing the collation setting of hundered of my tables? |
|
#2
|
|||
|
|||
|
For implicit conversion of varchar value to varchar do the following:
Cast(Field_Name As Varchar) COLLATE <Collation Name> Ex: ISNULL(CAST (surname AS VARCHAR) COLLATE SQL_Latin1_General_CP1_CI_AS,'') |
![]() |
| Viewing: ASP Free Forums > Database > Microsoft SQL Server > Collation Conflict |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|