[Veritas-bu] NBU7 - 219 Errors and Roving Storage Units

2010-08-20 Thread Rusty.Major
Has anyone seen intermittent 219 errors (storage unit is not defined in 
EMM) on NBU 7 due to storage units changing from their defined settings? 
When viewing the overview of the policy (either at CLI or Java GUI), the 
storage unit is set properly in the schedule (overriding the Attributes 
setting), but when you open the schedule details in the GUI, it shows the 
stunit as a different one. So far all the logs I've looked at show it 
going to the right storage unit, but it still is failing. I set everything 
properly yesterday and tested and overnight two policies have had this 
issue. I did apply the Java GUI known issues fix (which fixed one issue, 
but not this one).

Rusty Major, MCSE, BCFP, VCS ▪ Sr. Storage Engineer ▪ SunGard 
Availability Services ▪ 757 N. Eldridge Suite 200, Houston TX 77079 ▪ 
281-584-4693
Keeping People and Information Connected® ▪ 
http://availability.sungard.com/ 
P Think before you print 
CONFIDENTIALITY:  This e-mail (including any attachments) may contain 
confidential, proprietary and privileged information, and unauthorized 
disclosure or use is prohibited.  If you received this e-mail in error, 
please notify the sender and delete this e-mail from your system. 
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Netbackup - DFSR - Shadow Components

2010-08-20 Thread judy_hinchcliffe
Are you aware
That there a know issues with DFSR on netbackup 6.x and above.
And that there are work arounds to get the backups.

Tech docs to read
340189
343752
340248

just for starters.

go to tech site and search for DFSR to find all the docs on DFSR issues.

-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of Trunk
Sent: Wednesday, August 18, 2010 12:32 PM
To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
Subject: [Veritas-bu] Netbackup - DFSR - Shadow Components

My problem is about Windows DFS.

Netbackup Master
Server1: 6.5.4 on AIX 5.3
Client Netbackup
ServerDFS1: 6.0MP4 on Windows 2003R2 with DFS.

On ServerDFS1, there are 2 local disks. On the first, one volume (c:), on the 
second one mounted volume in c:\DFS.
I have a policy in Netbackup to save c: and "shadow copy components".
The problem is that the directories under c:\DFS are saved but not the files. 
It's possible that some directories are not saved...
These directories are in the DFS replication. 
The backup status is 0.

After search on the web and Symantec database, I found 
http://seer.support.veritas.com/docs/290900.htm and I update the client in 
6.5.4.
After the update, the job is blocked on "Entering Writing" and I must stop it. 
When I remove the "shadow components" of the policies, the job is OK. But the 
directories under c:\DFS are not saved.
In conclusion, I start with a problem and after the update I have 2 problems !

Thanks for your help.
Trunk

+--
|This was sent by mikla...@gmail.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Any body have script to accomplish following ?

2010-08-20 Thread Chapa, David
As you can see from the creation date, we're in the "way back machine"
on this one.

The construct should still work, Class is the policy - so you should be
able to tweak this one to get the output you're looking for.

Hope that helps

-chapa



#!/bin/ksh
# 
# Filename: data_backed_up
# 
# Purpose:  Determine amount of data being backed up with 
#   NetBackup for both Full and Incremental
#   schedules.
#
# Author: David A. Chapa
#
# Revision History:
# 06/26/98  Initial Creation 
# 11/17/98  dac:Updated design and added more functionality 
#***
#
KBYTES=0
FULLS=/tmp/fullbackups
INCRM=/tmp/incrmbackups
HEADER=/tmp/workfil.kb
OUTPUT=/tmp/data_jobs
OUTPUT1=/tmp/data_backup_full
OUTPUT2=/tmp/data_backup_incrm
ALLBKUPS=/tmp/allbkups
#
if [ -f $OUTPUT ];then
rm $OUTPUT
fi
if [ -f $OUTPUT1 ];then
rm $OUTPUT1
fi
#
if [ -f $OUTPUT2 ];then
rm $OUTPUT2
fi
echo " CLIENT   KBytes  CLASS   SCHEDULE  DATE
COMPLETED" > $HEADER
echo
"===
" >> $HEADER
#
#   Find the successful Backups (Status 0 and 1) minus any
unnecessary data
#
#bperror -hoursago 120 -backstat -U| fgrep -vi daily | fgrep -v "(" | 
#
bperror -hoursago 120 -backstat -U | fgrep -v "(" > $ALLBKUPS 
#
#   Find FULL Backups first
#
cat $ALLBKUPS | fgrep -vi daily |
#
#   This regular expression excludes any status code between   2 and
9
#   with two spaces in front to the number.
#
grep -v ^"\ \{2,\}[2-9]\{2\}" | 
#
#   This regular expression excludes any status code between  00 and
99
#   with one space in front to the number
#
grep -v ^"\ \{1,\}[0-9]\{2\}" | 
#
#   This regular expression excludes any status code between 000 and
999
#   with no spaces in front to the number
#
grep -v ^"[0-9]\{3\}" > $FULLS
#
#   Then puts all of this in a file called fullbackups
#
#   Now find the Incrementals
#
cat $ALLBKUPS | fgrep -vi weekly | fgrep -vi monthly | fgrep -vi year |
grep -v ^"\ \{2,\}[2-9]\{2\}" | 
grep -v ^"\ \{1,\}[0-9]\{2\}" |
grep -v ^"[0-9]\{3\}" > $INCRM

dupclient=""

for i in $FULLS $INCRM
do
cat $i | tail +2 | while read status client class schedule server date
time
do
  if [ "$client" != "$dupclient" ];then
bperror -d $date -e $date $time -client $client -server $server
| grep Kbytes |
awk -F\, '{print $4}' | awk '{print $1}' | while read total
 do
  KBYTES=`expr $total + $KBYTES`
 done
printf '%-12s' $client >> $OUTPUT
printf '%12s' $KBYTES"   " >> $OUTPUT
printf '%-14.11s' $class >> $OUTPUT
printf '%-12s' $schedule >> $OUTPUT
printf '%-9s' $date >> $OUTPUT
printf '%11s\n' $time >> $OUTPUT
  fi
dupclient=$client
KBYTES=0
done
cat $HEADER > $i.rpt
cat $OUTPUT >> $i.rpt
cp /dev/null $OUTPUT
done



David A. Chapa
Director, DP Strategy/Global Alliance

NetApp
720-272-8452 Mobile
ch...@netapp.com
www.netapp.com

Read my blog at http://blogs.netapp.com/barandgrill 

Follow my tweets on twitter: http://www.twitter.com/davidchapa


-Original Message-
From: Chapa, David 
Sent: Friday, August 20, 2010 8:05 AM
To: bolobaboo kabootar; veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Any body have script to accomplish following ?

I'm sure I do somewhere...but it will be in ksh - since I'm old :-)

I'll do a quick search, if I find something I'll post it here.  You may
need to modify it for policy type.  I think I wrote the original to give
me per client, per schedule.

-chapa 


David A. Chapa
Director, DP Strategy/Global Alliance

NetApp
720-272-8452 Mobile
ch...@netapp.com
www.netapp.com

Read my blog at http://blogs.netapp.com/barandgrill 

Follow my tweets on twitter: http://www.twitter.com/davidchapa


-Original Message-
From: bolobaboo kabootar [mailto:boloba...@gmail.com]
Sent: Friday, August 20, 2010 7:57 AM
To: veritas-bu@mailman.eng.auburn.edu
Subject: [Veritas-bu] Any body have script to accomplish following ?

Hi
I have NBU 6.5 enviornment. I want report which lists client name and
total data as per policy type. Example ...which are excahnge client and
what is total data size , which are unix client and their data
size...etc ..Then at end give total size for entire enviornment.

Thank you.
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/verit

Re: [Veritas-bu] Any body have script to accomplish following ?

2010-08-20 Thread Chapa, David
Hey, maybe that was mine from YEARS ago :-) 


David A. Chapa
Director, DP Strategy/Global Alliance

NetApp
720-272-8452 Mobile
ch...@netapp.com
www.netapp.com

Read my blog at http://blogs.netapp.com/barandgrill 

Follow my tweets on twitter: http://www.twitter.com/davidchapa


-Original Message-
From: Whelan, Patrick [mailto:patrick.whe...@lloydsbanking.com] 
Sent: Friday, August 20, 2010 8:09 AM
To: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Any body have script to accomplish following ?


 
Someone published a ksh version a few weeks ago. I have a Perl version
if you want.

Regards,

Patrick Whelan
NetBackup Specialist
Wholesale Markets and Treasury & Trading Lloyds Banking Group
Desk: +44 (0) 207 158 6123
Loc: OBS 2C-132
P please don't print this e-mail unless you really need to.


-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of
bolobaboo kabootar
Sent: 20 August 2010 14:57
To: veritas-bu@mailman.eng.auburn.edu
Subject: [Veritas-bu] Any body have script to accomplish following ?

Hi
I have NBU 6.5 enviornment. I want report which lists client name and
total data as per policy type. Example ...which are excahnge client and
what is total data size , which are unix client and their data
size...etc ..Then at end give total size for entire enviornment.

Thank you.
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu
Lloyds TSB Bank plc. Registered Office: 25 Gresham Street, London EC2V
7HN. Registered in England and Wales, number 2065. Telephone: 020 7626
1500.
Bank of Scotland plc. Registered Office: The Mound, Edinburgh EH1 1YZ.
Registered in Scotland, number 327000. Telephone: 0870 600 5000

Lloyds TSB Scotland plc. Registered Office: Henry Duncan House, 120
George Street, Edinburgh EH2 4LH. Registered in Scotland, number 95237.
Telephone: 0131 225 4555.
Cheltenham & Gloucester plc. Registered Office: Barnett Way, Gloucester
GL4 3RL. Registered in England and Wales, number 2299428. Telephone:
01452 372372.

Lloyds TSB Bank plc, Lloyds TSB Scotland plc, Bank of Scotland plc and
Cheltenham & Gloucester plc are authorised and regulated by the
Financial Services Authority.
Halifax is a division of Bank of Scotland plc. Cheltenham & Gloucester
Savings is a division of Lloyds TSB Bank plc.

HBOS plc. Registered Office: The Mound, Edinburgh EH1 1YZ. Registered in
Scotland, number 218813. Telephone: 0870 600 5000

Lloyds Banking Group plc. Registered Office: The Mound, Edinburgh EH1
1YZ. Registered in Scotland, number 95000. Telephone: 0131 225 4555

This e-mail (including any attachments) is private and confidential and
may contain privileged material. If you have received this e-mail in
error, please notify the sender and delete it  (including any
attachments) immediately. You must not copy, distribute, disclose or use
any of the information in it or any attachments.

Telephone calls may be monitored or recorded.


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Any body have script to accomplish following ?

2010-08-20 Thread Chapa, David
I'm sure I do somewhere...but it will be in ksh - since I'm old :-)

I'll do a quick search, if I find something I'll post it here.  You may
need to modify it for policy type.  I think I wrote the original to give
me per client, per schedule.

-chapa 


David A. Chapa
Director, DP Strategy/Global Alliance

NetApp
720-272-8452 Mobile
ch...@netapp.com
www.netapp.com

Read my blog at http://blogs.netapp.com/barandgrill 

Follow my tweets on twitter: http://www.twitter.com/davidchapa


-Original Message-
From: bolobaboo kabootar [mailto:boloba...@gmail.com] 
Sent: Friday, August 20, 2010 7:57 AM
To: veritas-bu@mailman.eng.auburn.edu
Subject: [Veritas-bu] Any body have script to accomplish following ?

Hi
I have NBU 6.5 enviornment. I want report which lists client name and
total data as per policy type. Example ...which are excahnge client and
what is total data size , which are unix client and their data
size...etc ..Then at end give total size for entire enviornment.

Thank you.
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Any body have script to accomplish following ?

2010-08-20 Thread Whelan, Patrick
 
Someone published a ksh version a few weeks ago. I have a Perl version
if you want.

Regards,

Patrick Whelan
NetBackup Specialist
Wholesale Markets and Treasury & Trading
Lloyds Banking Group
Desk: +44 (0) 207 158 6123
Loc: OBS 2C-132
P please don't print this e-mail unless you really need to.


-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of
bolobaboo kabootar
Sent: 20 August 2010 14:57
To: veritas-bu@mailman.eng.auburn.edu
Subject: [Veritas-bu] Any body have script to accomplish following ?

Hi
I have NBU 6.5 enviornment. I want report which lists client name and
total data as per policy type. Example ...which are excahnge client and
what is total data size , which are unix client and their data
size...etc ..Then at end give total size for entire enviornment.

Thank you.
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu
Lloyds TSB Bank plc. Registered Office: 25 Gresham Street, London EC2V 7HN. 
Registered in England and Wales, number 2065. Telephone: 020 7626 1500.
Bank of Scotland plc. Registered Office: The Mound, Edinburgh EH1 1YZ. 
Registered in Scotland, number 327000. Telephone: 0870 600 5000

Lloyds TSB Scotland plc. Registered Office: Henry Duncan House, 120 George 
Street, Edinburgh EH2 4LH. Registered in Scotland, number 95237. Telephone: 
0131 225 4555.
Cheltenham & Gloucester plc. Registered Office: Barnett Way, Gloucester GL4 
3RL. Registered in England and Wales, number 2299428. Telephone: 01452 372372.

Lloyds TSB Bank plc, Lloyds TSB Scotland plc, Bank of Scotland plc and 
Cheltenham & Gloucester plc are authorised and regulated by the Financial 
Services Authority.
Halifax is a division of Bank of Scotland plc. Cheltenham & Gloucester Savings 
is a division of Lloyds TSB Bank plc.

HBOS plc. Registered Office: The Mound, Edinburgh EH1 1YZ. Registered in 
Scotland, number 218813. Telephone: 0870 600 5000

Lloyds Banking Group plc. Registered Office: The Mound, Edinburgh EH1 1YZ. 
Registered in Scotland, number 95000. Telephone: 0131 225 4555

This e-mail (including any attachments) is private and confidential and may 
contain privileged material. If you have received this e-mail in error, please 
notify the sender and delete it  (including any attachments) immediately. You 
must not copy, distribute, disclose or use any of the information in it or any 
attachments.

Telephone calls may be monitored or recorded.


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Any body have script to accomplish following ?

2010-08-20 Thread bolobaboo kabootar
Hi
I have NBU 6.5 enviornment. I want report which lists client name and
total data as per policy type. Example ...which are excahnge client
and what is total data size , which are unix client and their data
size...etc ..Then at end give total size for entire enviornment.

Thank you.
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu