Backup STGpool - querying for progress

bedac

ADSM.ORG Member
Joined
Dec 12, 2005
Messages
44
Reaction score
3
Points
0
Location
Denmark
Website
www.cowi.com
When I have a running BACKUP STGPOOL process copying data from Primary to Copy, is there any way I can query how much data (files/bytes) that still needs to be copied before the process finishes?

- Bent
 
Check for the synchronization of the storage pools using the command:

select stgpool_name,sum(physical_mb) from occupancy group by stgpool_name

amount of data in disk+ amount of data in primary stgpool= amount of data in copy stgpool
 
Thanks Hema, but that is more like a confirmation that BACKUP STGPOOL is working as expected.

What I need is something like: if a process BACKUP STGPOOL STAGE_DISK COPY_POOL is running, is it possible to query TSM of how much data in STAGE_POOL still needs to be copied to COPY_POOL?

I know I can do it by canceling the running process and then run a BACKUP STGPOOL STAGE_DISK COPY_POOL -PREVIEW=YES, but that's a lousy option :)
 
Back
Top