SSRS 2008 R2 Report - Sum Totals of a Filtered Group

I'm at a loss here, so any help will me much appreciated. I will do my best to explain, but if you need additional information, please let me know:
I have a very large dataset of patient data. Specifically for the numbers I need, I have a patient number field, a county field, a 1 or 0 for LastYear field, and a 1 or 0 for CurrentYear field.
Example:
PtNo    County  PY  CY
45676  Scott     0    1
45322  Cape     1     0
47686  North     0     1
The thing I am shooting for on my report is, "Volume growth in 3 counties (+20 cases)."
I created a group and grouped by County (group name County) and I included a group filter to only include "total cases of CY" are greater than "total cases of PY" to narrow my data to only counties that had a higher current year sum
than previous year sum.
Example:
County  PY    CY  Difference
Scott    141  143     2
Cape     90    98      8
North    78     88    10 
All is working well, except I don't need to see the Counties themselves, I just need the 3 counties and a difference of 20. 
I explored online and found tutorials that said to right click on the field and select "Add Total" but this total did not have my filter in it and gave me everyone. I also tried adding a row outside the group and used the RunningValue function
(i.e. RunningValue(Fields!FYTD_Current_Year.Value, Sum, "County"))  but it gave me a message that states "The Value expression for the text box 'Textbox456' has a scope parameter that is not valid for an aggregate function. The scope
parameter must be set to a string constant that is equal to either the name of a containing data region or the name of a dataset."
When I move the row with the RunningValue function inside the group, it runs but I get the same information repeated twice for each county with no final total.
So I am not sure how to go about getting my values I need for my report. Anybody know how to resolve this?
Thanks,
Cyndi
cpemtp1

Hi Cyndi,
Based on my understanding, you specify a filter condition in group properties. Then you want to sum the filtered values for each field.
In this scenario, we need to specify a filter condition on group level. If we use sum() function out of group, the expression will calculate the total values on dataset level instead of group level. So we can’t simply use expression to achieve this goal.
However, we can use custom code to record the filtered values for each field, then we can calculate the total based on these values. Please refer to the steps and screenshots below:
1. Add the custom code below into the report:
Public Shared Value1 as Integer=0
Public Shared Function GetValue1(Item as Integer) as Integer
value1= value1 + Item
return Item
End Function
Public Shared Function GetTotal1()
return value1
End Function
Public Shared Value2 as Integer=0
Public Shared Function GetValue2(Item as Integer) as Integer
value2= value2 + Item
return Item
End Function
Public Shared Function GetTotal2()
return value2
End Function
2. Design the tablix like below:
3. The result looks like below:
If you have any question, please feel free to ask.
Best regards,
Qiuyun Yu

Similar Messages

  • Ssrs 2008 r2 report dataset call a stored procedure

    I am modifying an existing SSRS 2008 r2 report. In a dataset that already exists within the ssrs 2008 r2 report I need execute
    a stored procedure called StudentData and pass 3 parameter values to the stored procedure. The stored procedure will then return 5 values that are now needed for the modified ssrs report. My problem is I do not know how to have the dataset call the stored procedure
    with the 3 parameter values and pass back the 5 different unique data values that I am looking for.
    The basic dataset is the following:
    SELECT  SchoolNumber,
            SchoolName,
            StudentNumber,      
     from [Trans].[dbo].[Student]
     order by SchoolNumber,
              SchoolName,
              StudentNumber
    I basically want to pass the 3 parameters of SchoolNumber, SchoolName, and StudentNumber to the
    stored procedure called StudentData from the data I obtain from the [Trans].[dbo].[Student]. The 3 parameter values will be obtained from the sql listed above.
    The  columns that I need from the stored procedure called  StudentData will return the following data columns
    that I need for the report: StudnentName, StudentAddress, Studentbirthdate, StudentPhoneNumber, GuardianName.
    Thus can you show me how to setup the sql to meet this requirement I have?

    Hi wendy,
    After testing the issue in my local environment, we can refer to the following steps to achieve your requirement:
    Create three multiple parameters named SchoolNumber, SchoolName and StudentNumber in the report. Those available values from the basic dataset SchoolNumber, SchoolName and StudentNumber fields.
    If you want to pass multiple values parameter to stored procedure, we should create a function as below to the database:
    CREATE FUNCTION SplitParameterValues (@InputString NVARCHAR(max), @SplitChar VARCHAR(5))
    RETURNS @ValuesList TABLE
    param NVARCHAR(255)
    AS
    BEGIN
    DECLARE @ListValue NVARCHAR(max)
    SET @InputString = @InputString + @SplitChar
    WHILE @InputString!= @SplitChar
    BEGIN
    SELECT @ListValue = SUBSTRING(@InputString , 1, (CHARINDEX(@SplitChar, @InputString)-1))
    IF (CHARINDEX(@SplitChar, @InputString) + len(@SplitChar))>(LEN(@InputString))
    BEGIN
    SET @InputString=@SplitChar
    END
    ELSE
    BEGIN
    SELECT @InputString = SUBSTRING(@InputString, (CHARINDEX(@SplitChar, @InputString) + len(@SplitChar)) , LEN(@InputString)-(CHARINDEX(@SplitChar, @InputString)+ len(@SplitChar)-1) )
    END
    INSERT INTO @ValuesList VALUES( @ListValue)
    END
    RETURN
    END
    Use the query below to create a stored procedure, then use it to create a dataset to return 5 values:
    create proc proc_test(@SchoolNumber nvarchar(50),@SchoolName nvarchar(50),@StudentNumber nvarchar(50))
    as
    begin
    select StudnentName, StudentAddress, Studentbirthdate, StudentPhoneNumber, GuardianName
    from table7 where SchoolNumber in (SELECT * FROM SplitParameterValues (@SchoolNumber,','))  and SchoolName in(SELECT * FROM SplitParameterValues (@SchoolName,','))  and StudentNumber in (SELECT * FROM SplitParameterValues (@StudentNumber,','))
    end
    Right-click the new dataset to modify the parameter value in the Parameters pane as below:
    =join(Parameters!SchoolNumber.Value,",")
    =join(Parameters!SchoolName.Value,",")
    =join(Parameters!StudentNumber.Value,",")
    For more details about pass multi-value to stored procedure, please see:
    http://munishbansal.wordpress.com/2008/12/29/passing-multi-value-parameter-in-stored-procedure-ssrs-report/
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Pass values between ssrs 2008 r2 reports

    In a  ssrs 2008 R2 report, I need to pass parameters to existing subreports that are currently called.  Basically there is a main sssrs 2008 r2 report and there are 3 subreports. I would like subreports #1, subreport #2, and subreport #3 to receive
    the value values of customer number and customer name. I am hoping you can tell me and/or show me code that would tell me how to add parameters parameter values that are used to call these subreports.

    Hi wendy,
    According to your description, it seems that you want to pass parameter values from main report to subreport1, from subreport1 to subreport2, and from subreport2 to subreport3. If in this scenario, you can refer to the following steps about the sample test
    (from main report to subreport1) in my environment:
    Create a parameter named ID in the main report, adjust the report body and tablix with the same size.
    In the subreport1 report, right-click one cell to insert a subreport.
    Right-click the subpeort to open the Subreport Properties, and select the main report name in the drop-down list.
    In the left panel of the Subreport Properties dialog box, click Parameters.
    Select ID in the drop-down list of Name, and select [ID] in the drop-down list of Value.
    Considering your question, because I have create a parameter in the main report and specify the parameter in the subreport1, the main report will be passed by the parameter to subreport1.
    If you have any other questions, please feel free to ask.
    Thanks,
    Katherine xiong
    If you have any feedback on our support, please click here.
    Katherine Xiong
    TechNet Community Support

  • SSRS 2008 R2 Report parameters have default values and report not to auto run

    Hi, I am using SSRS 2008 R2 one of my requirements for a Report is all the parameters have default value and I do not want this report to auto run when users open this report. I can create a dummy hidden parameter to break the auto run for this
    report. But I am looking for solutions other than that.
    Thanks in advance..........
    Ione

    Hi lone,
    According to your description, you have a report with parameters. Now you want you report not to run automatically with your parameters default values. Right?
    In Reporting Service, if you have parameters with default values in your report, your report will always auto run with these default values. We can say these default values are used for report running initially. So for your requirement, if you really need
    to see your default value before the report running, the best workaround is set one more parameter to break the auto run like you have done. If you just want your report not to auto run, your can achieve it by removing those default values.
    Reference:
    Report Parameters (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou (Pactera)

  • SSRS 2008 R2 report does not print the page header for a html content displaying on multiple pages

    Hi
    I need to display the html content from the database. The html content are quite long and can have content of 3-5 pages. Issue I  am facing is f the record has html content of 3-5 pages, then it does not print the page header (which is a separate tablix) on
    second page onwards.
    Nikesh Shah
    Nikesh Shah

    Hi Nikesh,
    According to your description, I’m not sure the meaning of Page header in your scenario. In Reporting Services, a page header that run along the top of each page, respectively. Headers can contain static text, images, lines, rectangles, borders, background
    color, background images, and expressions. But we couldn’t add tablix in the page header.
    If you are saying report header, a report header consists of the report items that are placed at the top of the report body on the report design surface. They appear only once as the first content in the report. So it cannot repeat in other pages.
    If you are saying tablix header, freezing column headers are different in table and matrix. For more details, please refer to the following thread:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/c8ddc1af-1bdf-4e72-8aab-0353c7cc848a/ssrs-report-freezing-row-and-column-while-scrolling-issue?forum=sqlreportingservices
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Creating snapshot in SSRS 2008 R2 report will disable some parameters.

    Hi guys.
    I'm new to SSRS, so the question that I'm going to ask might sound stupid, hope you guys don't mind.
    I have a few reports that display data based on the snapshot. I found out that some of the parameters on certain reports were disabled and some are not. When I removed the snapshot setting and display the report based on latest data, those disabled parameters
    will be enabled again.
    After some search from Google, I understand that when using snapshot, the parameters will be disabled. But in my case, not all parameters are disabled. And there is some reports with snapshot, all of their parameters are enabled. Please help me on this if
    there is any settings that I need to do to enable all of the parameters.
    Thanks and have a nice day.

    Hi engloon,
    According to your description, you want to enable parameters when creating a snapshot. Right?
    In Reporting Services, Snapshots can be created manually or at scheduled intervals for any report that can run unattended. Furthermore, if the report uses parameters, you must specify default values to use when the report runs. You can specify stored credentials
    and parameter values in the property pages for the report.
    In this scenario, you may have default values for parameters in some reports so that it looks those reports have parameters enabled. So if you want to have snapshot rendered with parameter selection, you can specify the default values in Parameter tab. Please
    follow the steps below:
    Open Report Manager, and locate the report for which you want to modify parameter settings.
    Hover over the report, and click the drop-down arrow.
    In the drop-down menu, click Manage. This opens the General properties page for the report.
    Select the Parameters tab. If the Parameters tab is not visible, the report does not contain parameters.
    Reference:
    Create, Modify, and Delete Snapshots in Report History
    Add a Snapshot to Report History (Report Manager)
    Parameters Properties Page (Report Manager)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • How do you solve issue of reports timing out with SSRS (2008 R2) Report Manger?

    When trying to access reports through Report Manager we get an error:
    An error occurred within the report server database. This may be due to a connection failure, timeout or low disk condition within the database. (rsReportServerDatabaseError)
    Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
    The reports were all running ok until the night before last when some more reports were deployed.
    Now that this has occurred it is impossible to carry out any action on the reports in the Report Manager - e.g. delete etc.
    This issue is also affecting Reports that are accessed through the ReportServer.
    A typical log we get is as below:
      <Product>Microsoft SQL Server Reporting Services Version 2009.0100.1600.01 ((KJ_RTM).100402-1539 )</Product>
      <Locale>English (United Kingdom)</Locale>
      <TimeZone>GMT Daylight Time</TimeZone>
      <Path>C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\Logfiles\ReportServerService__04_17_2014_09_26_58.log</Path>
      <SystemName>WIN-0F023F9I3H1</SystemName>
      <OSName>Microsoft Windows NT 6.1.7601 Service Pack 1</OSName>
      <OSVersion>6.1.7601</OSVersion>
      <ProcessID>2432</ProcessID>
      <Virtualization>Hypervisor</Virtualization>
    </Header>
    rshost!rshost!828!04/17/2014-09:26:58:: i INFO: CLR runtime is initialized.
    rshost!rshost!828!04/17/2014-09:26:58:: i INFO: Derived memory configuration based on physical memory as 4193784 KB
    appdomainmanager!DefaultDomain!d20!04/17/2014-09:26:58:: i INFO: Entered managed ServiceMain in DefaultDomain.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing ConnectionType to '0'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing SecureConnectionLevel to '0'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing CleanupCycleMinutes to '10' minute(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing DailyCleanupMinuteOfDay to '120' minutes since midnight as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MaxActiveReqForOneUser to '20' requests(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing DatabaseQueryTimeout to '120' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing RunningRequestsScavengerCycle to '60' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing RunningRequestsDbCycle to '60' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing RunningRequestsAge to '30' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MaxScheduleWait to '60' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing DisplayErrorLink to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing WebServiceUseFileShareStorage to 'False'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing WatsonFlags to '1064'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing WatsonDumpOnExceptions to 'Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingException' 
    as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing WatsonDumpExcludeIfContainsExceptions to 'System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException' 
    as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing AuthenticationTypes to '5'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing RSWindowsExtendedProtectionLevel to 'Off'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing RSWindowsExtendedProtectionScenario to 'Proxy'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing EnableAuthPersistence to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing IsSchedulingService to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing IsNotificationService to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing IsEventService to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing PollingInterval to '10' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing WindowsServiceUseFileShareStorage to 'False'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MemorySafetyMargin to '80' percent as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MemoryThreshold to '90' percent as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing RecycleTime to '720' minute(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MaxAppDomainUnloadTime to '30' minute(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MaxQueueThreads to '0' thread(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: w WARN: Initializing UrlRoot to default value of ''  because it was incorrectly specified in Configuration file as ''.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing IsWebServiceEnabled to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing IsReportManagerEnabled to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MaxConnections to '2'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing Timeout to '10' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing AppID to '(Default)'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing CacheLevel to 'Default'  as specified in Configuration file.
    resourceutilities!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Reporting Services starting SKU: Standard
    configmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Using report server internal url http://localhost:80/ReportServer.
    configmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Using report server external url http://WIN-0F023F9I3H1:80/ReportServer.
    configmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Using url root http://WIN-0F023F9I3H1:80/ReportServer.
    rshost!rshost!b78!04/17/2014-09:26:59:: i INFO: Configuring maxPhysicalCpu=4, minLogicalCpu=0
    rshost!rshost!b78!04/17/2014-09:26:59:: i INFO: Logical processor per physical processor 4
    rshost!rshost!b78!04/17/2014-09:26:59:: i INFO: Maximum logical CPU is 4
    configmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Using report server internal url http://localhost:80/ReportServer.
    configmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Using report server external url http://WIN-0F023F9I3H1:80/ReportServer.
    configmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Using url root http://WIN-0F023F9I3H1:80/ReportServer.
    appdomainmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Appdomain:2 WindowsService_0 started.
    resourceutilities!WindowsService_0!b78!04/17/2014-09:27:00:: i INFO: Reporting Services starting SKU: Standard
    library!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: Catalog SQL Server Edition = Standard
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Registered url=http://+:80/ReportServer/, vdir=/ReportServer, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer.
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Registered url=http://regreports.edfringe.com:80/ReportServer/, vdir=/ReportServer, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer.
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Registered url=http://localhost:80/ReportServer/, vdir=/ReportServer, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer.
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Currently registered url http://localhost:80/ReportServer/ on endpoint 2
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Currently registered url http://regreports.edfringe.com:80/ReportServer/ on endpoint 2
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Currently registered url http://+:80/ReportServer/ on endpoint 2
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Registered url=http://+:80/Reports/, vdir=/Reports, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager.
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Registered url=http://regreports.edfringe.com:80/Reports/, vdir=/Reports, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager.
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Registered url=http://localhost:80/Reports/, vdir=/Reports, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager.
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Currently registered url http://localhost:80/Reports/ on endpoint 3
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Currently registered url http://regreports.edfringe.com:80/Reports/ on endpoint 3
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Currently registered url http://+:80/Reports/ on endpoint 3
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Endpoint 4 is disabled and no url is registered vdir=/ReportServer/ReportBuilder, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer\ReportBuilder.
    resourceutilities!DefaultDomain!b78!04/17/2014-09:27:00:: i INFO: Maximum memory limit is 65536Mb
    rshost!rshost!b78!04/17/2014-09:27:00:: i INFO: Derived memory configuration based on physical memory as 4193784 KB
    servicecontroller!DefaultDomain!1578!04/17/2014-09:27:00:: i INFO: Total Physical memory: 4294434816
    rpcserver!DefaultDomain!1044!04/17/2014-09:27:00:: i INFO: Process monitoring started.
    crypto!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: Initializing crypto as user: NT AUTHORITY\NETWORK SERVICE
    crypto!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: Exporting public key
    crypto!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: Performing sku validation
    crypto!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: Importing existing encryption key
    dbpolling!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: EventPolling polling service started
    dbpolling!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: NotificationPolling polling service started
    dbpolling!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: SchedulePolling polling service started
    dbpolling!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: UpgradePolling polling service started
    dbpolling!WindowsService_0!f74!04/17/2014-09:27:00:: i INFO: HeartbeatThread(EventPolling): heartbeat thread started.
    dbpolling!WindowsService_0!51c!04/17/2014-09:27:00:: i INFO: HeartbeatThread(NotificationPolling): heartbeat thread started.
    dbpolling!WindowsService_0!11d4!04/17/2014-09:27:00:: i INFO: PollingMaintenance: Polling started
    resourceutilities!WindowsService_0!11d4!04/17/2014-09:27:00:: i INFO: Maximum memory limit is 65536Mb
    rpcserver!DefaultDomain!e34!04/17/2014-09:27:00:: i INFO: RPC Server started.
    servicecontroller!DefaultDomain!e34!04/17/2014-09:27:00:: i INFO: RPC Server started. Endpoint name ='ReportingServices$MSRS10_50.MSSQLSERVER'
    appdomainmanager!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: Appdomain:2 WindowsService_0 initialized.
    library!DefaultDomain!e34!04/17/2014-09:27:01:: i INFO: Catalog SQL Server Edition = Standard
    appdomainmanager!DefaultDomain!123c!04/17/2014-09:27:51:: i INFO: Appdomain:3 ReportManager_MSSQLSERVER_0-1-130421968711068584 started.
    appdomainmanager!ReportManager_0-1!123c!04/17/2014-09:27:51:: i INFO: RS authentication mode is 5; effective ASP.NET authentication mode is Windows. vdir=/Reports.
    appdomainmanager!DefaultDomain!123c!04/17/2014-09:27:51:: i INFO: Appdomain:3 ReportManager_MSSQLSERVER_0-1-130421968711068584 initialized (#1).
    appdomainmanager!DefaultDomain!100!04/17/2014-09:27:54:: i INFO: Appdomain:4 ReportServer_MSSQLSERVER_0-2-130421968744180477 started.
    appdomainmanager!ReportServer_0-2!100!04/17/2014-09:27:54:: i INFO: RS authentication mode is 5; effective ASP.NET authentication mode is Windows. vdir=/ReportServer.
    appdomainmanager!DefaultDomain!100!04/17/2014-09:27:54:: i INFO: Appdomain:4 ReportServer_MSSQLSERVER_0-2-130421968744180477 initialized (#1).
    webserver!ReportServer_0-2!100!04/17/2014-09:28:00:: i INFO: Reporting Web Server started
    resourceutilities!ReportServer_0-2!100!04/17/2014-09:28:01:: i INFO: Reporting Services starting SKU: Standard
    resourceutilities!ReportServer_0-2!100!04/17/2014-09:28:01:: i INFO: Maximum memory limit is 65536Mb
    library!ReportServer_0-2!6f4!04/17/2014-09:28:02:: Call to GetPermissionsAction(/).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: i INFO: Catalog SQL Server Edition = Standard
    crypto!ReportServer_0-2!6f4!04/17/2014-09:28:03:: i INFO: Initializing crypto as user: NT AUTHORITY\NETWORK SERVICE
    crypto!ReportServer_0-2!6f4!04/17/2014-09:28:03:: i INFO: Exporting public key
    crypto!ReportServer_0-2!6f4!04/17/2014-09:28:03:: i INFO: Performing sku validation
    crypto!ReportServer_0-2!6f4!04/17/2014-09:28:03:: i INFO: Importing existing encryption key
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: Call to GetPropertiesAction(/, PathBased).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: Call to GetPropertiesAction(/, PathBased).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: Call to GetSystemPermissionsAction().
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: Call to ListChildrenAction(/, False).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetPermissionsAction(/EFW_Reports).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetPropertiesAction(/EFW_Reports, PathBased).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetPropertiesAction(/EFW_Reports, PathBased).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetSystemPermissionsAction().
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to ListChildrenAction(/EFW_Reports, False).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!e34!04/17/2014-09:28:15:: Call to GetPermissionsAction(/EFW_Reports/Show_Proof_Orgs).
    library!ReportServer_0-2!e34!04/17/2014-09:28:15:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!e34!04/17/2014-09:28:15:: Call to GetPropertiesAction(/EFW_Reports/Show_Proof_Orgs, PathBased).
    library!ReportServer_0-2!e34!04/17/2014-09:28:16:: Call to GetSystemPermissionsAction().
    ui!ReportManager_0-1!168c!04/17/2014-09:28:16:: i INFO: PageCountMode 'Estimate' read from config file
    ui!ReportManager_0-1!168c!04/17/2014-09:28:16:: i INFO: AccessibleTablix value not specified in config file.
    library!ReportServer_0-2!e34!04/17/2014-09:28:17:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!e34!04/17/2014-09:30:23:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerStorageException: , An error occurred within the report server database.  This may be due to a connection failure, timeout
    or low disk condition within the database.;
    library!ReportServer_0-2!e34!04/17/2014-09:30:23:: w WARN: Transaction rollback was not executed connection is invalid
    library!ReportServer_0-2!e34!04/17/2014-09:32:28:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerStorageException: , An error occurred within the report server database.  This may be due to a connection failure, timeout
    or low disk condition within the database.;
    library!ReportServer_0-2!e34!04/17/2014-09:32:28:: w WARN: Transaction rollback was not executed connection is invalid

    When trying to access reports through Report Manager we get an error:
    An error occurred within the report server database. This may be due to a connection failure, timeout or low disk condition within the database. (rsReportServerDatabaseError)
    Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
    The reports were all running ok until the night before last when some more reports were deployed.
    Now that this has occurred it is impossible to carry out any action on the reports in the Report Manager - e.g. delete etc.
    This issue is also affecting Reports that are accessed through the ReportServer.
    A typical log we get is as below:
      <Product>Microsoft SQL Server Reporting Services Version 2009.0100.1600.01 ((KJ_RTM).100402-1539 )</Product>
      <Locale>English (United Kingdom)</Locale>
      <TimeZone>GMT Daylight Time</TimeZone>
      <Path>C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\Logfiles\ReportServerService__04_17_2014_09_26_58.log</Path>
      <SystemName>WIN-0F023F9I3H1</SystemName>
      <OSName>Microsoft Windows NT 6.1.7601 Service Pack 1</OSName>
      <OSVersion>6.1.7601</OSVersion>
      <ProcessID>2432</ProcessID>
      <Virtualization>Hypervisor</Virtualization>
    </Header>
    rshost!rshost!828!04/17/2014-09:26:58:: i INFO: CLR runtime is initialized.
    rshost!rshost!828!04/17/2014-09:26:58:: i INFO: Derived memory configuration based on physical memory as 4193784 KB
    appdomainmanager!DefaultDomain!d20!04/17/2014-09:26:58:: i INFO: Entered managed ServiceMain in DefaultDomain.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing ConnectionType to '0'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing SecureConnectionLevel to '0'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing CleanupCycleMinutes to '10' minute(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing DailyCleanupMinuteOfDay to '120' minutes since midnight as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MaxActiveReqForOneUser to '20' requests(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing DatabaseQueryTimeout to '120' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing RunningRequestsScavengerCycle to '60' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing RunningRequestsDbCycle to '60' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing RunningRequestsAge to '30' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MaxScheduleWait to '60' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing DisplayErrorLink to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing WebServiceUseFileShareStorage to 'False'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing WatsonFlags to '1064'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing WatsonDumpOnExceptions to 'Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingException'
     as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing WatsonDumpExcludeIfContainsExceptions to 'System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException'
     as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing AuthenticationTypes to '5'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing RSWindowsExtendedProtectionLevel to 'Off'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing RSWindowsExtendedProtectionScenario to 'Proxy'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing EnableAuthPersistence to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing IsSchedulingService to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing IsNotificationService to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing IsEventService to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing PollingInterval to '10' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing WindowsServiceUseFileShareStorage to 'False'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MemorySafetyMargin to '80' percent as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MemoryThreshold to '90' percent as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing RecycleTime to '720' minute(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MaxAppDomainUnloadTime to '30' minute(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MaxQueueThreads to '0' thread(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: w WARN: Initializing UrlRoot to default value of ''  because it was incorrectly specified in Configuration file as ''.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing IsWebServiceEnabled to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing IsReportManagerEnabled to 'True'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing MaxConnections to '2'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing Timeout to '10' second(s) as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing AppID to '(Default)'  as specified in Configuration file.
    library!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Initializing CacheLevel to 'Default'  as specified in Configuration file.
    resourceutilities!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Reporting Services starting SKU: Standard
    configmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Using report server internal url http://localhost:80/ReportServer.
    configmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Using report server external url http://WIN-0F023F9I3H1:80/ReportServer.
    configmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Using url root http://WIN-0F023F9I3H1:80/ReportServer.
    rshost!rshost!b78!04/17/2014-09:26:59:: i INFO: Configuring maxPhysicalCpu=4, minLogicalCpu=0
    rshost!rshost!b78!04/17/2014-09:26:59:: i INFO: Logical processor per physical processor 4
    rshost!rshost!b78!04/17/2014-09:26:59:: i INFO: Maximum logical CPU is 4
    configmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Using report server internal url http://localhost:80/ReportServer.
    configmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Using report server external url http://WIN-0F023F9I3H1:80/ReportServer.
    configmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Using url root http://WIN-0F023F9I3H1:80/ReportServer.
    appdomainmanager!DefaultDomain!b78!04/17/2014-09:26:59:: i INFO: Appdomain:2 WindowsService_0 started.
    resourceutilities!WindowsService_0!b78!04/17/2014-09:27:00:: i INFO: Reporting Services starting SKU: Standard
    library!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: Catalog SQL Server Edition = Standard
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Registered url=http://+:80/ReportServer/, vdir=/ReportServer, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer.
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Registered url=http://regreports.edfringe.com:80/ReportServer/, vdir=/ReportServer, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer.
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Registered url=http://localhost:80/ReportServer/, vdir=/ReportServer, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer.
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Currently registered url http://localhost:80/ReportServer/ on endpoint 2
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Currently registered url http://regreports.edfringe.com:80/ReportServer/ on endpoint 2
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Currently registered url http://+:80/ReportServer/ on endpoint 2
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Registered url=http://+:80/Reports/, vdir=/Reports, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager.
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Registered url=http://regreports.edfringe.com:80/Reports/, vdir=/Reports, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager.
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Registered url=http://localhost:80/Reports/, vdir=/Reports, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager.
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Currently registered url http://localhost:80/Reports/ on endpoint 3
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Currently registered url http://regreports.edfringe.com:80/Reports/ on endpoint 3
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Currently registered url http://+:80/Reports/ on endpoint 3
    rshost!rshost!1044!04/17/2014-09:27:00:: i INFO: Endpoint 4 is disabled and no url is registered vdir=/ReportServer/ReportBuilder, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer\ReportBuilder.
    resourceutilities!DefaultDomain!b78!04/17/2014-09:27:00:: i INFO: Maximum memory limit is 65536Mb
    rshost!rshost!b78!04/17/2014-09:27:00:: i INFO: Derived memory configuration based on physical memory as 4193784 KB
    servicecontroller!DefaultDomain!1578!04/17/2014-09:27:00:: i INFO: Total Physical memory: 4294434816
    rpcserver!DefaultDomain!1044!04/17/2014-09:27:00:: i INFO: Process monitoring started.
    crypto!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: Initializing crypto as user: NT AUTHORITY\NETWORK SERVICE
    crypto!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: Exporting public key
    crypto!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: Performing sku validation
    crypto!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: Importing existing encryption key
    dbpolling!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: EventPolling polling service started
    dbpolling!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: NotificationPolling polling service started
    dbpolling!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: SchedulePolling polling service started
    dbpolling!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: UpgradePolling polling service started
    dbpolling!WindowsService_0!f74!04/17/2014-09:27:00:: i INFO: HeartbeatThread(EventPolling): heartbeat thread started.
    dbpolling!WindowsService_0!51c!04/17/2014-09:27:00:: i INFO: HeartbeatThread(NotificationPolling): heartbeat thread started.
    dbpolling!WindowsService_0!11d4!04/17/2014-09:27:00:: i INFO: PollingMaintenance: Polling started
    resourceutilities!WindowsService_0!11d4!04/17/2014-09:27:00:: i INFO: Maximum memory limit is 65536Mb
    rpcserver!DefaultDomain!e34!04/17/2014-09:27:00:: i INFO: RPC Server started.
    servicecontroller!DefaultDomain!e34!04/17/2014-09:27:00:: i INFO: RPC Server started. Endpoint name ='ReportingServices$MSRS10_50.MSSQLSERVER'
    appdomainmanager!WindowsService_0!e34!04/17/2014-09:27:00:: i INFO: Appdomain:2 WindowsService_0 initialized.
    library!DefaultDomain!e34!04/17/2014-09:27:01:: i INFO: Catalog SQL Server Edition = Standard
    appdomainmanager!DefaultDomain!123c!04/17/2014-09:27:51:: i INFO: Appdomain:3 ReportManager_MSSQLSERVER_0-1-130421968711068584 started.
    appdomainmanager!ReportManager_0-1!123c!04/17/2014-09:27:51:: i INFO: RS authentication mode is 5; effective ASP.NET authentication mode is Windows. vdir=/Reports.
    appdomainmanager!DefaultDomain!123c!04/17/2014-09:27:51:: i INFO: Appdomain:3 ReportManager_MSSQLSERVER_0-1-130421968711068584 initialized (#1).
    appdomainmanager!DefaultDomain!100!04/17/2014-09:27:54:: i INFO: Appdomain:4 ReportServer_MSSQLSERVER_0-2-130421968744180477 started.
    appdomainmanager!ReportServer_0-2!100!04/17/2014-09:27:54:: i INFO: RS authentication mode is 5; effective ASP.NET authentication mode is Windows. vdir=/ReportServer.
    appdomainmanager!DefaultDomain!100!04/17/2014-09:27:54:: i INFO: Appdomain:4 ReportServer_MSSQLSERVER_0-2-130421968744180477 initialized (#1).
    webserver!ReportServer_0-2!100!04/17/2014-09:28:00:: i INFO: Reporting Web Server started
    resourceutilities!ReportServer_0-2!100!04/17/2014-09:28:01:: i INFO: Reporting Services starting SKU: Standard
    resourceutilities!ReportServer_0-2!100!04/17/2014-09:28:01:: i INFO: Maximum memory limit is 65536Mb
    library!ReportServer_0-2!6f4!04/17/2014-09:28:02:: Call to GetPermissionsAction(/).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: i INFO: Catalog SQL Server Edition = Standard
    crypto!ReportServer_0-2!6f4!04/17/2014-09:28:03:: i INFO: Initializing crypto as user: NT AUTHORITY\NETWORK SERVICE
    crypto!ReportServer_0-2!6f4!04/17/2014-09:28:03:: i INFO: Exporting public key
    crypto!ReportServer_0-2!6f4!04/17/2014-09:28:03:: i INFO: Performing sku validation
    crypto!ReportServer_0-2!6f4!04/17/2014-09:28:03:: i INFO: Importing existing encryption key
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: Call to GetPropertiesAction(/, PathBased).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: Call to GetPropertiesAction(/, PathBased).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: Call to GetSystemPermissionsAction().
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: Call to ListChildrenAction(/, False).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!6f4!04/17/2014-09:28:03:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetPermissionsAction(/EFW_Reports).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetPropertiesAction(/EFW_Reports, PathBased).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetPropertiesAction(/EFW_Reports, PathBased).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetSystemPermissionsAction().
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to ListChildrenAction(/EFW_Reports, False).
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!6f4!04/17/2014-09:28:06:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!e34!04/17/2014-09:28:15:: Call to GetPermissionsAction(/EFW_Reports/Show_Proof_Orgs).
    library!ReportServer_0-2!e34!04/17/2014-09:28:15:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!e34!04/17/2014-09:28:15:: Call to GetPropertiesAction(/EFW_Reports/Show_Proof_Orgs, PathBased).
    library!ReportServer_0-2!e34!04/17/2014-09:28:16:: Call to GetSystemPermissionsAction().
    ui!ReportManager_0-1!168c!04/17/2014-09:28:16:: i INFO: PageCountMode 'Estimate' read from config file
    ui!ReportManager_0-1!168c!04/17/2014-09:28:16:: i INFO: AccessibleTablix value not specified in config file.
    library!ReportServer_0-2!e34!04/17/2014-09:28:17:: Call to GetSystemPropertiesAction().
    library!ReportServer_0-2!e34!04/17/2014-09:30:23:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerStorageException: , An error occurred within the report server database.  This may be due to a connection failure, timeout
    or low disk condition within the database.;
    library!ReportServer_0-2!e34!04/17/2014-09:30:23:: w WARN: Transaction rollback was not executed connection is invalid
    library!ReportServer_0-2!e34!04/17/2014-09:32:28:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerStorageException: , An error occurred within the report server database.  This may be due to a connection failure, timeout
    or low disk condition within the database.;
    library!ReportServer_0-2!e34!04/17/2014-09:32:28:: w WARN: Transaction rollback was not executed connection is invalid

  • Steps to configure mobile devices to open ssrs 2008 r2 reports

    Hi,
    We have a requirement to setup mobile devices for users to access their reports via report manager. I have researched these forums and found some information on the supported browser versions on these devices, and some issues faced by users on the iphone,
    ipad etc. But I need a step by step guide on how to set up the end to end process. I am fairly new to SSRS, so can someone help me?
    Thanks.

    Hi LiamLu,
    Currently, Reporting Services reports does not support run in mobile devices. I recommend you refer to the following blog about Mobile BI strategy, please see:
    Power View, PASS and Mobile:
    http://blogs.msdn.com/b/sqlrsteamblog/archive/2011/10/13/power-view-pass-and-mobile.aspx
    Meanwhile, you can also take a look at the following article:
    Viewing reports and scorecards on Apple iPad devices (SharePoint Server 2010):
    http://technet.microsoft.com/en-us/library/hh697482.aspx
    Otherwise, we discuss Analysis Services related issue in this forum. If you have any more questions about SQL Server Reporting Services, you can post them in Reporting Services and Power View forum:
    http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/threads
    Regards,
    Bin Long
    Bin Long
    TechNet Community Support

  • Ssrs 2008 the report instead of showing Emp # want to show Emp Name , how i can write case when syntax

    working on SSRS report , pulling the data with Emp # I want to show with emp Name instead,
    is there way to write case when syntax so it can show only emp name instead of emp #
    for example
    Emp #        Emp Name
    144                 Kevin
    want report to pick the name as Kevin instead of 144
    any help will be great
    thansk

    thanks for reply RSingh
    I tried changing the query as you suggested
    SELECT [EMP #], [EMP NAME], FIELD1, FIELD2 FROM TABLENAME
    it did not work,  getting error message
    empLid  table name JMGPAYEMPLOYEE  and there is no emp name field
    when I modify the query as per above getting error message
    because I have 2 data set
    1.  Projid
    2. Projgroupid
    3.  parameter I have date
    below is my query
    SELECT        PROJTABLE.PROJID, PROJTABLE.PROJGROUPID, PROJTABLE.DATAAREAID, JMGPAYEMPLOYEE.EMPLID, PROJTRANSPOSTING.QTY, JMGPAYEMPLOYEE.PRICE,
                             PROJTABLE.DIMENSION2_, PROJTRANSPOSTING.POSTINGTYPE, PROJTRANSPOSTING.COSTSALES, PROJTRANSPOSTING.PROJTRANSDATE,
                             CATEGORYTABLE.CATEGORYNAME
    FROM            PROJTABLE INNER JOIN
                             PROJTRANSPOSTING ON PROJTABLE.PROJID = PROJTRANSPOSTING.PROJID AND PROJTABLE.DATAAREAID = PROJTRANSPOSTING.DATAAREAID
    INNER JOIN
                             JMGPAYEMPLOYEE ON PROJTRANSPOSTING.DATAAREAID = JMGPAYEMPLOYEE.DATAAREAID AND
                             PROJTRANSPOSTING.EMPLITEMID = JMGPAYEMPLOYEE.EMPLID INNER JOIN
                             CATEGORYTABLE ON JMGPAYEMPLOYEE.DATAAREAID = CATEGORYTABLE.DATAAREAID AND
                             JMGPAYEMPLOYEE.EMPLID = CATEGORYTABLE.CATEGORYID
    WHERE        (PROJTRANSPOSTING.COSTSALES = 1) AND (PROJTRANSPOSTING.POSTINGTYPE = 121) AND (PROJTRANSPOSTING.PROJTRANSDATE >= @Paramfromdate) AND
                             (PROJTRANSPOSTING.PROJTRANSDATE <= @ParamTodate)
    any advise will be helpful
    thanks

  • SSRS 2008 R2 report prints empty spaces for html content till end of page

    Hi
    I need to display records containing long html content say each record of different size ranging from 5 lines to 3-5 pages.
    Issue observed is:
    When a record complete is printing say half the page and subsequent record is bigger then half a page, the subsequent record is printed on the next page rather than continue immediately after the previous record is completed.
    Is their any property or any other solution to resolve the issue. Print on next page is not set.
    Nikesh Shah

    Hi Nikesh,
    As per my understanding, I think the issue is caused by the blank space in the report body. In order to get rid of the blank space when print the report, please refer to the following steps:
    Click on Report > Report Properties > Layout tab
    Make a note of the values for Page width, Left margin, Right margin
    Close and go back to the design surface
    In the Properties window, select Body
    Click the + symbol to expand the Size node
    Make a note of the value for Width
    Please check the Page Break settings on all your report items and make sure the Body Width + Left margin + Right margin less than or equal to Page width, just like the equalities below:
    (Body Width + Left margin + Right margin) <= (Page width)
    If there are any other questions, please feel free to ask.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Changing the value of a parameter that has been passed into an SSRS 2008 R2 report

    I support 200+ reports that all use stored procedures and have many drill downs with built in URLs.
    I want to do the below to avoid creating a brand new parameter that I will have to add to literally hundreds of places.
    We have what I'll call Param1 that receives a value from the user.  That Param1 is passed to the stored procedure(s) for the report and also embedded in any Action URLs for drill downs to other reports from that report.  All works great.
    Now I have a need to concatenate a string to whatever value they supplied which provides context for the environment in which they are running.  The reason I want to do this instead of creating a new parameter is because I need this in all my reports
    and as stated above I would have to make 100s of changes to make that happen.  If I can figure out a way to concatenate a value to the existing Param1 value I can greatly reduce the number of changes.
    I can't seem to be able to find a way to modify the value on an existing parameter that is passed into the report prior to report execution.
    I get an error when I simply try to concatenate something to the parameter in its Default property.
    I can't find a way to update a parameter value in the Report Code block.  There don't appear to be any methods available on the Parameter Collection to set the value of a parameter.
    Any ideas?
    Thanks!
    Nathan 

    Create a new parameter. Mark it internal, set it's value by expression to:
    =User!UserId+"MyNewValue"
    and pass it to the proc?
    Don't forget to mark helpful posts, and answers. It helps others to find relevant posts to the same question.

  • Consuming SharePoint 2010 Lists Data in the SSRS 2008 R2 Reports

    When I am trying to create a report using SharePoint 2010 List I am getting error.
    Firstly I opened SQL BI Development Studio, then created Shared DataSource then created Report.
    Then from Report Data pane created Data Source and all was Ok
    But when I am creating DataSet for the SharePoint 2010 List and when clicking on Query Builder and running the query I am getting following error:
    "Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown".
    Now what should I do next to connect my SharePoint List.

    What's your SOAP call look like for the webservice?
    Brandon James SharePoint Developer/Administrator

  • Ssrs 2008 r2 display only final total amount

    In an existing ssrs 2008 r2 report, I want the final grand total to appear as the last amount displayed in the SSRS report.
    In the 'main' matrix of the report, I have created an outside group row below the last line of the matrix.
    The expresion for this statement looks the the following:
    ="Grand Total: $"+str(sum(cdec(Fields!TransactionAmount.Value),"datasetname")).
    The total amount is correct, but this total amount line appears after every control break. Basically the amount appears every
    time the control break changes by date, teacher, or student number.
    The extra row I added does contain grouping references to date, teacher, and student number. Thus to solve my problem:
    1. Can you tell me how to remove the grouping references to date, teacher, and student number so that the last row will be the only place the total amount will be displayed?
    2. If the above is not an option, can you tell me how to add an extra row to the 'main' matrix so the report groupings do not appear on the final total line?
    3. If the above 2 choices are not an option, would you tell me how to add the final total line in the final report footer and/or any place you believe the final total amount will appear only one time?

    Hi Wendy,
    According to your description, you want to add a row into your matrix to get the total value of TransactionAmount. This can be final total value which appears only one time in your matrix. Right?
    In this scenario, the reason why the total amount line appears after each break change (data, teacher..) because this total amount line is still within the parent group. I guess you didn't add the outside group row on the top parent group. So we just need
    to right click on the textbox which is top parent group, insert a row outside of group. Then put your expression into the added row. Now the total amount will appear only one time in the matrix. It looks like below:
    Reference:
    Understanding Groups (Report Builder and SSRS)
    If you have any feedback on our support, please click
    here.
    Best Regards,
    Simon Hou 

  • Ssrs 2008 r2 keep objects in fixed locations when report is executing

    In an exisitng SSRS 2008 r2 report there are currently 5  tablixes. Right now in one of the tablixes, I am adding rectangles and textboxes to the one tablix. As I am adding these items to the SSRS 2008 r2 report, new items that I am adding to the report
    do not stay where I placed them originally. In addition, some of the other tablixes are moving around (floating).
    Thus may questions are the following:
    1. In one particular tablix, is there a way to anchor the rectangles and texboxes (keep them from floating)? If so, would you tell me how to keep fixed point locations?
    2. For all the tablixes on the report, is there a way to keep each tablix from flaoting (staying anchored to a fixed location? If so, would you tell me how to keep the various tablixes from floating?

    Hi wendy,
    Just as you said, the location of report items would be changed depends on the data in other items and page size. There are no such property that can directly make an item stayed at a fixed location. While, if the issue is caused by the page size, we can
    change it to an appropriate page size. If the issue is caused by other item data, we can try to use a rectangle to contain those items. Because rectangle is s object container, it can keep objects together on a page and control how object move and push each
    other. For more details, please see the following document:
    http://technet.microsoft.com/library/Cc966445#XSLTsection132121120120
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Ssrs 2008 r2 writingmode=rotate270 font is bold on report server

    In a ssrs 2008 r2 report, I am using writingmode=rotate270 to change the direction of header columns for detailed data on the SSRS report. The font in visual studio is 'light'. However when the report is deployed to the report server, the font weight is
    bold.
    Thus can you tell me if there is a workaround to make the font not bold when it is executed on the report server? If so, can you tell me how to solve the font problem so the font is not bold when writingmode=rotate270 when executed on the report server?

    Hi Wendy,
    I am able to reproduce the issue in both SQL Server 2008 R2 RTM Reporting Services and the latest version of SQL Server 2008 R2 Reporting Services (SQL Server 2008 R2 SP2 CU10, Build number 10.50.4297). In addition, based on my test, it is fixed in SQL Server
    2012 SP1 Reporting Services.
    To work around this issue, you can place images in the column header cells and make the rotation of the text in the images. Besides, I would suggest you submitting a wish at
    https://connect.microsoft.com/sql.
    Connect site is a connection point between you and Microsoft, and ultimately the larger community. Your feedback enables Microsoft to make software and services the best that they can be, and you can learn about and contribute to exciting projects.
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

Maybe you are looking for

  • Itunes freezes when importing cd's

    Everytime I try to import a cd itunes freezes on track 8, 9, 10, 11, or 12. I have to force quit itunes like a dozen times before itunes quits and I can remove the cd from the drive. What is going on? Is it some setting I have? This happens on 9 out

  • Replication of line items in the PO through ME59N

    Hello everyone, I am trying to replicate( duplication of each line item  into 3 line items) the line items in the PR through ME59N. I tried to change the Build_ITEM perform and added the new line items to it. However, during validation of line items,

  • Images "Disappear" When Moving a Project But Really They'r e Just Invisible

    Last night I imported 442 images into a new project. I rated them, and edited about 40-50. This morning I moved the project within the same library. When I did so, all the images disappeared, sort of. The project appeared empty. I let it sit a couple

  • User authentication problem

    Hi, I am using OC4J that comes with the Jdeveloper. i have a login page that i wanna use for my projects. i put user name and password info in jazn-data.xml and also in principals.xml found in the same directory. but it is not working. Please help me

  • How do you unlock an Ipad SIM card?

    I just upgradesd to the latest Ipad software. Once th Ipda restarted I got an error indicating the the SIM card was locked. How can I unlock it and get my Ipad back?