How to delete "Saved Searches" in Archive Manager?
There are two ways to delete "Saved Search" from Archive Manager:
1. On the Archive Manager Web Site, click on saved search and wait for the results to be displayed. Navigate to Save Search tab, the name given to saved search should appear on the "Save Search As" field and Delete option should become available.
Use Delete Option to remove saved search
2. Using SQL Query Analyzer to remove the saved searches directly from Database by running the following SQL Query:
Use ArchiveManager
delete dbo.SavedSearch where name like '%Saved Search Name%'
go
NOTE: Saved Search Name should be replaced with the actual name given when saving the Search results.