Click here to Skip to main content
15,897,704 members
Home / Discussions / C#
   

C#

 
GeneralRe: Query XML with LINQ Pin
treuveni15-Jun-11 21:37
treuveni15-Jun-11 21:37 
GeneralRe: Query XML with LINQ Pin
Pete O'Hanlon15-Jun-11 21:42
mvePete O'Hanlon15-Jun-11 21:42 
GeneralRe: Query XML with LINQ Pin
treuveni15-Jun-11 21:50
treuveni15-Jun-11 21:50 
GeneralRe: Query XML with LINQ Pin
Pete O'Hanlon15-Jun-11 22:21
mvePete O'Hanlon15-Jun-11 22:21 
QuestionSearching words on visual studio. Pin
Subin Mavunkal15-Jun-11 21:05
Subin Mavunkal15-Jun-11 21:05 
AnswerRe: Searching words on visual studio. Pin
Richard MacCutchan15-Jun-11 21:18
mveRichard MacCutchan15-Jun-11 21:18 
Answer[SOLVED] OleDb Exception Displays Only Table Name Pin
Matt U.15-Jun-11 12:01
Matt U.15-Jun-11 12:01 
AnswerRe: OleDb Exception Displays Only Table Name Pin
AnnieMacD15-Jun-11 13:30
AnnieMacD15-Jun-11 13:30 
You don't seem to be joining the two tables, so try this:
SELECT TOP 1 Count(*) AS Expr1, ScrapCodeID
FROM ScrapCodes 
INNER JOIN Repairs ON ScrapCodes.ID = Repairs.ScrapCodeID
WHERE FailureCode = 13
GROUP BY Repairs.ScrapCodeID
ORDER BY Count(*) DESC;

The Scrap Codes to Repairs tables above assume a one-to-many relationship - I presume that is what you have.
It’s not because things are difficult that we do not dare, it’s because we do not dare that things are difficult. ~Seneca

GeneralRe: OleDb Exception Displays Only Table Name Pin
Matt U.15-Jun-11 15:47
Matt U.15-Jun-11 15:47 
QuestionIs it possible to query a unix server (SAN) with c sharp? [modified] Pin
turbosupramk315-Jun-11 10:09
turbosupramk315-Jun-11 10:09 
AnswerRe: Is it possible to query a unix server (SAN) with c sharp? Pin
Not Active15-Jun-11 10:16
mentorNot Active15-Jun-11 10:16 
GeneralRe: Is it possible to query a unix server (SAN) with c sharp? Pin
turbosupramk316-Jun-11 2:46
turbosupramk316-Jun-11 2:46 
AnswerRe: Is it possible to query a unix server (SAN) with c sharp? Pin
BobJanova16-Jun-11 2:55
BobJanova16-Jun-11 2:55 
GeneralRe: Is it possible to query a unix server (SAN) with c sharp? Pin
turbosupramk316-Jun-11 3:16
turbosupramk316-Jun-11 3:16 
GeneralRe: Is it possible to query a unix server (SAN) with c sharp? Pin
BobJanova16-Jun-11 8:59
BobJanova16-Jun-11 8:59 
AnswerRe: Is it possible to query a unix server (SAN) with c sharp? Pin
PIEBALDconsult16-Jun-11 16:07
mvePIEBALDconsult16-Jun-11 16:07 
GeneralRe: Is it possible to query a unix server (SAN) with c sharp? Pin
turbosupramk316-Jun-11 16:54
turbosupramk316-Jun-11 16:54 
QuestionConvert string to datetime Pin
treuveni15-Jun-11 9:16
treuveni15-Jun-11 9:16 
AnswerRe: Convert string to datetime PinPopular
Ennis Ray Lynch, Jr.15-Jun-11 9:23
Ennis Ray Lynch, Jr.15-Jun-11 9:23 
GeneralRe: Convert string to datetime [modified] Pin
treuveni15-Jun-11 9:30
treuveni15-Jun-11 9:30 
AnswerRe: Convert string to datetime PinPopular
AspDotNetDev15-Jun-11 9:41
protectorAspDotNetDev15-Jun-11 9:41 
GeneralRe: Convert string to datetime Pin
treuveni15-Jun-11 9:43
treuveni15-Jun-11 9:43 
AnswerRe: Convert string to datetime Pin
GenJerDan15-Jun-11 11:30
GenJerDan15-Jun-11 11:30 
GeneralRe: Convert string to datetime Pin
AspDotNetDev15-Jun-11 11:40
protectorAspDotNetDev15-Jun-11 11:40 
GeneralRe: Convert string to datetime Pin
GenJerDan16-Jun-11 3:18
GenJerDan16-Jun-11 3:18 

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.