restore from command line

bisaal46

ADSM.ORG Member
Joined
May 25, 2008
Messages
96
Reaction score
0
Points
0
i backed up the files with the command
#dsmc selective "/oracle/SND/sapbackup/BACKUP/*.dbf">>/usr/tivoli/logs/archivelog.txt

how to restore the files to the same location and to different location?
 
bisaal46,

'dsmc restore' would be what you're looking for. The help pages on the client can show you the correct syntax.

-Chris
 
I vaguely recall the following, however, as Chris suggested, do "dsmc restore" and use the help pages.

Restore all backup from specific path:
Code:
dsmc restore /path/\*

Restore specific filename to specific path:
Code:
dsmc restore filename /path/

Restore with listing options, useful for selecting files:
Code:
dsmc restore -pick


Mike
 
I vaguely recall the following, however, as Chris suggested, do "dsmc restore" and use the help pages.

Restore all backup from specific path:
Code:
dsmc restore /path/\*

Restore specific filename to specific path:
Code:
dsmc restore filename /path/

Restore with listing options, useful for selecting files:
Code:
dsmc restore -pick


Mike

thanks for the reply and it helped me
but still confused in one thing
how to restore in original location and to different location?
 
bisaal46,

Restore to original location:

Code:
dsmc restore <your_file_name>

Restore to different location:

Code:
dsmc restore <your_file_name> <new_destination>

As I mentioned earlier, the help pages have all the correct syntax and lots of examples.

-Chris
 
Back
Top