Click here to Skip to main content
15,887,975 members
Home / Discussions / Database
   

Database

 
Generaluser id and password validating Pin
Member 198366920-Jun-05 0:26
Member 198366920-Jun-05 0:26 
GeneralRe: user id and password validating Pin
Yulianto.20-Jun-05 15:42
Yulianto.20-Jun-05 15:42 
GeneralCase-sensativity in SQL Pin
Brendan Vogt19-Jun-05 20:23
Brendan Vogt19-Jun-05 20:23 
GeneralRe: Case-sensativity in SQL Pin
Colin Angus Mackay19-Jun-05 20:44
Colin Angus Mackay19-Jun-05 20:44 
GeneralRe: Case-sensativity in SQL Pin
Brendan Vogt20-Jun-05 20:18
Brendan Vogt20-Jun-05 20:18 
GeneralRe: Case-sensativity in SQL Pin
Colin Angus Mackay20-Jun-05 20:30
Colin Angus Mackay20-Jun-05 20:30 
GeneralRe: Case-sensativity in SQL Pin
Michael Potter20-Jun-05 4:52
Michael Potter20-Jun-05 4:52 
GeneralRe: Case-sensativity in SQL Pin
Richard Deeming20-Jun-05 8:27
mveRichard Deeming20-Jun-05 8:27 
Or you can just add a COLLATE statement to your comparison:
DECLARE @Test1 VARCHAR(20), @Test2 VARCHAR(20)
SELECT 
    @Test1 = 'Hello World',
    @Test2 = 'Hello world'
 
--Normal SQL Compare
PRINT CASE     
    WHEN @Test1 = @Test2 THEN 'Test1 equals Test2'
    ELSE 'Test1 does not equal Test2'
END
 
-- Case sesitive compare
PRINT CASE     
    WHEN @Test1 = @Test2 COLLATE Latin1_General_CS_AI THEN 'Test1 equals Test2'
    ELSE 'Test1 does not equal Test2'
END



"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
GeneralRe: Case-sensativity in SQL Pin
Michael Potter21-Jun-05 3:57
Michael Potter21-Jun-05 3:57 
QuestionWhy anyone needs a commercial OR mapper with is not flexible? Pin
erdsah8819-Jun-05 0:01
erdsah8819-Jun-05 0:01 
GeneralReinstall SQL Pin
gharryh18-Jun-05 23:09
gharryh18-Jun-05 23:09 
GeneralRe: Reinstall SQL Pin
Vasudevan Deepak Kumar19-Jun-05 19:32
Vasudevan Deepak Kumar19-Jun-05 19:32 
GeneralRe: Reinstall SQL Pin
Stanciu Vlad20-Jun-05 6:20
Stanciu Vlad20-Jun-05 6:20 
GeneralRe: Reinstall SQL Pin
gharryh20-Jun-05 7:02
gharryh20-Jun-05 7:02 
GeneralRe: Reinstall SQL Pin
Colin Angus Mackay20-Jun-05 20:37
Colin Angus Mackay20-Jun-05 20:37 
GeneralRe: Reinstall SQL Pin
gharryh20-Jun-05 23:54
gharryh20-Jun-05 23:54 
GeneralRe: Reinstall SQL Pin
Stanciu Vlad20-Jun-05 21:13
Stanciu Vlad20-Jun-05 21:13 
GeneralRe: Reinstall SQL Pin
gharryh20-Jun-05 23:57
gharryh20-Jun-05 23:57 
GeneralRe: Reinstall SQL Pin
Stanciu Vlad21-Jun-05 1:55
Stanciu Vlad21-Jun-05 1:55 
GeneralCopy / duplicate tables SQL /ADO Pin
Vaclav18-Jun-05 13:01
Vaclav18-Jun-05 13:01 
Generalreading from related tables of access. Pin
israeli18-Jun-05 7:10
israeli18-Jun-05 7:10 
GeneralRemote Sql server access Pin
Anonymous18-Jun-05 0:36
Anonymous18-Jun-05 0:36 
GeneralRe: Remote Sql server access Pin
Vijay V Anand18-Jun-05 4:26
Vijay V Anand18-Jun-05 4:26 
GeneralRe: Remote Sql server access Pin
Hesham Amin18-Jun-05 6:11
Hesham Amin18-Jun-05 6:11 
GeneralRe: Remote Sql server access Pin
Luis Alonso Ramos18-Jun-05 6:14
Luis Alonso Ramos18-Jun-05 6:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.