Viewing 8 posts - 1 through 8 (of 8 total)
SQL Server is 64 bit, office 2010 32 bit...
March 20, 2014 at 11:36 am
From what i recall of the issue, there were couple hundred that needed deleted.
I appreciate your help and your comments.
Thank,
Mike
October 22, 2013 at 9:48 am
Anyone know how to find a one timed subscription?
October 3, 2013 at 10:55 am
I think i figure it out.
Delete
FROM ReportServer.dbo.Subscriptions
FROM ReportServer.dbo.Subscriptions S
INNER JOIN ReportServer.dbo.Catalog C
ON S.Report_OID = C.ItemID
INNER JOIN ReportServer.dbo.Users U
ON S.OwnerID = U.UserID
WHERE path like '/XXXXXX/%' and CreationDate <'10/01/2013'
If someone...
October 3, 2013 at 8:35 am
I replaced the select with a delete, it is not working.
delete
C.Name
,C.Path
,U.UserName
,S.InactiveFlags
,C.CreationDate
FROM ReportServer.dbo.Subscriptions S
INNER JOIN ReportServer.dbo.Catalog C
ON S.Report_OID = C.ItemID
INNER JOIN ReportServer.dbo.Users U
ON S.OwnerID = U.UserID
WHERE path...
October 3, 2013 at 8:29 am
July 16, 2007 at 7:31 am
Viewing 8 posts - 1 through 8 (of 8 total)