Viewing 15 posts - 76 through 90 (of 107 total)
November 29, 2017 at 12:22 pm
November 29, 2017 at 12:20 pm
Thanks everyone, for all of your feedback. 🙂
July 30, 2014 at 2:21 pm
Thanks, Ron and Dan for your valuable feedback. 🙂
July 16, 2014 at 2:41 pm
Thanks, Ron. I happen to have th SQL Server Management Studio R2 2008 installed which I obtained via the MS Alliance with Universities, as I'm in school. I'm wondering how...
July 16, 2014 at 10:34 am
Thanks, Ron and Dan. I happen to have th SQL Server Management Studio R2 2008 installed which I obtained via the MS Alliance with Universities, as I'm in school. I'm...
July 16, 2014 at 10:26 am
Hi Ron,
Thanks again for the input. By the MS stack, are you referring to the MS SSIS/SSAS/SSRS tools? If so, would the Express Edition suffice for learning?
July 15, 2014 at 1:53 pm
Thanks, Ron. Are there any data warehousing tools you can suggest I can look into? I agree with what you're saying and I'd like to familiarize myself with such...
July 10, 2014 at 7:14 am
Thanks, Dan. Unfortunately my current position doesn't afford me the opportunity to do the things you've mentioned, but my previous position did. I will definitely look into the...
July 10, 2014 at 7:10 am
Thanks for all the helpful input, everyone. 🙂
April 23, 2014 at 2:17 pm
Thanks, LutzM. That did the trick. 🙂
April 23, 2014 at 7:09 am
Hi Sean,
This is the query:
SELECT ISNULL(ath_stlmnt_instr_id, ae.stlmnt_line_instr_id) AS ath_instr_id
,ath_instr_id AS orig_instr_id
,ath_gl_num
,ath_cost_cntr
,CASE
WHEN ath_postype = 'GLD'
THEN sum(ath_usdamt)
WHEN ath_postype = 'GLC'
THEN sum(ath_usdamt) * - 1
END AS ath_usdamt
,count(*)
FROM dbo.ACCTING_TRANSACTION_HISTORY
left join Accting_body ae on...
April 16, 2014 at 10:21 am
Hi Chris and everyone,
Thanks for the suggestion. However from what has been posted here earlier, the fields in both Group By sections need to match. I tried it, nonetheless, and...
April 16, 2014 at 10:04 am
Hi Sean and everyone,
Thanks for your input. So I tried the following per your suggstion:
SELECT ISNULL(ath_stlmnt_instr_id, ae.stlmnt_line_instr_id) AS ath_instr_id
,ath_instr_id AS orig_instr_id
,ath_gl_num
,ath_cost_cntr
,CASE
WHEN ath_postype = 'GLD'
THEN sum(ath_usdamt)
WHEN ath_postype = 'GLC'
THEN sum(ath_usdamt)...
April 16, 2014 at 7:55 am
Thanks for your input, all. So, I tried using the Group By and Order By at the end of the query, but now it's returning a "Column 'dbo.ACCTING_TRANSACTION_HISTORY.ath_stlmnt_instr_id' is invalid...
April 15, 2014 at 11:33 am
Viewing 15 posts - 76 through 90 (of 107 total)