Enterprise Reporting Solutions [closed]

I’ve used Cognos Series 7, Cognos Series 8, Crystal Reports, Business Objects XI R2 WebIntelligence, Reporting Services 2000, Reporting Services 2005, and Reporting Services 2008. Here’s my feedback on what I’ve learned: Reporting Services 2008/2005/2000 PROS Cost: Cheapest enterprise business intelligence solution if you are using MS SQL Server as a back-end. You also have … Read more

Left Outer Join Not Working?

You should move the constraints on prescriptions.filldate into the ON condition of the join, and remove it from the where clause: LEFT OUTER JOIN prescriptions ON prescriber.dea_no = prescriptions.dea_no AND prescriptions.filldate >= ’09-01-12′ AND prescriptions.filldate <= ’09-17-12′ Otherwise, entries for which there are no prescriptions end up with nulls in prescriptions.filldate, and the WHERE clause … Read more

Best ASP.NET reporting engine with custom reports creation ability [closed]

I’ve worked with all the major reporting tools and each has their plusses and minuses. About the only “plus” on SQL Report Services side is that there’s no additional $$ expenditure above the SQL Server license. The downside is that the report designer is probably the most child-like of all. Crystal has been around forever, … Read more

Find first and last day for previous calendar month in SQL Server Reporting Services (VB.Net)

Randall, here are the VB expressions I found to work in SSRS to obtain the first and last days of any month, using the current month as a reference: First day of last month: =dateadd(“m”,-1,dateserial(year(Today),month(Today),1)) First day of this month: =dateadd(“m”,0,dateserial(year(Today),month(Today),1)) First day of next month: =dateadd(“m”,1,dateserial(year(Today),month(Today),1)) Last day of last month: =dateadd(“m”,0,dateserial(year(Today),month(Today),0)) Last day … Read more

SSRS How to repeat the table header on each page in print preview

To repeat rows with column headings for a table with row groups In Design view, select the table. The Grouping pane displays the row groups. On right side of the Grouping pane, click the down arrow, and then click Advanced. The Grouping pane displays static and dynamic tablix members for each group. You can only … Read more

Telerik Reporting over SSRS?

SSRS is a server-based reporting system whereas Telerik Reporting is purely an embedded reporting tool. You should compare Telerik Reporting to SSRS ReportViewer control in local processing mode, not the whole SSRS system, unless you intend to use the SSRS server too. I think this is the first question to answer: you should evaluate the … Read more