vote up 11 vote down star
6

Every project invariably needs some type of reporting functionality. From a foreach loop in your language of choice to a full blow BI platform.

To get the job done what tools, widgets, platforms has the group used with success, frustration and failure?

flag

75% accept rate

16 Answers

vote up 19 vote down check

For knocking out fairly "run of the mill" reports, SQL Reporting Services is really quite impressive.

For complicated analysis, loading the data (maybe pre-aggregated) into an Excel Pivot table is usually adequate for most users.

I've found you can spend a lot of time (and money) building a comprehensive "ad-hoc" reporting suite and after the first month or two of "wow factor", 99% of the reports generated will be the same report with minor differences in a fixed set of parameters.

Don't accept when a user says they want "ad-hoc" reports without specifying what goals and targets their looking for. They are just fishing and they need to actually spend as much time on THINKING about THEIR reporting requirements as YOU would have to spend BUILDING their solution.

I've spent too much time building the "the system that can report everything" and for it to become out of date or out of favour before it was finished. Much better to get the quick wins out of the way as quick as possible and then spend time "systemising" the most important reports.

link|flag
Absolute, if the "client" says they want ad-hoc, this is generally code for them saying, "we haven't spent any time thinking about it". This goes for everything. – Matthew Watson Sep 20 '08 at 11:14
2  
alternatively ad-hoc = we are fed up with having to put in a request to IT every time we want a small change making to the report, or want to see the data in a different order/filtered/format You could always take a look at Report Builder (part of Reporting Services 2005 or higher) – adolf garlic Apr 17 at 14:21
vote up 3 vote down

For a lot of projects we use ActiveReports.

link|flag
vote up 2 vote down

If you have all the money in the world, go with Cognos. They provide a data cube that essentially makes the reporting "developer free" and the end user can create reports, dashboards, anything they like.

For the "common man", I've grown quite fond of the ComponentOne reports for .NET library/tools. It has a similar feel to Crystal Reports, but has a very friendly XML format that you and edit under the hood and none of the headaches with versioning, keys, and other items that I've had to deal with when making simple updates to either the report or the underlying version.

link|flag
vote up 7 vote down

For most reports we use BIRT.

link|flag
vote up 1 vote down

For simple reports I use the standard ReportViewer included in Visual Studio.

For more complicated reports and ones that require more performance I've used both Report Sharp Shooter and devExpress XtraReports. Surprisingly, in both products creating tables isn't as easy as it should but both are faster than ReportViewer and handle extremely well multi-column reports, barcodes and aggregate data.

link|flag
vote up 2 vote down

I don't really have much SSAS work to do but I've been quite taken with this:

Cube Browser for ASP.net

It offers many of the capabilities of an excel pivot table in a web app, (thought I'm not enough of an expert on Excel to really know the whole of the pivot table's capabilities - it at least looks comparable to visual studio's cube browser).

Unfortunately the demos don't seem to be online anymore :(

link|flag
The cube browser handles bigger data but otherwise they are similar. – Peter Wone Oct 6 '08 at 21:16
You can also use Office Web Components in Sharepoint to connect to a cube, this also allows 'export to excel' functionality. You can even have it drive a pivot chart on the same page and vice versa – adolf garlic Apr 17 at 14:18
vote up 2 vote down

I would have to agree, I really like SQL Server Reporting Services. It just does stuff, and does it easily.

link|flag
vote up 3 vote down

I am a committer on the BIRT project, so I am biased. BIRT provides a very well thought out report object model (ROM) and appropriate API for the various design and deploy function that is needed. In addition, BIRT provides the best multi-language support and the ability to separate development from design through the use of CSS.

BIRT can be embedded into your application for no license cost through the REAPI or it can be purchased through a couple of commercial offerings.

link|flag
vote up 2 vote down

Crystal Reports, because it is easy to take the same exact report file and

1 - Post it on the intranet

2 - Embed it in an application

3 - Schedule it to be emailed as an Excel output every so often to whoever needs it

Also (as I already suggested), it exports easily to Excel, PDF, and other formats.

link|flag
As much as I despise Crystal Reports we still use it ... it comes with Visual Studio and often times our customers can easily create their own reports. – mattruma Sep 20 '08 at 11:12
2  
Oftentimes your customers can't run anybody's reports because some new application brought a different version and if there's anything CR doesn't like it's other versions of CR. It's called "crystal" because it's fragile and expensive. – Peter Wone Oct 6 '08 at 21:15
+1 to Peter's comment – Martín Marconcini Nov 11 '08 at 18:10
Requires a bespoke client to view reports in Crystal format and costs an absolute bomb. It is also horrible to make changes to reports - ask any Crystal developer – adolf garlic Apr 17 at 14:19
vote up 4 vote down

I've used Reporting Services and Crystal fairly extensively, and I'm writing a few reports using Excel(ick) at the moment.

Reporting Services is pretty good for simple reports but as soon as you need total control over formatting,complex formulas and charts etc. Crystal is a long way ahead. I also find Crystal to be far more usable; being able to change things within the report preview is invaluable (it may be possible in later versions of RS?).

RS also needs to be deployed to a web server which limits it's usefulness if you are writing applications that need to be deployed externally.

Older versions of Crystal were very buggy but the latest ones are much better, it's much more mature than Reporting Services.

link|flag
1  
SSRS does NOT require a web server. The renderer can be directly hosted in the ReportViewer widget supplied with Visual Studio in the last two releases. CR is so far ahead that SELECT COUNT(*) FROM FOO WHERE 1=0 incorrectly returns a value of 1. – Peter Wone Oct 6 '08 at 21:10
1  
Crystal costs an absolute fortune! Thousands of dollars in licensing, whereas you've probably got a sql box somewhere anyway which minimises the cost to practically nothing – adolf garlic Apr 17 at 14:16
vote up 3 vote down

Cognos is a robust suite of tools (we use it as a front-end for an Oracle back-end), but there's a pronounced lack of documentation on how to accomplish complex reporting tasks -- mostly, you end up banging on it until you get something to work.

I wouldn't discount the usefulness of using Microsoft Access as a reporting front-end. It doesn't have that useful Web-enabled functionality, but for in-house reports it's very versatile and surprisingly powerful.

link|flag
1  
And how much does cognos cost? – adolf garlic Apr 17 at 14:17
vote up 1 vote down

We use Cognos, it's a fairly complex system, but very powerful.

link|flag
vote up 3 vote down

We use i-net Crystal-Clear for our reporting.

  • It is like Crystal Reports,
  • can read the Crystal Reports files,
  • the API is more useful,
  • cost fewer as Crystal Reports,
  • is platform independent because written in Java.
link|flag
vote up 2 vote down

We've been using BIRT which had a steep learning curve for me until I realized how many WYSIWIG features it had (I started editing the xml source code direct, which I don't recommend.) There are some output specific tricks (like using a 0 left margin to not get a blank A column when outputting to XLS format) but for the most part it's quick and easy to use, edit and preview.

I have also been impressed on how easy it is to intermix different datasets in a single report. While not a silver bullet, its a better all around tool than 99.999% of people are going to build on their own.

link|flag
vote up 1 vote down

i have a small reporting set, made in 2 months:

at least 10 times faster than crystal reports;

easy editing;

.net formula;

easy usage;

small code usage;

serialization and deserialization(fast and small);

extreme security;

multi threaded;

no errors;

link|flag
It is open source? – Eduardo Molteni Oct 2 at 13:34
it is not shared in any public website. but i can give it to you. it is part of my application framework(Authentication, Database, Security, Etc). – behrooz Oct 3 at 17:08
vote up 1 vote down

We had used MS Reporting Services, but we was completely unhappy with it. Reasons:

  • it is needed to make difficult configuration of server
  • it is not possible to embed report editor into our app without buying SQL server license for every user
  • it is possible only to use embedded report parameters input form UI or send them from app, but not to create parameters UI by report designer

Now we a using Stimulsoft Reports. It have no such limitations like MS Reporting Services, and we and your users are happy with it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.