Click here to Skip to main content
15,920,438 members
Home / Discussions / Database
   

Database

 
GeneralRe: Thanks for the help guys Pin
Eric Dahlvang14-Jul-06 5:50
Eric Dahlvang14-Jul-06 5:50 
AnswerRe: where not exists problem! Pin
Eric Dahlvang14-Jul-06 7:23
Eric Dahlvang14-Jul-06 7:23 
GeneralRe: where not exists problem! Pin
richiemac16-Jul-06 22:18
richiemac16-Jul-06 22:18 
Questionmaintaining the data type Pin
Jerry Hammond13-Jul-06 20:20
Jerry Hammond13-Jul-06 20:20 
AnswerRe: maintaining the data type Pin
Mike Dimmick14-Jul-06 0:24
Mike Dimmick14-Jul-06 0:24 
GeneralRe: maintaining the data type Pin
Jerry Hammond14-Jul-06 5:24
Jerry Hammond14-Jul-06 5:24 
QuestionMatch Case Comparision Pin
sumit siddheshwar13-Jul-06 18:23
sumit siddheshwar13-Jul-06 18:23 
AnswerRe: Match Case Comparision Pin
Edbert P13-Jul-06 19:26
Edbert P13-Jul-06 19:26 
Did you mean you want to return results which contains both 'computer' and 'COMPUTER'?
In most SQLs the queries are case-insensitive which means both query 1 and 2 should return the same result.
If that is not the case, then just use WHERE UCASE(column1) = UCASE('Computer') so everything is search based on uppercase value.
If you want case-sensitivity instead, then just cast both values into varbinary, e.g. CAST('Computer' AS varbinary(8)).

For more information on SQL case sensitivity, you can read this link[^].

"You are special, but so is everybody else."

"Democracy is two wolves and a sheep voting on what to have for dinner" - Ross

Edbert
Sydney, Australia
GeneralRe: Match Case Comparision Pin
sumit siddheshwar13-Jul-06 20:07
sumit siddheshwar13-Jul-06 20:07 
AnswerRe: Match Case Comparision Pin
Mairaaj Khan14-Jul-06 3:06
professionalMairaaj Khan14-Jul-06 3:06 
QuestionTo many SQL Data Sources? Pin
Drathmar13-Jul-06 17:06
Drathmar13-Jul-06 17:06 
AnswerRe: To many SQL Data Sources? Pin
Colin Angus Mackay13-Jul-06 22:00
Colin Angus Mackay13-Jul-06 22:00 
AnswerRe: To many SQL Data Sources? Pin
mysorian15-Jul-06 4:47
professionalmysorian15-Jul-06 4:47 
QuestionA simple query :( [modified] Pin
xoxoxoxoxoxox13-Jul-06 16:35
xoxoxoxoxoxox13-Jul-06 16:35 
AnswerRe: A simple query :( Pin
Andrew Bleakley13-Jul-06 17:51
Andrew Bleakley13-Jul-06 17:51 
GeneralRe: A simple query :( Pin
xoxoxoxoxoxox13-Jul-06 17:58
xoxoxoxoxoxox13-Jul-06 17:58 
GeneralRe: A simple query :( Pin
Andrew Bleakley13-Jul-06 18:12
Andrew Bleakley13-Jul-06 18:12 
QuestionDataadapter UpdateCommand Pin
kedar.dave13-Jul-06 12:01
kedar.dave13-Jul-06 12:01 
AnswerRe: Dataadapter UpdateCommand Pin
Rob Graham13-Jul-06 13:24
Rob Graham13-Jul-06 13:24 
QuestionRe: Dataadapter UpdateCommand Pin
kedar.dave13-Jul-06 13:34
kedar.dave13-Jul-06 13:34 
AnswerRe: Dataadapter UpdateCommand Pin
Rob Graham13-Jul-06 14:29
Rob Graham13-Jul-06 14:29 
QuestionRe: Dataadapter UpdateCommand Pin
kedar.dave14-Jul-06 8:43
kedar.dave14-Jul-06 8:43 
Questioncan we use sql reporting services with ASP3.0 Pin
prasannamv13-Jul-06 11:15
prasannamv13-Jul-06 11:15 
AnswerRe: can we use sql reporting services with ASP3.0 Pin
Paul Conrad15-Jul-06 11:00
professionalPaul Conrad15-Jul-06 11:00 
GeneralRe: can we use sql reporting services with ASP3.0 Pin
Asif Sayed15-Jul-06 19:48
Asif Sayed15-Jul-06 19:48 

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.