Viewing 15 posts - 631 through 645 (of 2,278 total)
You might want to consider SSRS Security extensions. I see them mentioned in your article link.
A lot of people in this situation also use ASP.Net as the external...
March 12, 2012 at 7:23 am
I think if you add a column to your dataset of Calls * AvgTalkTime you should be able to work out the rest of the formula in SSRS.
March 12, 2012 at 7:19 am
Cut, as in cut and paste.
Cut or delete the data from the text box of the outer group, and paste it in the outer group row level immediately above the...
March 12, 2012 at 7:15 am
The catalog table would probably get you there, but you will have to do a fair amount of XML shredding.
March 9, 2012 at 2:48 pm
I am not totally clear on your table or column structure, but here is a stab at it
SELECT A.BLDGCODE, B.BLDGDESC, A.USABLE
...
March 9, 2012 at 2:45 pm
Make your query a stored procedure.
March 9, 2012 at 2:34 pm
Calvo's suggestion should work.
Switch does not have a functional ELSE, it is always boolean expression, value, boolean expression, value, boolean expression, value and so on. The switch statement will...
March 9, 2012 at 11:44 am
It looks like you are trying to separate the leading number from the rest of the data. If so, try this.
SUBSTRING( YourFieldDataHere, 2, FINDSTRING( YourFieldDateHere, ")", 1) -2)
March 9, 2012 at 11:36 am
Just do a COUNT of one of the values that is on every row, and that will tell you how many rows are on the report.
March 8, 2012 at 2:56 pm
The SSIS built in SCD transormation is not very good. I actually had a developer on the SSIS team tell me to never use it. You would be...
March 8, 2012 at 7:55 am
There are 2 places you can look.
First would be the ExecutionLog view in the reporting services database.
The second, and I find generally more helpful, is to review the trace files....
March 8, 2012 at 7:52 am
Viewing 15 posts - 631 through 645 (of 2,278 total)