Large file on TSM

dhipp

ADSM.ORG Member
Joined
Feb 2, 2011
Messages
19
Reaction score
0
Points
0
Can someone show me a SQL statement to show the ll_name that is greater than 200GB in size?
 
Hi,

This query IS NOT RECOMMENDED. It may take a long time if your TSM DB is large, or running on slow disks. You have been warned.

Code:
select * from contents where FILE_SIZE>200000000000

A better approach will be to determine what node has more than 200Gb from the auditocc table, and start from there.

Code:
select * from auditocc where total_mb>200000

Then run

Code:
select * from contents where FILE_SIZE>200000000000 and NODE_NAME='Your_Node_Name'
 
Last edited:
Back
Top