Jul 26, 2005 #1 razvannw Technical User Jul 26, 2005 33 RO Is there any command to see all active backup operation. Not from the GUI.
Jul 26, 2005 #2 ag100 MIS Jul 1, 2000 172 US Hey - Try this: #nsradmin nsradmin> show session nsradmin> print type:nsr You can script this is well by doing something like: echo "show session" > /tmp/inp echo "print type:nsr" >> /tmp/inp nsradmin -s <backup_server> -i /tmp/inp Good luck! -ag100 Upvote 0 Downvote
Hey - Try this: #nsradmin nsradmin> show session nsradmin> print type:nsr You can script this is well by doing something like: echo "show session" > /tmp/inp echo "print type:nsr" >> /tmp/inp nsradmin -s <backup_server> -i /tmp/inp Good luck! -ag100
Jul 26, 2005 #3 new2me Technical User Mar 12, 2004 176 CA assuming UNIX... see how many groups are currently running or hung. ps -ef | grep savegrp see how many save sets running. ps -ef | grep 'nsrexec ' you could pretty it up by sort. Upvote 0 Downvote
assuming UNIX... see how many groups are currently running or hung. ps -ef | grep savegrp see how many save sets running. ps -ef | grep 'nsrexec ' you could pretty it up by sort.