﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Administering / SQL Server 2005  / How to change the database server for case sensitive / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Wed, 22 May 2013 11:56:33 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: How to change the database server for case sensitive</title><link>http://www.sqlservercentral.com/Forums/Topic683866-146-1.aspx</link><description>Read about it at http://www.db-staff.com/index.php/microsoft-sql-server/69-change-collationMJ</description><pubDate>Fri, 27 Mar 2009 18:42:18 GMT</pubDate><dc:creator>MANU-J.</dc:creator></item><item><title>RE: How to change the database server for case sensitive</title><link>http://www.sqlservercentral.com/Forums/Topic683866-146-1.aspx</link><description>Note that changing server or database collation does NOT change the collation for pre-existing columns/data.  There's only one way to do that:Create a brand new empty database in the desired collation and migrate the data into that DB.Simplest thing to do is to use the COLLATE option, though (as mentioned above).MSSQLTIPS just had an article on that today: [url=http://www.mssqltips.com/tip.asp?tip=1717]slightly different context but same issue[/url]</description><pubDate>Fri, 27 Mar 2009 13:13:25 GMT</pubDate><dc:creator>Pam Brisjar</dc:creator></item><item><title>RE: How to change the database server for case sensitive</title><link>http://www.sqlservercentral.com/Forums/Topic683866-146-1.aspx</link><description>You do not have to change the database or column collation in order to use different collations for specific tasks. In fact you can mix collations to match your needs.If you have your database built with case insensitve collation but would like to do case sensitive search just use the COLLATE keyword.For example the first select will find all records where test code is 'ABC' regardless of the case - so abc, AbC aBc and such will be found. The second one will find only the record matching the case of the specified string 'ABC' in this case. The third example will mix the case sensitive  and case insensitive search in one query. SELECT * FROM TestsWHERE TestCode = 'ABC'SELECT * FROM TestsWHERE TestCode = 'ABC' COLLATE Latin1_General_CS_AS SELECT * FROM TestsWHERE TestCode = 'ABC' COLLATE Latin1_General_CS_AS OR TestCode = 'CBS'</description><pubDate>Fri, 27 Mar 2009 09:42:21 GMT</pubDate><dc:creator>JacekO</dc:creator></item><item><title>RE: How to change the database server for case sensitive</title><link>http://www.sqlservercentral.com/Forums/Topic683866-146-1.aspx</link><description>Why do you want to change to case sensitive?</description><pubDate>Fri, 27 Mar 2009 06:21:24 GMT</pubDate><dc:creator>ChiragNS</dc:creator></item><item><title>RE: How to change the database server for case sensitive</title><link>http://www.sqlservercentral.com/Forums/Topic683866-146-1.aspx</link><description>Note that you can also change your database, or table collation as well (if you don't want your entire server running that way)So if you're using SQL_Latin1_General_CP1_CI_AS, try SQL_Latin1_General_CP1_CS_AS[quote]ALTER DATABASE   COLLATE SQL_Latin1_General_CP1_CS_AS[/quote]</description><pubDate>Fri, 27 Mar 2009 05:26:47 GMT</pubDate><dc:creator>JamieX</dc:creator></item><item><title>RE: How to change the database server for case sensitive</title><link>http://www.sqlservercentral.com/Forums/Topic683866-146-1.aspx</link><description>Hi,you can change the server collation, check http://msdn.microsoft.com/en-us/library/ms179254.aspxRegards,René</description><pubDate>Fri, 27 Mar 2009 05:13:32 GMT</pubDate><dc:creator>rene-500237</dc:creator></item><item><title>RE: How to change the database server for case sensitive</title><link>http://www.sqlservercentral.com/Forums/Topic683866-146-1.aspx</link><description>So whats the proble it must not show column1 when give COLUMN1.I dont think there is an option for that.</description><pubDate>Thu, 26 Mar 2009 02:54:41 GMT</pubDate><dc:creator>Eswin</dc:creator></item><item><title>How to change the database server for case sensitive</title><link>http://www.sqlservercentral.com/Forums/Topic683866-146-1.aspx</link><description>hi, In my       database  I  created  one table and add one column.column name is  :  column1  ..when i used select query select .select COLUMN1 FROM table ..it showing data..  how can i change the database to case sensitive..I am using sql server 2005 ctp expressedition..regards:giri...</description><pubDate>Thu, 26 Mar 2009 01:00:33 GMT</pubDate><dc:creator>dastagirid</dc:creator></item></channel></rss>