It seems that there is only one setting to control case-senstivity in a database. If I set the database collation to, e.g., Latin1_General_CS_AI, I get case sensitive collation AND case sensitive identifiers. But if I set collation to Latin1_General_CI_AI, I get the opposite -- case insensitive collation AND case insensitive identifiers.
Personally, I prefer case sensitive identifiers, but this causes problems when using 3rd-party sql that uses mixed (case-insensitive). So what I am looking for is a way to set identifier case-sensitivity independently of the collation setting, so I can have case sensitive collation and case insensitive identifiers.
Any ideas?
Thanks!
Gordon