Click here to Skip to main content
15,923,273 members
Home / Discussions / Database
   

Database

 
AnswerRe: How to Prevent Selects from being returned ... Pin
Ritwik Sanyal26-Nov-06 22:29
Ritwik Sanyal26-Nov-06 22:29 
QuestionLimiting the Number of results retrived using ODBC on MS access DB by C# [modified] Pin
cbh_24-Nov-06 22:04
cbh_24-Nov-06 22:04 
AnswerRe: Limiting the Number of results retrived using ODBC on MS access DB by C# Pin
Ritwik Sanyal26-Nov-06 23:19
Ritwik Sanyal26-Nov-06 23:19 
QuestionPerformance Counters for the .NET Framework Data Provider for SQL Server Pin
FlorentBzh24-Nov-06 4:34
FlorentBzh24-Nov-06 4:34 
AnswerRe: Performance Counters for the .NET Framework Data Provider for SQL Server Pin
Rob Graham25-Nov-06 4:54
Rob Graham25-Nov-06 4:54 
QuestionSetting values in a view Pin
Dayekh24-Nov-06 2:37
Dayekh24-Nov-06 2:37 
AnswerRe: Setting values in a view Pin
Pete O'Hanlon24-Nov-06 3:06
mvePete O'Hanlon24-Nov-06 3:06 
GeneralRe: Setting values in a view Pin
Dayekh24-Nov-06 3:23
Dayekh24-Nov-06 3:23 
Thanks man!

The View works. I modified the code so that it looks like this :

<br />
SELECT	dbo.vw_ProjectStage.vchProjectStage, dbo.tblRequest.inRequestID, dbo.tblRequest.vchRequestSummary, dbo.tblRequest.inTimeEstimate, <br />
        dbo.tblRequest.inOrder, dbo.tblRequest.dtCompletionDate, dbo.tlkpProgress.vchProgressName, dbo.tlkpImportance.vchImportanceName, <br />
        dbo.tblRequest.vchRequestNumber, dbo.tlkpRequestType.vchRequestTypeName, dbo.tlkpRequestType.inRequestTypeID,<br />
	COALESCE(dbo.tblRequest.inQuoteID, 0) AS "inQuoteID" <br />
<br />
FROM	dbo.tlkpProgress INNER JOIN<br />
        dbo.tblRequest ON dbo.tlkpProgress.inProgressID = dbo.tblRequest.inProgressID INNER JOIN<br />
        dbo.tlkpImportance ON dbo.tblRequest.inImportanceID = dbo.tlkpImportance.inImportanceID INNER JOIN<br />
        dbo.vw_ProjectStage ON dbo.tblRequest.inStageID = dbo.vw_ProjectStage.inStageID INNER JOIN<br />
        dbo.tlkpRequestType ON dbo.tblRequest.inRequestTypeID = dbo.tlkpRequestType.inRequestTypeID<br />

GeneralRe: Setting values in a view Pin
Pete O'Hanlon24-Nov-06 4:32
mvePete O'Hanlon24-Nov-06 4:32 
QuestionHow to manage roundtrips to SQL server ???? Pin
devboycpp23-Nov-06 23:28
devboycpp23-Nov-06 23:28 
AnswerRe: How to manage roundtrips to SQL server ???? Pin
Colin Angus Mackay24-Nov-06 0:08
Colin Angus Mackay24-Nov-06 0:08 
GeneralRe: How to manage roundtrips to SQL server ???? Pin
devboycpp24-Nov-06 8:46
devboycpp24-Nov-06 8:46 
GeneralRe: How to manage roundtrips to SQL server ???? Pin
Colin Angus Mackay24-Nov-06 9:08
Colin Angus Mackay24-Nov-06 9:08 
QuestionHow to make VS auto-generated Data Sets into internal classes Pin
Andrew_Thomas23-Nov-06 22:05
Andrew_Thomas23-Nov-06 22:05 
QuestionTransaction failures Pin
cathy_d'souza23-Nov-06 19:55
cathy_d'souza23-Nov-06 19:55 
AnswerRe: Transaction failures Pin
Colin Angus Mackay24-Nov-06 0:18
Colin Angus Mackay24-Nov-06 0:18 
GeneralRe: Transaction failures Pin
cathy_d'souza24-Nov-06 0:25
cathy_d'souza24-Nov-06 0:25 
GeneralRe: Transaction failures Pin
Colin Angus Mackay24-Nov-06 0:52
Colin Angus Mackay24-Nov-06 0:52 
QuestionProblem with distributed transaction Pin
MasudM23-Nov-06 6:29
MasudM23-Nov-06 6:29 
AnswerRe: Problem with distributed transaction Pin
Pete O'Hanlon24-Nov-06 2:18
mvePete O'Hanlon24-Nov-06 2:18 
GeneralRe: Problem with distributed transaction Pin
MasudM24-Nov-06 3:12
MasudM24-Nov-06 3:12 
QuestionDelete Pin
aaraaayen23-Nov-06 0:34
aaraaayen23-Nov-06 0:34 
AnswerRe: Delete Pin
Pete O'Hanlon23-Nov-06 1:40
mvePete O'Hanlon23-Nov-06 1:40 
GeneralRe: Delete Pin
Russell Jones23-Nov-06 4:42
Russell Jones23-Nov-06 4:42 
GeneralRe: Delete Pin
i.j.russell24-Nov-06 9:35
i.j.russell24-Nov-06 9:35 

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.