check labeled tape is what LTO

fadzlirot

ADSM.ORG Member
Joined
Jan 21, 2015
Messages
52
Reaction score
1
Points
0
how do i check what LTO (LTO3 or LTO4) the tapes thta i have in library?
i tried select * from volumes and q vol f=d but cant find it.
 
Is there any way to see for every tape that ever labeled? not just the one inside library
 
Hi,
Libvolumes does only store information about current config. Not sure if any tables holds the information you seek. The volumehistory does not store mediatype.
 
thanks. i forgot about libvolumes earlier. too bad i cant list every tape the labeled before.
 
I'm guessing you are not using 8 character labels, but if you are, you can use:

Code:
select distinct(volume_name) from volhistory where volume_name like '%L3'
select distinct(volume_name) from volhistory where volume_name like '%L4'

That won't give you all volumes ever labelled, but at least every volume still in the volume history.
 
Back
Top