Click here to Skip to main content
16,010,553 members
Home / Discussions / Database
   

Database

 
Questiongorsql server 2005 Pin
lagumaster27-Aug-05 12:59
lagumaster27-Aug-05 12:59 
QuestionApp crashes when filling a dataset in windows 98 Pin
beatles169227-Aug-05 1:41
beatles169227-Aug-05 1:41 
AnswerRe: App crashes when filling a dataset in windows 98 Pin
Colin Angus Mackay27-Aug-05 21:11
Colin Angus Mackay27-Aug-05 21:11 
QuestionVB.net using ado.net oledb connection by coding Pin
SolankiPratik26-Aug-05 14:12
SolankiPratik26-Aug-05 14:12 
QuestionHow do I query dates stored in a varchar field? Pin
Icharus26-Aug-05 11:45
Icharus26-Aug-05 11:45 
AnswerRe: How do I query dates stored in a varchar field? Pin
Rob Graham26-Aug-05 11:54
Rob Graham26-Aug-05 11:54 
GeneralRe: How do I query dates stored in a varchar field? Pin
Icharus26-Aug-05 12:13
Icharus26-Aug-05 12:13 
GeneralRe: How do I query dates stored in a varchar field? Pin
airbus38026-Aug-05 23:45
airbus38026-Aug-05 23:45 
SQL Server will return those records for which
CAST(field14 AS Datetime) is greather than '2005-09-01' only if value for filed7 is equal with 'Work Order'

Your result may be empty if settings for database COLLATION or field7 COLLATION is case sensitive CS.
Try to use this condition: ... AND UPPER(field7) = 'WORK ORDER'

Be attention at spaces between WORK and ORDER !

Also, the condition for date may be rewrite thus:
MONTH( field4 ) >= 9 AND YEAR( field4 ) >= 2005
GeneralRe: How do I query dates stored in a varchar field? Pin
Icharus29-Aug-05 6:31
Icharus29-Aug-05 6:31 
GeneralRe: How do I query dates stored in a varchar field? Pin
airbus38026-Aug-05 23:58
airbus38026-Aug-05 23:58 
GeneralRe: How do I query dates stored in a varchar field? Pin
airbus38026-Aug-05 23:54
airbus38026-Aug-05 23:54 
GeneralRe: How do I query dates stored in a varchar field? Pin
airbus38026-Aug-05 23:56
airbus38026-Aug-05 23:56 
Questiontext in multiline. Pin
gvjanardhan26-Aug-05 2:23
sussgvjanardhan26-Aug-05 2:23 
AnswerRe: text in multiline. Pin
SeMartens26-Aug-05 2:47
SeMartens26-Aug-05 2:47 
AnswerRe: text in multiline. Pin
Colin Angus Mackay26-Aug-05 11:31
Colin Angus Mackay26-Aug-05 11:31 
AnswerRe: text in multiline. Pin
softty28-Aug-05 7:41
softty28-Aug-05 7:41 
Questionshowing parts of a table in datagrid Pin
nirdanon26-Aug-05 2:22
nirdanon26-Aug-05 2:22 
AnswerRe: showing parts of a table in datagrid Pin
SeMartens26-Aug-05 3:00
SeMartens26-Aug-05 3:00 
GeneralRe: showing parts of a table in datagrid Pin
Not Active26-Aug-05 3:44
mentorNot Active26-Aug-05 3:44 
GeneralRe: showing parts of a table in datagrid Pin
nirdanon26-Aug-05 5:16
nirdanon26-Aug-05 5:16 
GeneralRe: showing parts of a table in datagrid Pin
SeMartens26-Aug-05 5:28
SeMartens26-Aug-05 5:28 
GeneralRe: showing parts of a table in datagrid Pin
Anonymous28-Aug-05 3:39
Anonymous28-Aug-05 3:39 
GeneralRe: showing parts of a table in datagrid Pin
miah alom26-Aug-05 11:09
miah alom26-Aug-05 11:09 
GeneralRe: showing parts of a table in datagrid Pin
Anonymous28-Aug-05 3:39
Anonymous28-Aug-05 3:39 
QuestionAlias for table names Pin
smita_roy26-Aug-05 1:45
smita_roy26-Aug-05 1:45 

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.