Viewing 15 posts - 631 through 645 (of 1,193 total)
It's only duplicated if the rowversion column is included in the column list of the select into statement.
Don't do that, and your values will stay unique.
Cheers
January 15, 2013 at 4:20 am
Don't know of a way to do it like that, but you could write a query on the Catalog table in your ReportServer database to get the information, perhaps create...
January 15, 2013 at 3:58 am
Koen Verbeeck (1/8/2013)
I spend 5 minutes looking for a mistake, only to finally decide there wasn't one, all joins seemed legit. I...
January 9, 2013 at 3:33 am
You can use an expression to give different values for the interval based on the parameter value:
=iif(Parameters!Parm1.Value = 10, 1, 50)
(if the parameter's value is 10, this sets the interval...
January 7, 2013 at 3:37 am
There's an Interval option on the Axis Options page of the Axis properties.
January 3, 2013 at 7:34 am
It sounds like you're hitting the double-hop problem, see if this link is any good to you:
Cheers
Gaz
January 3, 2013 at 7:08 am
MG-148046 (12/27/2012)
You could use the stucture available in SQLPS. Set your location to SQLSERVER:\SQLRegistration\Database Engine Server Group\<your group name>
Nice, didn't know about that location! Certainly easier than parsing the XML...
January 2, 2013 at 4:50 am
The data wasn't wrong, what's wrong is the assumption that the data would be ordered when no order was specified.
That whole blog post could be rewritten into a fairly good...
December 20, 2012 at 5:48 am
Does this do it?
=Sum(iif(ReportItems!Test.Value = "Pass", 1, 0))
Cheers
Gaz
December 17, 2012 at 7:16 am
I forget exactly how SSRS 2005 passes in Multivalued parameters to the query, so this might not work, but one method could be
Use a delimiter function e.g. Jeff's one here:...
December 17, 2012 at 6:58 am
Or create yourself a Local Server Group in the Registered Servers tab in SSMS, this allows you to run multi-server queries in one window.
December 14, 2012 at 3:34 am
No problem, happy to hear it's sorted.
Cheers
Gaz
December 14, 2012 at 3:12 am
Viewing 15 posts - 631 through 645 (of 1,193 total)