Restore CMoD data from TSM

aveirojunior

Active Newcomer
Joined
May 6, 2015
Messages
9
Reaction score
0
Points
0
PREDATAR Control23

Hi All,

Environment :
Windows Server 2008 R2
DB2 10.5.3
CMoD 9.5
TSM Server 6.3
TSM Client 7.1

When I restore data from TSM Client and the showing error :

05/19/2015 09:48:23: ANS5055E File not found during Backup, Archive or Migrate processing. No file specification entered.
05/19/2015 09:48:44: ANS5055E File not found during Backup, Archive or Migrate processing. No file specification entered.
05/19/2015 09:49:41: ANS5055E File not found during Backup, Archive or Migrate processing. No file specification entered.
05/19/2015 09:50:49: ANS5055E File not found during Backup, Archive or Migrate processing. No file specification entered.
05/27/2015 13:30:56: ANS5055E File not found during Backup, Archive or Migrate processing. No file specification entered.
05/27/2015 13:32:25: ANS5055E File not found during Backup, Archive or Migrate processing. No file specification entered.

Any ideas?

Thanks
 
PREDATAR Control23

Check the dsmsched.log to see if the file was skipped due to the file being in use at the time, or change, at the time of the backup.

Good Luck,
Sias
 
PREDATAR Control23

What command did you use?
Did you put the filespace name between {}? Example:
Code:
dsmc restore {/ICM/rmdbp2/00002/CENTERA}/CENTERA/L1.A1001001A13A27*.V1
 
PREDATAR Control23

Hi
Check the dsmsched.log to see if the file was skipped due to the file being in use at the time, or change, at the time of the backup.

Good Luck,
Sias

What command did you use?
Did you put the filespace name between {}? Example:
Code:
dsmc restore {/ICM/rmdbp2/00002/CENTERA}/CENTERA/L1.A1001001A13A27*.V1


We not use dsmschedule. We use command arsmaint for migrate and expire to TSM server, when we try to restore/retrieve from TSM Client show that error.
 
PREDATAR Control23

What is the full command you used?
Did you put the filespace name between {}? Example:
Code:
dsmc restore {/ICM/rmdbp2/00002/CENTERA}/CENTERA/L1.A1001001A13A27*.V1
 
PREDATAR Control23

I'm not use command, but I use TSM Client for retrieve with choose option "Original Location" and then show that error.
Can you post full command what you mean?
 
PREDATAR Control23

CM data is sent to TSM Server using the TSM API, I don't believe you can restore data backed or archived with the API using the GUI (but I could be wrong). I've always seen the command line be used to restore CM data. I also don't believe you can restore CM data to the original location as well.
Can you post full command what you mean?
I thought you were using the TSM CLI and not the GUI, hence why I wanted to see the command.

You should try with the command line to see if you have more luck. First you will need to identify the filespace:
Code:
dsmc query filespace

  #     Last Incr Date          Type    File Space Name
--------------------------------------------------------------------------------
  1     00/00/0000 00:00:00     API     /ICM/rmdbp2/00002/CENTERA
Then for the restore, you will need to put the filespace name in {}, example:
Code:
dsmc restore {/ICM/rmdbp2/00002/CENTERA}/directory/filename -pick
 
Top