Nov 23, 2007 #1 Danieleinfn Technical User Joined Aug 16, 2007 Messages 5 Location IT Hi all, when I backup or archive a file in a pool, how I can know in wich tape my file is store? TNX D.
Hi all, when I backup or archive a file in a pool, how I can know in wich tape my file is store? TNX D.
Nov 28, 2007 #2 ProbablyDown MIS Joined Aug 15, 2002 Messages 422 Location US Not sure why you would need to know what tape the actual file is on.. Let TSM worry about that ;-) BUT you could see what volume data for a particular node is on by looking at the volumeusage table. To find all the tables you can run a "select tabname from tables" and note the table name (in this case VOLUMEUSAGE) Then to find the columns in that table you can: select colname from columns where tabname='VOLUMEUSAGE' From there you can say "select NODE_NAME, VOLUME_NAME from volumeusage where node_name='MYNODE'" or whatever the node name is... Upvote 0 Downvote
Not sure why you would need to know what tape the actual file is on.. Let TSM worry about that ;-) BUT you could see what volume data for a particular node is on by looking at the volumeusage table. To find all the tables you can run a "select tabname from tables" and note the table name (in this case VOLUMEUSAGE) Then to find the columns in that table you can: select colname from columns where tabname='VOLUMEUSAGE' From there you can say "select NODE_NAME, VOLUME_NAME from volumeusage where node_name='MYNODE'" or whatever the node name is...