Question

tureem

ADSM.ORG Member
Joined
Mar 21, 2003
Messages
31
Reaction score
0
Points
0
Website
Visit site
Is there a way to list amount of data stored pr node? My pools keep growing and i need to find out what nodes that takes all the space.



Roar
 
Hi,



QUERY AUDITOCCUPANCY (Query Client Node Storage Utilization)

Use this command to display information about client node server storage

utilization. To display current license audit information from the server, use

the AUDIT LICENSE command prior to issuing the QUERY AUDITOCCUPANCY command.



(copied from output of HELP QUERY AUDITOCCUPANCY)



Bye R.
 
or,, you could use a select statement,



select node_name, sum(logical_mb) as DATA_IN_MB, sum(num_files) as NUM_OF_FILES

from occupancy group by node_name having min(num_files) >= 1 order by data_in_mb desc





/damien

:)
 
Back
Top