In my server I have databases only with SQL_Latin1_General_CP1_CI_AS, which is good. But I have different collation in system databases. So when I'm trying to execute some complex queries it tells me about collation error.
So I read that solution is to change system databases collation, but this way is unknown for me and just look to scary.
The problem solves by using "<column> COLLATE DATABASE_DEFAULT", but I cannot write it into all queries in my porgram.
Please tell me if my solving about system databases is right or is there any other solution?