Click here to Skip to main content
15,900,258 members
Home / Discussions / Database
   

Database

 
AnswerRe: Getting Database Names from Server Pin
Eddy Vluggen16-May-10 14:41
professionalEddy Vluggen16-May-10 14:41 
QuestionUsing access to find the most of records Pin
Dave McCool16-May-10 6:56
Dave McCool16-May-10 6:56 
AnswerRe: Using access to find the most of records Pin
riced16-May-10 8:29
riced16-May-10 8:29 
GeneralRe: Using access to find the most of records Pin
Luc Pattyn16-May-10 8:32
sitebuilderLuc Pattyn16-May-10 8:32 
GeneralRe: Using access to find the most of records Pin
Dave McCool24-Jun-10 5:01
Dave McCool24-Jun-10 5:01 
QuestionSQL COMPACT VERSION Pin
Pranay Rana15-May-10 17:45
professionalPranay Rana15-May-10 17:45 
AnswerRe: SQL COMPACT VERSION Pin
Andy_L_J15-May-10 18:44
Andy_L_J15-May-10 18:44 
AnswerRe: SQL COMPACT VERSION Pin
CitrusTech15-May-10 22:08
CitrusTech15-May-10 22:08 
Questionmultiple threads [modified] Pin
Jack_1815-May-10 15:39
Jack_1815-May-10 15:39 
AnswerRe: multiple threads Pin
loyal ginger15-May-10 17:24
loyal ginger15-May-10 17:24 
GeneralRe: multiple threads Pin
Jack_1816-May-10 1:47
Jack_1816-May-10 1:47 
GeneralRe: multiple threads Pin
loyal ginger16-May-10 14:48
loyal ginger16-May-10 14:48 
AnswerRe: multiple threads Pin
Luc Pattyn16-May-10 2:41
sitebuilderLuc Pattyn16-May-10 2:41 
GeneralRe: multiple threads Pin
Jack_1816-May-10 5:29
Jack_1816-May-10 5:29 
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 

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.