The log file for reporting services SSRS 2008 R2 can be found in this default directory...
C:\Program Files\Microsoft SQL Server\MSRS10_50.SSRSBI\ Reporting Services\LogFiles
The log file for reporting services SSRS 2008 R2 can be found in this default directory...
C:\Program Files\Microsoft SQL Server\MSRS10_50.SSRSBI\ Reporting Services\LogFiles
Quite simply, use the PageName property.
For more information on how to do this using expressions for each page group, see here...
http://blogs.msdn.com/b/robertbruckner/archive/2010/05/16/report-design-naming-excel-worksheets.aspx
I used method 2 here to resolve this...
http://support.microsoft.com/default.aspx?scid=kb;en-us;896861
Method 2: Disable the loopback check (less-recommended method)
The second method is to disable the loopback check by setting the DisableLoopbackCheck registry key.DisableStrictNameChecking
registry entry to 1. For more information about how to do this, click the following article number to view the article in the Microsoft Knowledge Base:
281308 Connecting to SMB share on a Windows 2000-based computer or a Windows Server 2003-based computer may not work with an alias name
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
SELECT @@version
then compare your result against this list
http://sqlserverbuilds.blogspot.co.uk/
P.S. Pagination in a sub report works only in SQL 2008 R2 versions and above, but only if there is only one column in the Tablix of the master report.
The following SQL will let you find the worst performing reports, and also the ones that error on your reporting services database instance.
SELECT C.Path,
C.Name
, E.Requesttype
--WHEN 1 THEN 'Subscription'
--WHEN 0 THEN 'Report Launch'
--ELSE ''
--END
,E.TimeStart
,E.TimeProcessing
,E.TimeRendering
,E.TimeEnd
,[TimeTotal (ms)] = DATEDIFF ( millisecond , E.TimeStart , E.TimeEnd )
,E.Status
,E.InstanceName
,E.UserName
FROM Reportserver.dbo.ExecutionLog E (NOLOCK)
INNER JOIN Reportserver.dbo.Catalog C (NOLOCK)
ON E.ReportID = C.ItemID
WHERE 1=1
-- WHERE C.Name = 'Project Full Control Comments'
and E.Requesttype = 0
and E.Status <> 'rsSuccess'
ORDER BY [TimeTotal (ms)] DESC
Use the following powershell script to find the last users to login to a box since a given date, in this case the 21st April 2022 at 12pm un...