Results 1 to 2 of 2
Thread: Large file on TSM
-
06-27-2012, 10:48 AM #1Newcomer
- Join Date
- Feb 2011
- Posts
- 14
- Thanks
- 0
- Thanked 0 Times in 0 Posts
Large file on TSM
Can someone show me a SQL statement to show the ll_name that is greater than 200GB in size?
-
06-27-2012, 02:56 PM #2Senior Member
- Join Date
- Apr 2007
- Location
- Oslo, Norway
- Posts
- 240
- Thanks
- 2
- Thanked 17 Times in 17 Posts
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.
A better approach will be to determine what node has more than 200Gb from the auditocc table, and start from there.Code:select * from contents where FILE_SIZE>200000000000
Then runCode:select * from auditocc where total_mb>200000
Code:select * from contents where FILE_SIZE>200000000000 and NODE_NAME='Your_Node_Name'
Last edited by Trident; 06-27-2012 at 02:57 PM. Reason: typo
-= Trident =-
Similar Threads
-
Backup-Problem of a large File
By matze in forum TSM OperationReplies: 2Last Post: 09-30-2011, 02:55 PM -
Large file support (>1TB)?
By karim in forum Capacity PlanningReplies: 2Last Post: 03-18-2010, 09:32 AM -
dsmsched.log file very large
By TeEsEm in forum Backup / Archive DiscussionReplies: 1Last Post: 11-29-2006, 06:01 PM -
Is it possible to migrate large file using HSM with spliting file.
By vjy5959 in forum Hierarchical Storage ManagementReplies: 1Last Post: 05-26-2005, 05:49 PM -
TSM and Large Netware File shares
By schulerta in forum Backup / Archive DiscussionReplies: 2Last Post: 02-02-2004, 04:46 AM


Reply With Quote