About 24,200,000 results
Open links in new tab
  1. sql - What does collation mean? - Stack Overflow

    Dec 27, 2010 · A Collation compared two strings like, if a word is greater than another one, and sort accordingly. If you are using “latin1” Character set, you can use “latin1_swedish_ci” …

  2. What does character set and collation mean exactly?

    Sep 14, 2018 · A collation comprises rules that specify how characters can be compared for sorting. Collations rules can be locale-specific: the proper order of two characters varies from …

  3. How to change collation of database, table, column?

    Aug 18, 2009 · The database is latin1_general_ci now and I want to change collation to utf8mb4_general_ci. Is there any setting in PhpMyAdmin to change collation of database, …

  4. How I can obtain the collation of a specific table in a database?

    Feb 21, 2010 · A database has a default collation (which defaults to the collation for the server). The default collation for the database will be applied to any column you add to a table, …

  5. How to change the default collation of a table? - Stack Overflow

    Mar 3, 2015 · MySQL has 4 levels of collation: server, database, table, column. If you change the collation of the server, database or table, you don't change the setting for each column, but …

  6. What does 'COLLATE SQL_Latin1_General_CP1_CI_AS' do?

    If "What does COLLATE SQL_Latin1_General_CP1_CI_AS do?" means "What does this particular collation do?", then: Because the name start with SQL_, this is a SQL Server …

  7. How to fix a collation conflict in a SQL Server query

    Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Arabic_CI_AS" in the equal to operation. I don't know much about collation. Searching …

  8. SQL Server collation default for US/English - best practice

    Sep 8, 2022 · Per Microsoft, if your Windows locale is any English speaking country (except the US) your default SQL server collation during setup is: Latin1_General_CI_AS, but in the US it …

  9. Changing the collation of a SQL Server 2012 database

    Oct 1, 2014 · 22 Alter Collation I need to change the collation of one of our databases on a particular server from Latin1_General_CI_AS to SQL_Latin1_General_CP1_CI_AI so that it …

  10. Change collations of all columns of all tables in SQL Server

    I did change the collation of the source database in general to Latin1_General_CI_AS using the SQL Server Management Studio. But the tables and columns inside remains with the old …