|
When do we use client side reporting and when do we use server side reporting?
Which reporting is best practice (client/server)?
This pertains to SSRS reporting.
Started by jazzrai on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Client side reporting you'd use if you've got something like a winforms client that you on the client side which you need to....
Side reporting you'd use in the scenario where you either need to simplify the report distributionWell...
|
|
When using error_reporting() or ini_set('error_reporting') in my scripts, are there any functionality differences between the two? Is one method preferred over the other?
For what it's worth, I see many frameworks using error_reporting() , but both options...
Started by Jeff on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
From the examples section on PHP's Manual Entry for error_reporting() :
// Same as error_reporting(E_ALL); ini_set('error_reporting', E_ALL);
The only small functional difference seems to be that ini_set returns false when....
To set.
|
|
Like we have Crystal Report for MS.NET ,what are the different Cross platform reporting tool available for mono.net , please list out their names and URLs?
Started by sameer on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It's not free, but its very cheap and you get full .
We currently use FlexCel.Net for reporting.
|
Ask your Facebook Friends
|
I'm working on a solution to create reports in a web application but don't have the budget or personnel to manage a SQL Server Reporting Services install. What alternatives do I have, given these constraints?
I'm using ASP.NET 3.5 on SQL Server 2005.
Started by Caveatrob on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Crystal Reports/justinsaraceno/Main....
Other options then include looking at other reporting packages out there.
/2009/03/23/using-sql-server-reporting-services-in-client-mode/
Something to note is his example uses the reports.
|
|
I would like to use SQL Reporting Services 2008 to generate my reports, but I want to use my own UI for specifying the report type, columns, parameters and everything. I want to be able to take these criteria, and then kick off an asynchronous request...
Started by skb on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
No matter what tool you use for the SQL -- it can be inline SQL in the ....
Like Crystal Reports, ActiveReports and other report generators, SSRS has two basic elements behind each report: the SQL query and the report layout.
|
|
I am using PHP.
Could anyone explain differences between error_reporting(E_ALL) and error_reporting(E_ALL & ~E_NOTICE)?
I noticed that when I change from E_ALL to E_ALL & ~E_NOTICE, an error which I was hacking, disappears.
Regards.
Started by shin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
A look in the manual would give much.
You are advice during development to set the error reporting to E_ALL and fix all the notice errors.
reporting(E_ALL ^ E_NOTICE); to report everything except notice.
|
|
Can any one tell me from crystal report and SSRS (Sql Server Reporting Service) which one is better to use?
Started by RBS on
, 19 posts
by 19 people.
Answer Snippets (Read the full thread at stackoverflow):
It is a better environment, but best of all the connections (data sources) are separate... .
DesigningReporting Services is much better in my experience.
EDIT2: SSRS really fails to meet my reporting needs.
Is geared toward report designers.
|
|
Is it possible to perform a web service call inside a reporting services report? (i.e. use a WS call for a data source)
Started by Jeff on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
They have recently upgraded both....
The ERP-system is built on SQL Server and ASP.NET and are using SSRS for its reporting.
I'm using that for feeding Reporting Services with data from a Web Service based ERP-system.
Connect to a web service.
|
|
I have a 2008 reporting services server installed on windows 2003 server. I am trying to allow anonymous access to the report builder folder so that my users do not have to select the remember password option when they login, if they are wanting to use...
Started by ilivewithian on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Authentication methods for Reporting Services in 2008 are all handled by a file called for report builder but seems like Report Server 2008 (access to reports stored on Report Server) does.
|
|
I am pretty sure I cannot, but I would just like to double check - can I use data in a query in the Page Header of a Reporting Services report?
Thanks!
Started by Dan Appleyard on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Not great....
If you create a hidden report parameter that is loaded) in the report Header/Footer.
I think this answers my question for me:
SQL Server Reporting Services: Report Header cannot show can do, although it's long winded.
|