How to now the name of the Tape where is a node

toufic

Newcomer
Joined
Oct 2, 2009
Messages
2
Reaction score
0
Points
0
Hello,

I want to now the name of the Tape where is storadge a node.
Because why have unload some tape of the library.;)


Thnaks you.
Toufic.
 
I am sorry but I am not sure exactly what you are asking. If you are attempting to find tapes that contain data for a given node you could use the following:

Volumes that have data stored from a specifc node

Code:
SELECT DISTINCT node_name, volume_name, stgpool_name FROM volumeusage WHERE node_name='<enternodenamehere>'
or
Nodes that have data stored in a specifc volume

Code:
SELECT DISTINCT node_name, volume_name, stgpool_name FROM volumeusage WHERE volume_name='TAPE10'



bottom script - http://thobias.org/tsm/sql/index.html#toc76
 
Thank you for your answer

I have find :


q nodedata Nodename

Then i find all the tape whez data from this node have data.
 
Back
Top