How to view all scheduled subcriptions

Brian Spence
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 4, 2016

As an Administrator, I want to view all the schedules for filter subscriptions.  I'm looking for very large filters that are running at specific times and slowing down the system and generating excessive e-mails.

I can't imagine this is available through the UI, so if anyone has a SQL query that would return this, I would be very grateful.

1 answer

1 accepted

0 votes
Answer accepted
105349
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 4, 2016

Hey Brian!  

Give this query a try:

SELECT * FROM filtersubscription;

Or this one:

SELECT ID, authorname, reqcontent FROM searchrequest WHERE ID IN (select FILTER_I_D from filtersubscription);

That should get you started, at least.  I found it near the bottom of this KB article:

Notification Mail Slow or Delayed

Good luck!

Brian Spence
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 4, 2016

That did it, many thanks.  Wish that table also had the filter name to make it easier, but I can get there with the ID.

105349
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 4, 2016

No problem!  Glad to help.

Suggest an answer

Log in or Sign up to answer