Re: Case Sensitive
From: Tenaya (ct_at_ct.ct)
Date: 03/22/04
- Next message: randyvol: "Re: out of control T-Log? NEED HELP PLEASE..."
- Previous message: Tibor Karaszi: "Re: Qualify query with table name owner"
- In reply to: Atley: "Case Sensitive"
- Next in thread: Paul Ibison: "Re: Case Sensitive"
- Messages sorted by: [ date ] [ thread ]
Date: Mon, 22 Mar 2004 16:37:32 -0500
Atley,
Please search the SQL Server 2000 Books Online re: "COLLATE" and
"COLLATIONS" to understand why you are getting different results on the
different SQL Server instances.
To help you out immediately, however, the following is an example of how to
use the COLLATE syntax within a SELECT:
create table Atley (c1 char (1) NOT NULL)
go
insert into Atley values ('m')
insert into Atley values ('M')
select *
from Atley
where c1 = 'm' collate Latin1_General_CS_AS
Chief Tenaya
"Atley" <atley_1@homtmail.com> wrote in message
news:uwl89FFEEHA.3696@TK2MSFTNGP10.phx.gbl...
> I have a table that has a field populated by single character data.
>
> in it 'm' is different than 'M'. How do I differentiate this in my
> queries....
>
> It works automatically on my base SQL server, but not on the replicant.
>
>
>
> Thanks for the help...
>
>
>
- Next message: randyvol: "Re: out of control T-Log? NEED HELP PLEASE..."
- Previous message: Tibor Karaszi: "Re: Qualify query with table name owner"
- In reply to: Atley: "Case Sensitive"
- Next in thread: Paul Ibison: "Re: Case Sensitive"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|