A while back I posted how to get a listing of all the users that are actually running reports. This helps the VP's and Presidents of a company see if people are actually running reports.This next tip helps if you want to find out how many subscriptions are going out of your RS server. You do have your own RS server right
.SELECT Users.UserName AS TheUser, Subscriptions.*, --you don't have to return all the rows here [Catalog].Name AS ResportNameFROM [Catalog] INNER JOIN Subscriptions ON [Catalog].ItemID = Subscriptions.Report_OID INNER JOIN Users ON Subscriptions.OwnerID = Users.UserID
This helps since you don't have to pay a visit to the report server just to inspect this. In fact you can create a report of this in RS :).Jon
Keeping the web experience alive -- [url]http://www.web-impulse.com[/url]