Click here to Skip to main content
15,888,521 members
Home / Discussions / Database
   

Database

 
GeneralRe: multiple threads Pin
Luc Pattyn16-May-10 5:41
sitebuilderLuc Pattyn16-May-10 5:41 
GeneralRe: multiple threads Pin
Eddy Vluggen16-May-10 6:06
professionalEddy Vluggen16-May-10 6:06 
AnswerRe: multiple threads Pin
Henry Minute17-May-10 3:19
Henry Minute17-May-10 3:19 
GeneralRe: multiple threads Pin
Luc Pattyn17-May-10 3:51
sitebuilderLuc Pattyn17-May-10 3:51 
GeneralRe: multiple threads Pin
Henry Minute17-May-10 5:03
Henry Minute17-May-10 5:03 
GeneralRe: multiple threads Pin
Luc Pattyn17-May-10 5:16
sitebuilderLuc Pattyn17-May-10 5:16 
QuestionSelf Join Table (Recursive Hierarchy) Pin
md_refay14-May-10 21:36
md_refay14-May-10 21:36 
AnswerRe: Self Join Table (Recursive Hierarchy) Pin
NavnathKale14-May-10 23:07
NavnathKale14-May-10 23:07 
with Account(AccountID)
As
(
	select AccountID from Accounts A where AccountID = #AcountNumber#
	union all
	select A.AccountID from Accounts A, Account B
	where  A.ParentAccountID = B.AccountID
)

SELECT sum(totaldebit) TotalDebit FROM Account, AccountsBalance where
Account.AccountID = AccountsBalance.AccountID


replace #AcountNumber# with your account number (probably use variable/parameter).

Hope this will help you Cool | :cool:
Questionmulti valued UDF in select statement + sql server 2005 Pin
abcurl14-May-10 2:59
abcurl14-May-10 2:59 
QuestionOracle replace functionality Pin
padmanabhan N13-May-10 17:33
padmanabhan N13-May-10 17:33 
AnswerRe: Oracle replace functionality Pin
CitrusTech13-May-10 21:36
CitrusTech13-May-10 21:36 
AnswerRe: Oracle replace functionality Pin
www.Developerof.NET15-May-10 9:37
www.Developerof.NET15-May-10 9:37 
Questionwriting a query to find table entries that have no records in related table Pin
Michael J. Eber13-May-10 10:34
Michael J. Eber13-May-10 10:34 
AnswerRe: writing a query to find table entries that have no records in related table Pin
Dr.Walt Fair, PE13-May-10 10:54
professionalDr.Walt Fair, PE13-May-10 10:54 
GeneralRe: writing a query to find table entries that have no records in related table Pin
Michael J. Eber13-May-10 11:19
Michael J. Eber13-May-10 11:19 
GeneralRe: writing a query to find table entries that have no records in related table Pin
Dr.Walt Fair, PE13-May-10 12:06
professionalDr.Walt Fair, PE13-May-10 12:06 
AnswerRe: writing a query to find table entries that have no records in related table Pin
PIEBALDconsult13-May-10 15:07
mvePIEBALDconsult13-May-10 15:07 
AnswerRe: writing a query to find table entries that have no records in related table Pin
CitrusTech13-May-10 20:44
CitrusTech13-May-10 20:44 
QuestionProblem with SET and SELECT (to assign a local variable) Pin
dlarkin7713-May-10 4:52
dlarkin7713-May-10 4:52 
AnswerRe: Problem with SET and SELECT (to assign a local variable) Pin
Corporal Agarn13-May-10 6:20
professionalCorporal Agarn13-May-10 6:20 
GeneralRe: Problem with SET and SELECT (to assign a local variable) Pin
dlarkin7713-May-10 6:22
dlarkin7713-May-10 6:22 
Questioncreate database, which parameter Pin
luccingolo13-May-10 2:52
luccingolo13-May-10 2:52 
AnswerRe: create database, which parameter Pin
Corporal Agarn13-May-10 4:09
professionalCorporal Agarn13-May-10 4:09 
GeneralRe: create database, which parameter Pin
luccingolo13-May-10 5:57
luccingolo13-May-10 5:57 
GeneralRe: create database, which parameter Pin
Corporal Agarn13-May-10 6:17
professionalCorporal Agarn13-May-10 6:17 

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.