Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion Groups
DB Engine
SQL ServerMSDESQL Server CE
Services
Analysis (Data Mining)Analysis (OLAP)DTSIntegration ServicesNotification ServicesReporting Services
Programming
CLRConnectivitySQLXML
Other Technologies
ClusteringEnglish QueryFull-Text SearchReplicationService Broker
General
Data WarehousingPerformanceSecuritySetupSQL Server ToolsOther SQL Server Topics
DirectoryUser Groups
Related Topics
MS AccessOther DB ProductsMS Server Products.NET DevelopmentVB DevelopmentJava DevelopmentMore Topics ...

SQL Server Forum / Services / Reporting Services / August 2008

Tip: Looking for answers? Try searching our database.

Stats on when reports have been run

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Robin9876 - 22 Aug 2008 15:06 GMT
In SQL 2005 Reports Server is there details of which reports have been
run and when?
cmayers - 28 Aug 2008 19:46 GMT
select  name, count(name) as NoTimes
FROM         Catalog (nolock) INNER JOIN
                     ExecutionLog (nolock) ON Catalog.ItemID =
ExecutionLog.ReportID
where Executionlog.username <> 'NT AUTHORITY\SYSTEM'
group by catalog.name
order by count(name) desc
Signature

cjm

> In SQL 2005 Reports Server is there details of which reports have been
> run and when?
Robin9876 - 29 Aug 2008 15:24 GMT
Thanks that is really useful.

Do you know if there Is there any documentation for the fields in
those tables?

> select  name, count(name) as NoTimes
> FROM         Catalog (nolock) INNER JOIN
[quoted text clipped - 8 lines]
> > In SQL 2005 Reports Server is there details of which reports have been
> > run and when?
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.