About 90,200 results
Open links in new tab
  1. How to do a case sensitive search in WHERE clause?

    Mar 19, 2012 · I want case sensitive search in SQL query. But by default, MySQL does not consider the case of the strings. Any idea on how to do a case sensitive search in SQL query?

  2. sql server - How to do a case-insensitive LIKE in a case-sensitive ...

    Jun 13, 2018 · My vendor requires the data warehouse database to be case sensitive, but I need to do case-insensitive queries against it. In a case-sensitive database, how would you write this to be case …

  3. Case-Sensitive Collation on a select query in SQL Server

    Nov 10, 2022 · Our SQL Server's collation is set to SQL_Latin1_General_CP1_CI_AS I have a requirement where we have the same values with different cases but SQL Server treats them the …

  4. SQL Case Sensitive Query - Database Administrators Stack Exchange

    Checking the collation between the databases, I find they are both set to SQL_Latin1_General_CP1_CI_AS so I wouldn't expect them to behave differently. What other …

  5. sql server - Latin1_General_BIN performance impact when changing …

    Aug 13, 2015 · I have set the database collation to Latin1_General_BIN, to make string comparisons case-sensitive. Will this have an impact on performance? Will it have any impact on DML or DDL …

  6. Case Insensitive ORDER BY clause using COLLATE

    Nov 22, 2020 · MySQL/MariaDB and SQL Server default to case insensitive, and that would certainly make sense when sorting most text. Oracle and SQLite default to case sensitive, but have a …

  7. sql server - Case sensitivity not working - Database Administrators ...

    Jun 20, 2022 · The case-sensitive or case-insensitive part of a collation only affects equality comparisons. LIKE '[A]' would match both 'a' and 'A' under a case-insensitive collation, but only 'A' …

  8. sql server - Can database objects be made case insensitive while ...

    Oct 25, 2016 · In Microsoft SQL Server (2014) it is possible to choose between a case insensitive and case sensitive collation. My reason for using a case-sensitive collation would be to make "test" = …

  9. SQL Server - how to disable case sensitive in my query window?

    Oct 4, 2022 · Is there some way to disable case sensitive in my SSMS Query Window? For example, in some customers I get the following error: USE TEMPDB GO ..... Msg 911, Level 16, State 1, Line 1 …

  10. sql server - SSMS - How to do case-insensitive searches in Object ...

    Jan 29, 2019 · SSMS does not enforce case-sensitivity unless server collation is case-sensitive. what is your server collation?