cancel
Showing results for 
Search instead for 
Did you mean: 

query

Abhsihek_Malhot
Level 3
hello guys,

can any one help me understanding this. I am very new to net backup and trying to understand how it works.

I have a question for a policy that is currently running. From the output of bpdbjobs | grep -i active ...i can see the following

466859 Backup Active POL_E12_DB_ONLINE Daily-Full-Control
ukcsbdw1-p ukcsbbk1-p 16485
466861 Backup Active POL_E12_DB_ONLINE Daily-Full-Slave
ukcsbdw1-p ukcsbbk1-p 16511
466862 Backup Active POL_E12_DB_ONLINE Daily-Full-Slave
ukcsbdw1-p ukcsbbk1-p 16511
466863 Backup Active POL_E12_DB_ONLINE Daily-Full-Slave
ukcsbdw1-p ukcsbbk1-p 16511
466864 Backup Active POL_E12_DB_ONLINE Daily-Full-Slave
ukcsbdw1-p ukcsbbk1-p 16511



jz wanted to know why for POL_E12_DB_ONLINE there are 5 secissions running
7 REPLIES 7

Dennis_Strom
Level 6
you are most likely streaming with that policy. Go the attributes tab on that policy and check and see if you have allow multiple data streams checked.

Abhsihek_Malhot
Level 3
well tnks it is set to Yes.....but can u pls tell me can these sessions be increased or decreased...and How?....one more thing...whether these simultaneous session writes on a particular media or diff medias simultaneously

Abhsihek_Malhot
Level 3
oh so sorry....it is not no...the attributes are as follow

Policy Name: POL_E12_DB_ONLINE

Policy Type: SAP
Active: yes
Effective date: 01/18/2004 00:00:00
Mult. Data Streams: no
Frozen Image: 0
Backup Copy: 0
Client Encrypt: no
Policy Priority: 0
Max Jobs/Policy: 4

Dennis_Strom
Level 6
It is being controlled by the Max Jobs/Policy. I'm failry sure.
What is in the file list?

Abhsihek_Malhot
Level 3
hi...its a veritas script that is included in the path


Include: /oracle/E12/sapscripts/E12_online_backup


ukcsbdw1# strings E12_online_backup
#!/bin/ksh
#bcpyrght
#***************************************************************************
#* Copyright 1993 - 1998 VERITAS Software Corporation, All Rights Reserved *
#***************************************************************************
#ecpyrght
SID=`basename $0 | cut -d _ -f 1`
typeset -l SID_LC=$SID
#set -x
#exec 1>/oracle/${SID}/sapscripts/trace 2>&1
RETURN_STATUS=0
EX_CMD_LINE=""
# Runs brbackup as the user specified. Returns the status from brarchive
run_backup()
USER=$1
su - $USER -c "$CMD_LINE"
return $?
# If SAP_SERVER exists then export it to make it available to backint.
if
then
EX_CMD_LINE="$EX_CMD_LINE setenv SAP_SERVER $SAP_SERVER;"
# If SAP_CLASS exists then export it to make it available to backint.
if
then
EX_CMD_LINE="$EX_CMD_LINE setenv SAP_CLASS $SAP_CLASS;"
# Run the backups
CMD_LINE="$EX_CMD_LINE brbackup -c -r /oracle/${SID}/102_64/dbs/init${SID}.utl_o
nline -u /"
run_backup ora$SID_LC
RETURN_STATUS=$?
if ; then
exit $RETURN_STATUS
exit $RETURN_STATUS

Abhsihek_Malhot
Level 3
hi i guess u r right..it is dependednt on no of jobs configured.......but jz one more thing since there r so many jobs running ...are these writing on diffe medias or on same medias....and how can we find that which medias are being used for a particular active session from cli...as we dont have access to gui...

Dennis_Strom
Level 6
bpimmeida -l -media xxxxxx -d 12/01/2006 12:12:12 -e 12/04/2006 12:12:12 -M masterservername | grep servername
servername is the name of the server being backed up.
-d is the start date
-e is the end date

you can look at the command with
man -M /opt/openv/man bpimmedia