Restore only inactive files to another directory

mknudse112

Newcomer
Joined
Sep 22, 2009
Messages
1
Reaction score
0
Points
0
Location
Ribe, Denmark
Hi
Anyone tried via command to restore inactive (only inactive) files to another directory?
Having more than 65000 files in a folder and maybe 3-400 was deleted - now we like to restore these inactive files to another folder.

Thanks
Michael
 
Hi,

Probably a more difficult way:

Code:
select FILESPACE_NAME||HL_NAME||LL_NAME from backups where node_name='NAME' and STATE='INACTIVE_VERSION' and .....

You need to add your own criteria to limit list based on paths.

Output can generate a list of inactive files.

Final command should be

dmc restore -filelist=PathToList /new/path/ -latest
 
Back
Top