Re: TSM Query to determine what is on a single tape

2003-10-06 Thread Fred Johanson
I use this to count files by client per tape: select volume_name,node_name,count(file_name) as #files from contents where volume_name=upper('$1') group by volume_name,node_name This lists client's files on a given tape: select node_name,file_name as "File Name " from co

Re: TSM Query to determine what is on a single tape

2003-10-06 Thread Alex Paschal
htliner, LLC (503) 745-6850 phone/vmail -Original Message- From: Gerald Wichmann [mailto:[EMAIL PROTECTED] Sent: Monday, October 06, 2003 11:24 AM To: [EMAIL PROTECTED] Subject: TSM Query to determine what is on a single tape Given a tape, is there a select query that will tell me what servers hav

TSM Query to determine what is on a single tape

2003-10-06 Thread Gerald Wichmann
Given a tape, is there a select query that will tell me what servers have data on that particular tape? It'd be nice to know what file systems as well but that level of granularity isn't necessary. I.e. I have tape XYZ, I run query and find out CLIENTA, CLIENTB, and CLIENTC have data on it. Geral