Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

activ save sesion

Status
Not open for further replies.

razvannw

Technical User
Jul 26, 2005
33
RO
Is there any command to see all active backup operation.
Not from the GUI.

 
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
 
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top