Hi All,
I wonder if anyone can help me?
I'm trying to create a view, which is a union of two other views:
SELECT *
FROM dbo.V_USERS_INTERNAL
UNION ALL
SELECT * FROM dbo.V_USERS_EXTERNAL
When i try to create the view a get a collation error.
To be more precice, when i run the SQL in Query Analyzer i get the following error.
Server: Msg 457, Level 16, State 1, Line 1
Implicit conversion of char value to char cannot be performed because the collation of the value is unresolved due to a collation conflict.
Now, the two views i'm joing up look at two T_USER tables in different databases. I checked the collation names of both databases and they match 'SQL_Latin1_General_CP1_CI_AS'.
So i checked the collation names of the induvidual char types in both databases... And they all match too...
Is there something i'm missing???
Any help would be great, Cheers,
Jonathan.
I wonder if anyone can help me?
I'm trying to create a view, which is a union of two other views:
SELECT *
FROM dbo.V_USERS_INTERNAL
UNION ALL
SELECT * FROM dbo.V_USERS_EXTERNAL
When i try to create the view a get a collation error.
To be more precice, when i run the SQL in Query Analyzer i get the following error.
Server: Msg 457, Level 16, State 1, Line 1
Implicit conversion of char value to char cannot be performed because the collation of the value is unresolved due to a collation conflict.
Now, the two views i'm joing up look at two T_USER tables in different databases. I checked the collation names of both databases and they match 'SQL_Latin1_General_CP1_CI_AS'.
So i checked the collation names of the induvidual char types in both databases... And they all match too...
Is there something i'm missing???
Any help would be great, Cheers,
Jonathan.