New answers tagged reportingservices-2005
0
Try AsyncRendering="true" on the ReportViewer control.
With async rendering the generated HTML does not have two style tags – it uses a sytle tag for the height and all other styles are applied through a class attribute on the td element.
0
Linked Servers...Woot
Performance is a little slow but not terrible
0
You should be able to set a custom number formatting to scale them back. Set your custom formatting to 10,, should do it.
0
In your example, the problem is that no results are returned for grades that are not linked to any students. To solve this ideally there would be a table in your source system which listed all the possible values of "score" (e.g. A - F) and you would join this into your query such that at least one row was returned for each possible value.
If such a table ...
0
SELECT RS.RiskScoreId, RS.Description, SUM(DT.RiskCount) AS RiskCount
FROM (
SELECT RiskScoreId, 1 AS RiskCount
FROM People
UNION ALL
SELECT RiskScoreId, 0 AS RiskCount
FROM RiskScores
) DT
INNER JOIN RiskScores RS ON RS.RiskScoreId = DT.RiskScoreId
GROUP BY RS.RiskScoreId, RS.Description
ORDER BY RS.RiskScoreId
0
Try activating it through javascript:
="javascript:void(window.top.location.href='https://mysite.com?ID=" + CStr(Fields!ows_ID.Value) + "')"
0
No Thank you. Fixed myself
SELECT count(*) as NoofCalls, outside.ReferenceNo, outside.WorkflowType, outside.Department, inside.CompletedDate, outside.CommentResponse, outside.CommentText,
outside.CommentUserDisplayName, outside.StepName, outside.Originator, outside.Subject, outside.StartTime,
CAST(DATEDIFF(hh, ...
1
You might want to combine the two try-catch blocks:
ReportExecutionService rs = new ReportExecutionService();
rs.Credentials = System.Net.CredentialCache.DefaultCredentials;
rs.Url = "http://MyServer/ReportServer/ReportExecution2005.asmx";
arguments
byte[] result = null;
string reportPath = "/ReportLuiza/ReportContract";
string format = "PDF";
// Prepare ...
1
One solution would be to create a new App Pool with an account that has the rights to access your restricted resources and then assign your web application to it.
1
You could use a dynamic SQL expression (although these are generally deprecated due to considerations such as SQL injection), but given that the only difference between the two queries is the additional final condition, I suggest the following query instead:
SELECT wo.wonum, wo.worktype, wo.description wo_description, wo.targcompdate,
wo.assetnum, ...
0
My case: Load from localhost depending on product's code.
Image.Source= "http://LOCALHOST/IMG/" + Fields!CODE.value + ".jpg"
Problem: Sometimes file is uploaded with extension ".png"; so it's needed a FileExists validation.
Solution:
1)Add auxiliar table
PRODUCT_PHOTO_EXTENSION
id (FK references PRODUCT)
extension (varchar)
...
Top 50 recent answers are included


