Viewing 15 posts - 1 through 15 (of 181 total)
In the file rsreportserver.config, at installation folder, correct the value for the <UrlRoot></UrlRoot> parameter.
November 5, 2009 at 6:07 pm
You don't have a default value for the parameter and it doesn't allow null.
October 28, 2009 at 7:57 pm
Sorry, I didn't see that FormatPercent function is wrong. This should work:
=iif(inscope("matrix1_gender") and inscope("matrix1_race"),
FormatPercent(sum(Fields!Cnt.Value)/Sum(Fields!Cnt.Value,"matrix1_gender")),2)
October 26, 2009 at 5:40 pm
In the Color property, you write the expression for the conditional format.
For example:
=iif(Fields!total.value < 0, "Red", "Black")
October 23, 2009 at 11:33 am
On the sum function you can specify the scope.
Try this to do the percentage over gender:
=iif(inscope("matrix1_gender") and inscope("matrix1_race"),
FormatPercent(sum(Fields!Cnt.Value)/Sum(Fields!Cnt.Value,"matrix1_gender"), "0.00%"),2)
October 23, 2009 at 10:58 am
Database ID doesn't change with a restore, unless you are dropping it before the restore. Try to do a RESTORE WITH REPLACE to overwrite the current database with the backup.
Also,...
October 23, 2009 at 10:47 am
That error is because your smtp server is not allowing relay, you can change that option on the mail server, but for security reasions it's recommended to be disabled.
Maybe...
October 23, 2009 at 10:29 am
Right-click on each field, go to Properties and uncheck the "Hide Duplicates" box.
February 21, 2008 at 10:30 am
You can use the ? : operator:
intFkRateGroupID == 8 ? decUnits : 0
for varchar (50), set the Data Type to String and Length to 50.
February 21, 2008 at 10:22 am
Try to reload the counters:
lodctr \\servername "c:\Program Files\Microsoft SQL Server\MSSQL\Binn\sqlctr.ini"
Also, make sure you have SP4 applied, it has this fix:
January 25, 2008 at 11:45 am
Unfortunately, you need the fact tables for the AS2005 cubes.
To migrate the cubes, you have two paths: create new cubes with BIDS or use the migration wizard.
If you use...
January 15, 2008 at 10:10 am
The name of the jobs are the GUID of the schedule on the table ReportSchedule on ReportServer database.
You can try a query like this to identify the job needed to...
January 15, 2008 at 9:57 am
It works fine, just make sure that the server has SMTP enabled.
January 9, 2008 at 10:23 am
This seems to be your problem: http://support.microsoft.com/default.aspx?scid=kb;en-us;291332
January 9, 2008 at 9:51 am
Go to Add/Remove programs in Control Panel, select Change on Microsoft SQL Server 2005. You can remove Reporting Services from there.
December 26, 2007 at 2:27 pm
Viewing 15 posts - 1 through 15 (of 181 total)