cancel
Showing results for 
Search instead for 
Did you mean: 

Open closed archive

mias
Level 4
Partner Accredited
Hello
I move a archive to a new site the old archive is now closing. I would now like to move this archive again just over in another archive but I can not as long as the source is closed how do I open a archive again
1 ACCEPTED SOLUTION

Accepted Solutions

JesusWept3
Level 6
Partner Accredited Certified

Just run the following query against your directory database

USE EnterpriseVaultDirectory
SET ArchiveStatus = 1
WHERE ArchiveStatus = 3 AND ArchiveName LIKE 'your archive%'

https://www.linkedin.com/in/alex-allen-turl-07370146

View solution in original post

3 REPLIES 3

JesusWept3
Level 6
Partner Accredited Certified

Just run the following query against your directory database

USE EnterpriseVaultDirectory
SET ArchiveStatus = 1
WHERE ArchiveStatus = 3 AND ArchiveName LIKE 'your archive%'

https://www.linkedin.com/in/alex-allen-turl-07370146

mias
Level 4
Partner Accredited

thx :)

senafr
Level 3
Certified

there is a small mistake

the correct query is :

 USE EnterpriseVaultDirectory

SET ArchiveStatus = 1
UPDATE Archive    <--------------------------------- was missing
WHERE ArchiveStatus = 3 AND ArchiveName LIKE 'your archive%'

 

 

 thanks again