EV12.3 - find items on Legal Hold
Hello all,
I need to get a list of items which are on Legal Hold. TransactionID or SaveSetId, either is fine. If possible the archivename in which the item is, but that is not required.
Can I somehow get this information from the Vault Store Database? Or perhaps from the DA Customer database?
Thanks.
GJ
Good morning Gertjan,
not sure what happend to my reply that I posted yesterday. I did some reserach and tests in my lab. You should be able to utilize the view view_Holds within the vaultstore database.
USE <VaultStoreDB>
SELECT vh.HoldIdentity, s.IdTransaction, ap.ArchivePointId FROM view_Holds vh
INNER JOIN Saveset s ON vh.SavesetIdentity = s.SavesetIdentity
INNER JOIN ArchivePoint ap ON vh.ArchivePointIdentity = ap.ArchivePointIdentityRegards
Marc