Click here to Skip to main content
15,881,812 members
Home / Discussions / Database
   

Database

 
AnswerRe: How to Unlock a table in SQL Server 2005? Pin
PIEBALDconsult26-Nov-08 13:46
mvePIEBALDconsult26-Nov-08 13:46 
AnswerRe: How to Unlock a table in SQL Server 2005? Pin
Ashfield26-Nov-08 21:01
Ashfield26-Nov-08 21:01 
AnswerRe: How to Unlock a table in SQL Server 2005? Pin
Wendelius27-Nov-08 3:55
mentorWendelius27-Nov-08 3:55 
QuestionDYNAMIC SQL PROBLEM Pin
Mogaambo26-Nov-08 0:55
Mogaambo26-Nov-08 0:55 
AnswerRe: DYNAMIC SQL PROBLEM Pin
Umair Feroze26-Nov-08 3:24
Umair Feroze26-Nov-08 3:24 
AnswerRe: DYNAMIC SQL PROBLEM Pin
Ben Fair26-Nov-08 3:26
Ben Fair26-Nov-08 3:26 
QuestionUse if else statements to retrieve a certain column based on criteria and give it for display Pin
nit11525-Nov-08 11:30
nit11525-Nov-08 11:30 
AnswerRe: Use if else statements to retrieve a certain column based on criteria and give it for display Pin
Pete O'Hanlon25-Nov-08 12:22
mvePete O'Hanlon25-Nov-08 12:22 
Well, depending on whether or not your DBMS supports it, you could use the CASE statement to accomplish this, or you could use a COALESCE method,e.g.
SELECT COALESCE(AccountingDate, PendingDate, EntryDate) AS RuleDate ...
This assumes that one of these columns has a date value in it. Basically, coalesce falls through from one entry to the next until it finds a none-null value. BTW - I'm assuming that you got your logic a bit wrong in your statement and you mean Pending Date and not Finalized Date.

"WPF has many lovers. It's a veritable porn star!" - Josh Smith

My blog | My articles | MoXAML PowerToys



AnswerRe: Use if else statements to retrieve a certain column based on criteria and give it for display Pin
PIEBALDconsult26-Nov-08 13:49
mvePIEBALDconsult26-Nov-08 13:49 
QuestionDynamic sql Query Pin
shinboxe25-Nov-08 6:09
shinboxe25-Nov-08 6:09 
AnswerRe: Dynamic sql Query Pin
Ben Fair25-Nov-08 9:35
Ben Fair25-Nov-08 9:35 
GeneralRe: Dynamic sql Query Pin
shinboxe25-Nov-08 10:15
shinboxe25-Nov-08 10:15 
GeneralRe: Dynamic sql Query Pin
Ashfield25-Nov-08 21:17
Ashfield25-Nov-08 21:17 
GeneralRe: Dynamic sql Query Pin
Umair Feroze26-Nov-08 3:44
Umair Feroze26-Nov-08 3:44 
QuestionRe: Dynamic sql Query Pin
Ashfield26-Nov-08 8:36
Ashfield26-Nov-08 8:36 
AnswerRe: Dynamic sql Query Pin
shinboxe27-Nov-08 7:47
shinboxe27-Nov-08 7:47 
QuestionVista Home Premium - install SQL 2005 Express with Reporting Service? Pin
devvvy25-Nov-08 5:24
devvvy25-Nov-08 5:24 
AnswerRe: Vista Home Premium - install SQL 2005 Express with Reporting Service? Pin
Jerry Hammond25-Nov-08 18:19
Jerry Hammond25-Nov-08 18:19 
QuestionIs having an error handler in every single stored procedure excessive? Pin
emunews25-Nov-08 3:21
emunews25-Nov-08 3:21 
AnswerRe: Is having an error handler in every single stored procedure excessive? Pin
Ashfield25-Nov-08 5:21
Ashfield25-Nov-08 5:21 
GeneralRe: Is having an error handler in every single stored procedure excessive? Pin
emunews25-Nov-08 10:59
emunews25-Nov-08 10:59 
GeneralRe: Is having an error handler in every single stored procedure excessive? Pin
Ashfield25-Nov-08 21:08
Ashfield25-Nov-08 21:08 
GeneralRe: Is having an error handler in every single stored procedure excessive? Pin
emunews26-Nov-08 2:24
emunews26-Nov-08 2:24 
GeneralRe: Is having an error handler in every single stored procedure excessive? Pin
Ashfield26-Nov-08 8:42
Ashfield26-Nov-08 8:42 
GeneralRe: Is having an error handler in every single stored procedure excessive? Pin
emunews26-Nov-08 9:11
emunews26-Nov-08 9:11 

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.