Viewing 15 posts - 1 through 15 (of 23 total)
I also assumed that he was using BIDS as well but turns out that might not be the case. What he needed to achieve can be done very easily...
October 29, 2010 at 7:12 am
Paul - I never worked with SSRS 2005 and don't have it installed so I am afraid I can't help you further. Did you give any thought to doing...
October 22, 2010 at 7:03 am
Paul -
For your first question, the easiest way is to set a default value for your date parameter. Set it so that the default value pulls from a query....
October 21, 2010 at 7:29 pm
I think that this is best handled in your query but if you must do it in RS, there is indeed a solution. I didn't think it was possible...
October 20, 2010 at 8:27 am
Here's another way using row_number/partitioning
DECLARE @tDUMMY TABLE (
StartDate DATE,
Activity VARCHAR(100),
CategoryID INT
);
INSERT INTO @tDUMMY
SELECT CONVERT(DATE, '1876-01-01'), 'Action in 1876', 1 UNION ALL
SELECT CONVERT(DATE, '1945-01-01'), 'Action...
October 15, 2010 at 7:02 pm
jcrawf02 (10/8/2010)
VinceV (10/8/2010)
Thanks jcrawf02. I bookmarked the link. Will look through the 6K or so suggestions when I find some time!
Filter on Active suggestions (left hand side) and...
October 8, 2010 at 9:01 am
Thanks jcrawf02. I bookmarked the link. Will look through the 6K or so suggestions when I find some time!
October 8, 2010 at 7:44 am
Indeed. Fairness is key. Unfortunately, many businesses do not put that principle to practice.
October 8, 2010 at 7:42 am
I think that any opinion that are well-formed and rational deserves to be heard and discussed, no matter how controversial. As long as it was not intended to be...
October 8, 2010 at 7:06 am
Luke - I am relatively new to Microsoft technologies still feel kinda lost navigating their forums and sites but I will take a look to see if anyone has requested...
October 7, 2010 at 9:16 am
I hope that one day SSRS would come with a string aggregation feature where the SUM() function would work on strings as well as numeric values. The result would...
October 7, 2010 at 8:04 am
A couple of people mentioned using Join to solve the problem on the GUI side but I'd be curious to know how to implement it. I had this problem...
October 6, 2010 at 8:42 pm
Your second main query should work but you had a parenthesis in the wrong place. Here's the corrected version:
SELECT servername, dbname, CollectionDateTime, datafileinmbs, logfileinmbs, databaseinmbs
FROM temp2
WHERE (CollectionDateTime BETWEEN...
October 5, 2010 at 11:23 am
Abs-225476 (9/30/2010)
Like Veeren4urs said you need to have a dataset which will provide a pick list for the parameters, something like :
select distinct country_name from customers
union all
select 'ALL'
Then...
October 1, 2010 at 8:33 am
Someone mentioned that the author probably should have broken the article into a series. I agree. It would certainly make the material more digestable (if that's a word)....
October 1, 2010 at 6:54 am
Viewing 15 posts - 1 through 15 (of 23 total)