Viewing 15 posts - 31 through 45 (of 54 total)
Hi JonFox,
Thanks for the detailed explanation...will try to digest it and probably I'll modify the query.
November 29, 2011 at 8:26 pm
Usman Butt (11/28/2011)
November 29, 2011 at 1:29 am
Hi Usman Butt,
The output for the table is exactly the second table shown in my first post. Yes, I want to see the concatenation only for the leaf level childs.
Thanks.
November 28, 2011 at 11:06 pm
Hi JonFox,
I attach the full query (.txt) and execution plan (.sqlplan) here. Thanks.
November 28, 2011 at 7:58 am
Hi JonFox,
What do you mean by the 'actual execution plan for the long running query'? Are you referring to the whole actual sql script that I'm executing?
* Please do not...
November 24, 2011 at 10:56 pm
Hi JonFox and other SQL Gurus,
After I had done some serious testing on recursive CTE, I found out that my report performance is quite bad when I switch from one...
November 24, 2011 at 7:58 am
I am not using SSIS or SSRS either. I am using a BI tool from Infor...not sure you guys have heard of that before. Currently, all my reports are generated...
November 17, 2011 at 8:00 am
Hi JonFox,
Thanks for the detailed reply...really appreciate it. This is not a homework question. I am currently working in a BI project and users want to drill a report to...
November 16, 2011 at 7:53 pm
Hi Lowell,
Join the table might be an option but the joined results shown by you is not quite correct.
--Results--
organization account interco currency amount organization account interco currency amount
------------ ------- -------...
October 4, 2011 at 9:23 pm
Florian Reischl (9/11/2011)
yingchai (9/11/2011)
It does not update the currency in the CURRENCY column from foreign currency to local currency sign.
Huh? ColdCoffee's is correct in my opinion. The result returns all...
September 11, 2011 at 8:19 pm
ColdCoffee (9/11/2011)
SELECT * , NEWRATE = t1.AMOUNT * t2.VALUE
from [Fact table] t1
inner join [Exchange Rate table] t2
on t1.CURRENCY = t2.FOREIGN_CURR
...
September 11, 2011 at 9:17 am
dogramone (9/8/2011)
September 8, 2011 at 3:00 am
Thanks alot opc.three. Appreciate it!
June 7, 2011 at 7:55 pm
Hi sivaj2k and LutzM,
Thanks for the different solution...had tested and both works like a charm...now i know which part had gone wrong.
May 24, 2011 at 7:45 am
Phil Parkin (4/17/2010)
Add a derived column which converts NULLs to "No_Product_Line" and leaves non-NULL data as...
April 17, 2010 at 8:21 am
Viewing 15 posts - 31 through 45 (of 54 total)