Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Case-Sensitive

Status
Not open for further replies.

trenttc

Technical User
Feb 25, 2002
68
US
I want to test for case-sensitive data on a case-insensitive database (ASA 8.0). I can't create a new database. I connect from my XP box using dbisqlc, passing cs 'cp850'. Further, I try:
begin
Declare @Temp VarChar(50);
Set @Temp = csconvert('UPPER CASE Words only','cp850');
Select SubString(@Temp, 1, Locate(@Temp, CSCONVERT('w','cp850'),1)+1);
end;

I still get 'UPPER CASE Wo' as a result. Any ideas?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top