|
I'm having trouble figuring this out.
I stopped ALL of local SQL Services, e.g. SQL Server, SQL Agent, Reporting Services. Then using Report Builder 2.0 to create a report connecting to a remote SQL Server (No SSRS running) out in the farm. When I click...
Started by Chenster on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You could....
When Reporting Services runs a report, it creates a data file of the data used in the report and, if nothing changes, it uses that data the next time the report runs instead of hitting the server again.
|
|
Ok I have a reportviewer that has worked perfectly up untill now, now all of a sudden it never gets past the "Report is being generated" message. The code up untill the Report.RefreshReport() is exactly and works just fine, it creates a DataSource for...
Started by Chiefy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If your calling code hasn't changed and your report hasn't changed, your data has been changed, so the report....
Try running the query that populates your report outside of the ReportViewer context ( say, in Management Studio ).
|
|
I am writing a script that will look in a custom reports directory, copy it to a working folder, along with the data files that it will look at, runs the report, zips the newly created files, and uploads them to another server.
The problem that I'm running...
Started by Dropped.on.Japan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Similar idea with Tynan's:
touch report_start ./run_report find $working_dir -type f $i | grep....
You should be able to do something like:
touch report_start ./run_report for i in `ls -Rt`; do echo of the results.
|
Ask your Facebook Friends
|
The first several times I run the report it prints OK but when I try to UnLoad the form that's running it I get 'Out of Stack Space' error 28 and the program terminates with that error.
The details point to to crystl32.ocx version 4.6.1.0 as the problem...
Started by David on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I can run the same report many times and keep them open but not 2 different reports
I'm not all that familiar with that version of the Crystal Report control, but does the control allocated for the printing of a ....
Though.
|
Best practice for running SQL Server reporting services. Should I run on the database or web server?
I am configuring a new environment to run several intranet web applications. I have 2 servers, one will be the SQL Server 2008 server, and the other will be the IIS server. I also need to install SQL Server Reporting Services. I am not sure whether it...
Started by BigJoe714 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When you run through setup using the Reporting Services Configuration Tool.
Hi,
I would run installer on your web server so that the web service components other web applications.
On the same machine as SQL.
|
|
I created a crystal report using test a DB. I run the report using .NET ReportDocument class. Everything works fine until I connect to the test DB.
When same report is pointed to UAT DB (all required DB objects are available in UAT too), I am getting ...
Started by Kaz on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can set up the report to accept a strongly-typed the report from dev->test->stage->production should be easy..
Using push reports should solve your issue.
|
|
I have a vb.net 2.0 winforms project that is full of all kinds of business reports (generated with Excel interop calls) that can be run "on-demand". Some of these reports filter through lots of data and take a long time to run - especially on our older...
Started by Jeffrey on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The server would then be able to run the report and email the file to the user the client add a record that represents a report request, including the necessary parameters which could of the report....
To the least busy server.
|
|
We are reluctant to move to Crystal Reports 2008. But it appears that that is the only way to get a version of Crystal that is compatible with Windows 7 running in the 64 bit mode. Does anyone know if SAP is going to retrofit CR XI R2 to run on Win 7 ...
Started by jkeehr on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
SAP has confirmed that they will not retrofit CR.
And has tool to export crystal report to stimulsoft.
|
|
I have a Crystal Reports 2008 report that has fields e.g Sector,Branch, Department and a bunch of other fields.The requirement is that the same report should be able to allow grouping by Sector,Branch or Department.I'm trying to avoid creating the same...
Started by Asa on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Visit this msdn link:
http://msdn.microsoft.com/en....
I consolidated a hundred or so different reports into about a dozen RPT files years ago using this technique.
Make the header a formula, then set the formula to one of these fields at runtime .
|
|
Using Crystal Reports I'm trying to display the running total of a database field in the header where all the labels are.
I've attempted to do this by placing the running total (RTversion) into a formula field with the following:
Shared stringvar CurrentVers...
Started by phill on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Something like:
//use WhileReadingRecords if the values can be gathered as the report pulls.
To capture.
|