Enterprise Vault Sql query for checking messages that are due for expire but are not on hold

Hi Readers,

I am a bit busy now a days & working on some new projects so dednt got atime to blog much.

Currently i am engaged in EV & DA stuff  so below is the query that can be used for checking messages that are due for expire but are not on hold

SELECT COUNT( * )
FROM Saveset ss
WHERE archiveddate < DATEADD(DAY, -90, GETDATE())
AND ss.SavesetIdentity  NOT IN
(SELECT DISTINCT savesetidentity FROM holdsaveset)

Out put will be a number.

Run this on each database from where you want to extract info (in my case it is EV journal databases on which DA applies hold)

This can be used when you want to know if messages are expiring or not (troubleshooting)

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s