Viewing 15 posts - 2,191 through 2,205 (of 11,678 total)
Lynn Pettis (7/31/2014)
Lynn Pettis (7/31/2014)
SQLRNNR (7/30/2014)
Lynn Pettis (7/30/2014)
Really?? Let's put a 500 million row table into an in-memory table.
It could work - depending on what the data is in that...
July 31, 2014 at 6:31 am
Lynn Pettis (7/30/2014)
Really?? Let's put a 500 million row table into an in-memory table.
I'd rather use a clustered columnstore index.
July 31, 2014 at 6:22 am
prashant_kr (7/31/2014)
This is the BIRT blog, there they mentioned about BIRT,not the comparison between these two.
Did you read the blog post I linked to?
Of course, there are also some differences...
July 31, 2014 at 5:52 am
prashant_kr (7/31/2014)
But we need technical features comparison and also BIRT is the Open source so cost is also a factor.
Here's one blog post:
http://rpbouman.blogspot.be/2005/12/reporting-for-masses-eclipsebirt.html
The more I read about BIRT, the more...
July 31, 2014 at 5:36 am
prashant_kr (7/31/2014)
But we need technical features comparison and also BIRT is the Open source so cost is also a factor.
Contact a sales rep from BIRT (if they even have one)...
July 31, 2014 at 5:31 am
prashant_kr (7/31/2014)
July 31, 2014 at 5:25 am
prashant_kr (7/31/2014)
Yes we have .We created some reports over there.
Then why take on a new product with its own toolset and learning curve?
Unless you have some exotic requirements for your...
July 31, 2014 at 5:17 am
The easiest option would just to do a drill through to the same report and passing the parameters along.
Any workaround would be considerably more complex.
July 31, 2014 at 5:16 am
Hard to say without knowing the requirements.
Do you already have SQL Server at your company?
July 31, 2014 at 5:05 am
Eirikur Eiriksson (7/31/2014)
😎
select * from (
select
[MediaName]
,[Spend]
,[ClientName]
,[BookingYear]
, ROW_NUMBER() OVER(ORDER BY [Spend] DESC) As Row
from(
select
lhe.LHECRELongDesc as [MediaName]
,cast(sum(spo.SPODiscountedCost) as money) as...
July 31, 2014 at 1:46 am
sunil.mvs (7/31/2014)
Task A getting hanged ( Could not able to sort ...
July 31, 2014 at 1:13 am
July 31, 2014 at 12:59 am
Just one more thought: if task B takes less than 3 seconds, what's the point of having them run in parallel?
Just run task B before task A with a precedence...
July 31, 2014 at 12:51 am
Viewing 15 posts - 2,191 through 2,205 (of 11,678 total)