Share via

multiple SQL collation on same machine

Rakesh Kumar 466 Reputation points
2022-05-04T11:33:50.29+00:00

Hi,

Is it possible to install different collation for different SQL instances on same machine with same language.

like instance1 with Latin1_General_CP1_CI_AS

and

instance2 with Latin1_General_CI_AS

SQL Server | Other
SQL Server | Other

Additional SQL Server features and topics not covered by specific categories

0 comments No comments

Answer accepted by question author

Bjoern Peters 8,921 Reputation points
2022-05-04T11:46:00.2+00:00

Yes, that is absolutely possible.
That collations are in the instance and mainly for the system databases => means that on an ideal base all your user databases have the same collation as your system databases.
Those database collations due not really rely on the system language.

So as you already wrote you have to install different instances on the same server if you have different collations. (technically it is possible to use different collation within one instance but it is not recommended)

Hope this helps.

Was this answer helpful?

0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Olaf Helper 47,616 Reputation points
    2022-05-04T13:14:06.55+00:00

    The effective collaction is defined on table-column level, so you could even have within one database different collation.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.