total space utilized on tsm server for reporting

vivek.saini

ADSM.ORG Member
Joined
Jul 2, 2007
Messages
10
Reaction score
0
Points
0
for reporting need to take out total space utilized in data backup on tsm server.
 
Try this query:
SQL:
Select sum(reporting_mb)/1024 AS Total_Managed_GB from occupancy where STGPOOL_NAME in (select distinct STGPOOL_NAME FROM stgpools where POOLTYPE='PRIMARY') and NODE_NAME !=''
 
But if i need to know total occupancy from the TSM server for month lets say for 30 days then what could be the query? Kindly guide.
 
Back
Top