Board index » delphi » Setting Case Sensitive option for SQL Server 7

Setting Case Sensitive option for SQL Server 7

Hello Guys,

    Can someone tell me how i can set the case sensitive option in SQL
SERVER 7.0.

    For eg: I was the table field comparision of value a='A' return a false.

    Thanks

Sunil Furtado

 

Re:Setting Case Sensitive option for SQL Server 7


Case sensitivity is an option when you do a Custom install of SQLServer
7.

Re:Setting Case Sensitive option for SQL Server 7


"Sunil Furtado" <su...@furtado.de> wrote

Quote
>     Can someone tell me how i can set the case sensitive option in SQL
> SERVER 7.0.

>     For eg: I was the table field comparision of value a='A' return a

false.

You have to change your server option for "default sort order id". You can
use sp_configure for this.

sp_configure "default sort order id", ??

I don't know what value you need to set this to for case sensitive option.
Look for sort order in BOL.

--Reddy Palle.

Re:Setting Case Sensitive option for SQL Server 7


Thanks Reddy,

        I will try that.

    Regards,

Sunil Furtado

Quote
reddy <pvre...@rocketmail.com> wrote in message news:397da684$1_1@dnews...

> "Sunil Furtado" <su...@furtado.de> wrote
> >     Can someone tell me how i can set the case sensitive option in SQL
> > SERVER 7.0.

> >     For eg: I was the table field comparision of value a='A' return a
> false.

> You have to change your server option for "default sort order id". You can
> use sp_configure for this.

> sp_configure "default sort order id", ??

> I don't know what value you need to set this to for case sensitive option.
> Look for sort order in BOL.

> --Reddy Palle.

Other Threads