Viewing 15 posts - 61 through 75 (of 200 total)
Has the report's data source been updated? I would assume if the DB isn't where it used to be that will need to be done. Also, does the report user...
March 10, 2017 at 5:36 pm
I would use a NOT EXISTS to exclude the records with a type 2, and then UNION that to a query that only picks up type 2, like this:
March 8, 2017 at 4:44 pm
I don't know about videos, but the Stairway to SSRS on this site is a nice introduction.
March 3, 2017 at 12:56 pm
In your screen shot it looks like the report that came up blank in SSRS was for "1 Day Fishing - All Species" licenses. Are you sure there is data...
March 2, 2017 at 5:39 pm
Just to toss it out there, you could potentially also use PARSENAME here:SELECT PARSENAME(MachineNAme, 3)
FROM dbo.Failed
WHERE PARSENAME(MachineNAme, 3) IS NOT NULL
February 21, 2017 at 1:11 pm
In my limited experience, I have found reports with subreports are poor performers in general. First make sure the subreport queries are fast and returning no more fields than they...
February 21, 2017 at 12:43 pm
You might be able to achieve it using report items, which allows you to refer to the value in calculated report boxes. The format for your expression would be something...
February 21, 2017 at 12:30 pm
As a complete aside, here's a tip I learned from Kendra Little. These two commands from Steve's script:SET STATISTICS IO ON;
SET STATISTICS TIME ON;
Can be...
February 20, 2017 at 12:55 pm
Are you able to run the report in SSRS, or does it always ask you for credentials? In setting up the custom data source, did you check the Use Windows...
February 15, 2017 at 12:01 pm
It sounds like there's a one-to-many relationship between customer and codes. What do you get if you add a DISTINCT to your counts, like count(DISTINCT o.OrderID) ?
February 15, 2017 at 11:51 am
If you have the enterprise edition of SSRS, you can do it with a data-driven subscription: https://msdn.microsoft.com/en-us/library/ms159150.aspx
Part of the setup allows for a conditional query, where the subscription...
February 14, 2017 at 11:10 am
In Piet's code, try replacing the last line:WHERE rn = 1
[p][/p]
with something like this, using Modulo:WHERE rn % 10 = 0
January 13, 2017 at 2:03 pm
You can define the interval for each axis in the Axis Properties. Click on an axis and it should draw a box around the values. Now right click...
January 10, 2017 at 1:52 pm
On the SQL tab they are usually sorted by the ones that took the longest/had the most Waits associated. I start there.
December 22, 2016 at 3:15 pm
Viewing 15 posts - 61 through 75 (of 200 total)