TSM command for total size of a node data

schetan

ADSM.ORG Member
Joined
May 23, 2008
Messages
19
Reaction score
0
Points
0
Hi there,

I'm new-ish with TSM and I was wondering if there is a command or an sql query that I can use to find out how much data is stored in each of TSM nodes in my main storage pool (ignoring copy pools).

I've been using q nodedata <node_name> but that gives me a breakdown of the data per tape and I need a complete listing of all nodes.

Thanks. Any help is appreciated.
 
Hi

You want something like

select node_name,sum(physical_mb) from occupancy where stgpool_name='<stgpool_name>' group by node_name

or for totals including copy stgpools use

q auditocc

Hope that helps..
Cheers
 
Back
Top