Hello Experts,
Is there a way to know the medium name by just querying the media type using the dbmcli ? (instead of getting full list using the "medium_getall")
for eg: I want the medium name for the type "LOG" , Is there a command to execute like
dbmcli> medi... LOG
O/P: Media name
thanks in advance
Hi Balu,
no, there is no such filter option.
If you want to use such a list in a script or something similar you've to do the filtering yourself.
e.g.
dbmcli -U c medium_getall | grep -i LOG
KR Lars
Add a comment