Click here to Skip to main content
15,911,035 members
Home / Discussions / Database
   

Database

 
AnswerRe: Unable to Start MSSQL SERVER Pin
R. Giskard Reventlov25-Mar-10 2:59
R. Giskard Reventlov25-Mar-10 2:59 
GeneralRe: Unable to Start MSSQL SERVER Pin
astrovirgin25-Mar-10 3:29
astrovirgin25-Mar-10 3:29 
GeneralRe: Unable to Start MSSQL SERVER Pin
R. Giskard Reventlov25-Mar-10 4:25
R. Giskard Reventlov25-Mar-10 4:25 
Questionhow to select a single row based on an aggregate SQL function result? Pin
michal.kreslik25-Mar-10 2:20
michal.kreslik25-Mar-10 2:20 
AnswerRe: how to select a single row based on an aggregate SQL function result? Pin
michal.kreslik25-Mar-10 2:23
michal.kreslik25-Mar-10 2:23 
GeneralRe: how to select a single row based on an aggregate SQL function result? Pin
scottgp25-Mar-10 3:22
professionalscottgp25-Mar-10 3:22 
GeneralRe: how to select a single row based on an aggregate SQL function result? Pin
michal.kreslik25-Mar-10 3:39
michal.kreslik25-Mar-10 3:39 
GeneralRe: how to select a single row based on an aggregate SQL function result? Pin
i.j.russell25-Mar-10 4:34
i.j.russell25-Mar-10 4:34 
SELECT g.GenerationId,
	d.Fitness,
	d.RecordId
FROM
(
	SELECT DISTINCT GenerationId
	FROM [Source]
) AS g
	CROSS APPLY
	(
		SELECT TOP 1 s.RecordId, s.Fitness
		FROM [Source] AS s
		WHERE s.GenerationId = g.GenerationId
		ORDER BY s.Fitness DESC
	) AS d
ORDER BY g.GenerationId ASC

GeneralRe: how to select a single row based on an aggregate SQL function result? Pin
scottgp25-Mar-10 6:44
professionalscottgp25-Mar-10 6:44 
GeneralRe: how to select a single row based on an aggregate SQL function result? Pin
michal.kreslik31-Mar-10 23:21
michal.kreslik31-Mar-10 23:21 
QuestionProblem with SQL Query Pin
stanley1825-Mar-10 1:46
stanley1825-Mar-10 1:46 
AnswerRe: Problem with SQL Query Pin
Mschauder25-Mar-10 2:55
Mschauder25-Mar-10 2:55 
AnswerRe: Problem with SQL Query Pin
Jörgen Andersson26-Mar-10 11:23
professionalJörgen Andersson26-Mar-10 11:23 
Questionwhere the actual file is stored?? Pin
scorp_scorp25-Mar-10 1:05
scorp_scorp25-Mar-10 1:05 
AnswerRe: where the actual file is stored?? Pin
Jörgen Andersson25-Mar-10 1:22
professionalJörgen Andersson25-Mar-10 1:22 
GeneralRe: where the actual file is stored?? Pin
scorp_scorp26-Mar-10 7:22
scorp_scorp26-Mar-10 7:22 
GeneralRe: where the actual file is stored?? Pin
Jörgen Andersson26-Mar-10 9:47
professionalJörgen Andersson26-Mar-10 9:47 
QuestionAudit Trail and Entity Framework Pin
andreas.schaerer25-Mar-10 0:05
andreas.schaerer25-Mar-10 0:05 
AnswerRe: Audit Trail and Entity Framework Pin
Mycroft Holmes25-Mar-10 0:44
professionalMycroft Holmes25-Mar-10 0:44 
AnswerRe: Audit Trail and Entity Framework Pin
David Skelly25-Mar-10 3:18
David Skelly25-Mar-10 3:18 
AnswerRe: Audit Trail and Entity Framework Pin
scottgp25-Mar-10 3:33
professionalscottgp25-Mar-10 3:33 
QuestionOracle encryption/decryption Pin
StanlyJose24-Mar-10 5:34
StanlyJose24-Mar-10 5:34 
AnswerRe: Oracle encryption/decryption Pin
Luc Pattyn24-Mar-10 5:46
sitebuilderLuc Pattyn24-Mar-10 5:46 
AnswerRe: Oracle encryption/decryption Pin
Don Burton24-Mar-10 6:10
Don Burton24-Mar-10 6:10 
Questionsql conctante first name and last name Pin
netJP12L23-Mar-10 5:46
netJP12L23-Mar-10 5:46 

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.