Link to home
Start Free TrialLog in
Avatar of sgaurav7
sgaurav7

asked on

Colation Error


Hi,

When I try to run my Stored procedure I get the coalation error on the line below:
The error is "Cannot resolve collation conflict for equal to operation."
Any help will be appreciated?

Update ##AO_Auction_TTbl1 set  OrderAuthByEmailid=E.LOGUSER_MAIL_ID
Avatar of sasapopovic
sasapopovic
Flag of Serbia image

You should try using "collate database_default". In your case it would be something like:


Update ##AO_Auction_TTbl1 set  OrderAuthByEmailid collate database_default = E.LOGUSER_MAIL_ID collate database_default

I can not check that statement here but if you get any more error messages, please try it with:

Update ##AO_Auction_TTbl1 set  OrderAuthByEmailid = E.LOGUSER_MAIL_ID collate database_default

I hope this is what you need.

Regards,
Sasa
Avatar of sgaurav7
sgaurav7

ASKER

I tried both but still the same error
ASKER CERTIFIED SOLUTION
Avatar of nost2
nost2

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial