cancel
Showing results for 
Search instead for 
Did you mean: 

EV possible to check archive path of archive point through SQL?

RASHIAN
Level 2

Hi,

I have an EV archivepoint but for some reason I have no idea about the archive volume or archive path information. Tried to guss by using ArchivePoints.exe find or read UNC path at command prompt but no luck. I have the ArchiveID through the Enterprise Vault Console. Is it possible to get this through SQL query?

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions

JesusWept3
Level 6
Partner Accredited Certified
Something like SELECT a.archivename "Archive Name", REPLACE(CAST(AF.Folderpath AS varchar(max)), '?', '\') "Folder Path" FROM Archive A, Root R, ArchiveFolder AF WHERE A.RootIdentity = AF.ContainerRootIdentity AND AF.RootIdentity = R.RootIdentity AND R.VaultEntryId = 'myArchiveID' Really though. Easiest thing to do is go to the VAC, hold ctrl+shift and right click Archives and select find archive or folder by ID and paste in the ID you have and hit search
https://www.linkedin.com/in/alex-allen-turl-07370146

View solution in original post

1 REPLY 1

JesusWept3
Level 6
Partner Accredited Certified
Something like SELECT a.archivename "Archive Name", REPLACE(CAST(AF.Folderpath AS varchar(max)), '?', '\') "Folder Path" FROM Archive A, Root R, ArchiveFolder AF WHERE A.RootIdentity = AF.ContainerRootIdentity AND AF.RootIdentity = R.RootIdentity AND R.VaultEntryId = 'myArchiveID' Really though. Easiest thing to do is go to the VAC, hold ctrl+shift and right click Archives and select find archive or folder by ID and paste in the ID you have and hit search
https://www.linkedin.com/in/alex-allen-turl-07370146