WyldGynjer
MIS
I have set up a database (DB1) with the collation name of: Latin1_General_BIN
Then I set up a second database (DB2) with the collation name of:
SQL_Latin1_General_CP1_Cl_AS
When I try to SELECT whatever from DB1 where whatever is IN (SElect Whatever from DB2) I get the following error:
Server: Msg 446, Level 16, State 9, Line 1
The reason for the error - I believe is because of my different collation names....
so...
My question is - If I do an ALTER DATABASE DB2 COLLATE Latin1_General_BIN ---> what does this actually do? Will it solve my problem? I've not set any columns' collation different than the default....
my goal is to just get my select statement to work w/o the errors....I can't easily recreate the database - I can - but I have alot of data in there and I don't want anything to get screwed up....
Any thoughts?
Then I set up a second database (DB2) with the collation name of:
SQL_Latin1_General_CP1_Cl_AS
When I try to SELECT whatever from DB1 where whatever is IN (SElect Whatever from DB2) I get the following error:
Server: Msg 446, Level 16, State 9, Line 1
The reason for the error - I believe is because of my different collation names....
so...
My question is - If I do an ALTER DATABASE DB2 COLLATE Latin1_General_BIN ---> what does this actually do? Will it solve my problem? I've not set any columns' collation different than the default....
my goal is to just get my select statement to work w/o the errors....I can't easily recreate the database - I can - but I have alot of data in there and I don't want anything to get screwed up....
Any thoughts?