Re: Tape Volumes Needed for a Restore

2003-12-01 Thread Alexander Verkooijen
According to Richard Sims wonderful
Quick Facts page there is no preview
option for the restore command.

Go to

http://people.bu.edu/rbs/ADSM.QuickFacts

and search for "Restoral preview"

All credit goes to mr. Sims.


Kind regards,

Alexander


Alexander Verkooijen
Senior Systems Programmer
High Performance Computing
SARA Computing & Networking Services


> -Original Message-
> From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] 
> On Behalf Of Gerald Wichmann
> Sent: maandag 1 december 2003 23:04
> To: [EMAIL PROTECTED]
> Subject: Tape Volumes Needed for a Restore
> 
> 
> If I load the TSM GUI and select a few directories to 
> restore, is there some
> way to determine which tapes will be required to satisfy that 
> restore? A
> sort of preview=yes option for restores? Or how would you 
> determine which
> tapes you need given a point in time restore of an entire server?
> 
> Thanks,
> Gerald
> 
> 
> 
> This e-mail has been captured and archived by the ZANTAZ 
> Digital Safe(tm)
> service.  For more information, visit us at www.zantaz.com.
> IMPORTANT: This electronic mail message is intended only for 
> the use of the
> individual or entity to which it is addressed and may contain 
> information
> that is privileged, confidential or exempt from disclosure 
> under applicable
> law.  If the reader of this message is not the intended 
> recipient, or the
> employee or agent responsible for delivering this message to 
> the intended
> recipient, you are hereby notified that any dissemination, 
> distribution or
> copying of this communication is strictly prohibited.  If you 
> have received
> this communication in error, please notify the sender immediately by
> telephone or directly reply to the original message(s) sent.  
> Thank you.
> 


Re: Query dsm.opt file from TSM Server?

2003-12-01 Thread Richard Sims
>I have 2 Network Cards in my TSM Server.
>I would like to know which clients are connecting to which card.
>I know I can look at each individual client at the dsm.opt file.
>
>Is there a way to find this information from the server side?
>If I don't have to go to each client that would be great!

See "IP addresses of clients" in ADSM QuickFacts.
The most obvious way is to inspect ANR0406I messages in the Activity Log.

  Richard Sims, http://people.bu.edu/rbs


Tape Volumes Needed for a Restore

2003-12-01 Thread Gerald Wichmann
If I load the TSM GUI and select a few directories to restore, is there some
way to determine which tapes will be required to satisfy that restore? A
sort of preview=yes option for restores? Or how would you determine which
tapes you need given a point in time restore of an entire server?

Thanks,
Gerald



This e-mail has been captured and archived by the ZANTAZ Digital Safe(tm)
service.  For more information, visit us at www.zantaz.com.
IMPORTANT: This electronic mail message is intended only for the use of the
individual or entity to which it is addressed and may contain information
that is privileged, confidential or exempt from disclosure under applicable
law.  If the reader of this message is not the intended recipient, or the
employee or agent responsible for delivering this message to the intended
recipient, you are hereby notified that any dissemination, distribution or
copying of this communication is strictly prohibited.  If you have received
this communication in error, please notify the sender immediately by
telephone or directly reply to the original message(s) sent.  Thank you.


Re: ACD5130 - error=4103 - TDP for Domino

2003-12-01 Thread Eduardo Esteban
Have you checked if the Lotus Registry entry is OK?
The registry entry HKEY_LOCAL_MACHINE\SOFTWARE\Lotus\Domino\Path
should point to the Domino execution directory. If the value is
invalid or the entry does not exist, you can workaround it
by pre-appending the Domino execution directory to the PATH
environment variable. You can also try the
"domdsmc set notesinipath" to make sure the correct the
notes.ini file is used.

Eduardo

"ADSM: Dist Stor Manager" <[EMAIL PROTECTED]> wrote on 12/01/2003
12:55:25 PM:

> Hello all,

> I'm running TSM 5.2.1.0 on a Windows 2003 server.
> I have 4 TDP for Domino Clients (Windows 2000) that were just upgraded
to
> Domino 6.5.
> TDP Version 5.1.5, TSM Version 5.1.5.9

> Three of the four clients receive the following error message:  (can't
see
> a difference)

> ^^
> ACD5130E Could not initialize the connection to Lotus Domino properly,
> error=4103

> ^^

> The backup events report success, but 0 Kb is being backed up, so
basically
> the backups are not working.

> I found a few hits on the ADSM.org site, and a few hits on IBM.com, and
few
> on Google,
> But none seem to hit upon the error-4103 for this environment.

> Any ideas?

> Thanks,
> Deb Randolph
> First Banks, Inc.
> St. Louis, MO

>
> ***N O T I C E***
> The information contained in this e-mail, and in any accompanying
> documents, may constitute confidential and/or legally privileged
> information.  The information is intended only for use by the
> designated recipient.  If you are not the intended recipient (or
> responsible for the delivery of the message to the intended
> recipient), you are hereby notified that any dissemination,
> distribution, copying, or other use of, or taking of any action in
> reliance on this e-mail is strictly prohibited.  If you have received
> this e-mail communication in error, please notify the sender
> immediately and delete the message from your system.
> ***


Re: Query dsm.opt file from TSM Server?

2003-12-01 Thread Alex Paschal
Hi, Marc.

The easiest way is to have your networking department do a ip accounting on
the switch ports your TSM server interfaces are connected to.  It's easy and
it's low overhead and as a bonus it comes out in an easy to read format.

Otherwise, you might do an iptrace and process the log.

Ooh!  You could "accidentally" down an interface for one night and see what
misses.

You could create a file matching node names and node passwords, separated by
some character, say, a vertical bar.  Then read that with something that
restores each dsm.sys file and pulls out the tcpserveraddress.  It also
helps to do a client action to do a selective backup of the dsm.sys file to
force it into the diskpool.  That would save a lot of tape mounting time.

file:
node1|node1pw
node2|node2pw

script:
#!/usr/bin/perl
while (<>) {
   chomp;
   ($node,$pw) = split (/|/);
   system ("dsmc -virtualnodename=$node -passw=$pw restore
/usr/tivoli/tsm/client/ba/bin/dsm.sys /tmp/tmp.sys");
   open (FILE, "/tmp/tmp.sys");
   $tcps = "not found";
   while ($sysline = ) {
  chomp $sysline;
  if ($sysline =~ /^ *[^#].*tcps/) {
 ($garbage,$tcps) = split (/ /,$sysline);
  }
   }
   close (FILE);
   print "$node   $tcps\n";
}

Execute:
cat file | script

If you decide to go this route, the script probably needs some fixing and
cleaning up, I just kind of extemporized it.  And I'd probably fix that
split for $sysline, that's not going to work well if there are leading
spaces.  You know, this could be useful for lot of stuff.  Hmm...

Alex Paschal
Freightliner, LLC
(503) 745-6850 phone/vmail


-Original Message-
From: Marc Levitan [mailto:[EMAIL PROTECTED]
Sent: Monday, December 01, 2003 7:40 AM
To: [EMAIL PROTECTED]
Subject: Query dsm.opt file from TSM Server?


I have 2 Network Cards in my TSM Server.
I would like to know which clients are connecting to which card.
I know I can look at each individual client at the dsm.opt file.

Is there a way to find this information from the server side?
If I don't have to go to each client that would be great!


Thanks,
Marc Levitan
Storage Management Specialist
PFPC Global Funds Services



-
The contents of this email are the property of PNC. If it was not addressed
to you, you have no legal right to read it. If you think you received it in
error, please notify the sender. Do not forward or copy without permission
of the sender.


ACD5130 - error=4103 - TDP for Domino

2003-12-01 Thread Debi Randolph
Hello all,

I'm running TSM 5.2.1.0 on a Windows 2003 server.
I have 4 TDP for Domino Clients (Windows 2000) that were just upgraded to
Domino 6.5.
TDP Version 5.1.5, TSM Version 5.1.5.9

Three of the four clients receive the following error message:  (can't see
a difference)

^^
ACD5130E Could not initialize the connection to Lotus Domino properly,
error=4103

^^

The backup events report success, but 0 Kb is being backed up, so basically
the backups are not working.

I found a few hits on the ADSM.org site, and a few hits on IBM.com, and few
on Google,
But none seem to hit upon the error-4103 for this environment.

Any ideas?

Thanks,
Deb Randolph
First Banks, Inc.
St. Louis, MO







***N O T I C E***
The information contained in this e-mail, and in any accompanying
documents, may constitute confidential and/or legally privileged
information.  The information is intended only for use by the
designated recipient.  If you are not the intended recipient (or
responsible for the delivery of the message to the intended
recipient), you are hereby notified that any dissemination,
distribution, copying, or other use of, or taking of any action in
reliance on this e-mail is strictly prohibited.  If you have received
this e-mail communication in error, please notify the sender
immediately and delete the message from your system.
***


Re: ANR8302E: How do I test new drive?

2003-12-01 Thread Coats, Jack
Just a thought, take TSM server down.

Use an OS native program (Microsoft Backup) using a hand fed scratch tape
or two to backup the local system and restore a few files until you believe
the
drive will hold its own.

Then start with TSM.  If the same tapes are read and written OK in other
drives, then you still have a drive problem, IMHO.  (Or cable, or SCSI
controller).
If all the errors are on the same drive, you may still have a problem.

LOL ... JC

> -Original Message-
> From: Tobias Hofmann [SMTP:[EMAIL PROTECTED]
> Sent: Monday, December 01, 2003 11:19 AM
> To:   [EMAIL PROTECTED]
> Subject:  ANR8302E: How do I test new drive?
>
> Ladies, gentlemen,
>
> a new, replaced LTO drive gives me headaches - in the following situation:
>
> OS: MS Win2k Advanced Server, 5.00.2195, SP2
> TSM: Storage Management Server for Windows - Version 5, Release 1, Level
> 0.0
>
> After having worked with no probs afaik, last week one of my two HP
> ultrium LTO drives died and was replaced by dell (guarantee/bronce
> contract). Following this, i wittnessed for two days the cumbersome
> process of firmware-updating the library (PV136T, equals a ADIC Scalar
> 100, or so I am told), after which the system seemed ok. I deleted drive
> and path definitions and hoped for the best. This is what I have seen
> two days later:
>
> 11/27/03   15:19:30  ANR0984I Process 22 for MIGRATION started in
> the  BACKGROUND at 15:19:30.
> 11/27/03   15:19:30  ANR1000I Migration process 22 started for
> storage pool  DISKPOOL.
> 11/27/03   15:20:17  ANR8337I LTO volume 02L1 mounted in drive
> MT2.0.0.3  (mt2.0.0.3).
> 11/27/03   15:46:35  ANR8337I LTO volume 05L1 mounted in drive
> MT1.0.0.3  (mt1.0.0.3).
> 11/27/03   15:46:38  ANR1340I Scratch volume 05L1 is now defined
> in storage  pool LTOPOOL1.
> 11/27/03   15:49:53  ANR8302E I/O error on drive MT1.0.0.3
> (mt1.0.0.3)  (OP=WRITE, Error Number=1117,
> CC=306, KEY=03, ASC=0C,  ASCQ=00,
> SENSE=71.00.03.00.00.00.00.0E.00.00.00.00.0C.00
> .00.00.75.0B.00.00.00.00., Description=Drive or media  failure).
>   Refer to Appendix D in the 'Messages' manualfor
> recommended action.
> 11/27/03   15:49:53  ANR8359E Media fault detected on LTO volume
> 05L1 in  drive MT1.0.0.3 (mt1.0.0.3) of
> library LB0.0.0.3.
> 11/27/03   15:49:53  ANR1411W Access mode for volume 05L1 now
> set to  "read-only" due to write error.
> 11/27/03   15:49:53  ANR0523W Transaction failed for session 1837
> for node CMS1  (WinNT) - error on output storage
> device.
> 11/27/03   15:49:59  ANR1341I Scratch volume 05L1 has been
> deleted from  storage pool LTOPOOL1.
> 11/27/03   15:50:49  ANR8468I LTO volume 05L1 dismounted from
> drive  MT1.0.0.3 (mt1.0.0.3) in library LB0.0.0.3.
> 11/27/03   15:51:41  ANR8337I LTO volume 09L1 mounted in drive
> MT1.0.0.3  (mt1.0.0.3).
> 11/27/03   15:51:45  ANR1340I Scratch volume 09L1 is now defined
> in storage  pool LTOPOOL1.
> 11/27/03   15:53:40  ANR8302E I/O error on drive MT1.0.0.3
> (mt1.0.0.3)  (OP=WRITE, Error Number=1117,
> CC=306, KEY=03, ASC=0C,  ASCQ=00,
> SENSE=71.00.03.00.00.00.00.0E.00.00.00.00.0C.00
> .00.00.75.0B.00.00.00.00., Description=Drive or media  failure).
>   Refer to Appendix D in the 'Messages' manualfor
> recommended action.
> 11/27/03   15:53:40  ANR8359E Media fault detected on LTO volume
> 09L1 in  drive MT1.0.0.3 (mt1.0.0.3) of
> library LB0.0.0.3.
> 11/27/03   15:53:40  ANR1411W Access mode for volume 09L1 now
> set to  "read-only" due to write error.
> 11/27/03   15:53:40  ANR0523W Transaction failed for session 1837
> for node CMS1  (WinNT) - error on output storage
> device.
> 11/27/03   15:53:46  ANR1341I Scratch volume 09L1 has been
> deleted from  storage pool LTOPOOL1.
> 11/27/03   15:54:16  ANR8468I LTO volume 09L1 dismounted from
> drive  MT1.0.0.3 (mt1.0.0.3) in library LB0.0.0.3.
> 11/27/03   15:55:06  ANR8337I LTO volume 10L1 mounted in drive
> MT1.0.0.3  (mt1.0.0.3).
> 11/27/03   15:55:11  ANR1340I Scratch volume 10L1 is now defined
> in storage  pool LTOPOOL1.
> 11/27/03   15:56:47  ANR8302E I/O error on drive MT1.0.0.3
> (mt1.0.0.3)  (OP=WEOF, Error Number=1117,
> CC=306, KEY=03, ASC=0C,  ASCQ=00,
> SENSE=70.00.03.00.00.00.00.0E.00.00.00.00

ANR8302E: How do I test new drive?

2003-12-01 Thread Tobias Hofmann
Ladies, gentlemen,

a new, replaced LTO drive gives me headaches - in the following situation:

OS: MS Win2k Advanced Server, 5.00.2195, SP2
TSM: Storage Management Server for Windows - Version 5, Release 1, Level 0.0
After having worked with no probs afaik, last week one of my two HP
ultrium LTO drives died and was replaced by dell (guarantee/bronce
contract). Following this, i wittnessed for two days the cumbersome
process of firmware-updating the library (PV136T, equals a ADIC Scalar
100, or so I am told), after which the system seemed ok. I deleted drive
and path definitions and hoped for the best. This is what I have seen
two days later:
11/27/03   15:19:30  ANR0984I Process 22 for MIGRATION started in
the  BACKGROUND at 15:19:30.
11/27/03   15:19:30  ANR1000I Migration process 22 started for
storage pool  DISKPOOL.
11/27/03   15:20:17  ANR8337I LTO volume 02L1 mounted in drive
MT2.0.0.3  (mt2.0.0.3).
11/27/03   15:46:35  ANR8337I LTO volume 05L1 mounted in drive
MT1.0.0.3  (mt1.0.0.3).
11/27/03   15:46:38  ANR1340I Scratch volume 05L1 is now defined
in storage  pool LTOPOOL1.
11/27/03   15:49:53  ANR8302E I/O error on drive MT1.0.0.3
(mt1.0.0.3)  (OP=WRITE, Error Number=1117,
CC=306, KEY=03, ASC=0C,  ASCQ=00,
SENSE=71.00.03.00.00.00.00.0E.00.00.00.00.0C.00
.00.00.75.0B.00.00.00.00., Description=Drive or media  failure).
 Refer to Appendix D in the 'Messages' manualfor
recommended action.
11/27/03   15:49:53  ANR8359E Media fault detected on LTO volume
05L1 in  drive MT1.0.0.3 (mt1.0.0.3) of
library LB0.0.0.3.
11/27/03   15:49:53  ANR1411W Access mode for volume 05L1 now
set to  "read-only" due to write error.
11/27/03   15:49:53  ANR0523W Transaction failed for session 1837
for node CMS1  (WinNT) - error on output storage
device.
11/27/03   15:49:59  ANR1341I Scratch volume 05L1 has been
deleted from  storage pool LTOPOOL1.
11/27/03   15:50:49  ANR8468I LTO volume 05L1 dismounted from
drive  MT1.0.0.3 (mt1.0.0.3) in library LB0.0.0.3.
11/27/03   15:51:41  ANR8337I LTO volume 09L1 mounted in drive
MT1.0.0.3  (mt1.0.0.3).
11/27/03   15:51:45  ANR1340I Scratch volume 09L1 is now defined
in storage  pool LTOPOOL1.
11/27/03   15:53:40  ANR8302E I/O error on drive MT1.0.0.3
(mt1.0.0.3)  (OP=WRITE, Error Number=1117,
CC=306, KEY=03, ASC=0C,  ASCQ=00,
SENSE=71.00.03.00.00.00.00.0E.00.00.00.00.0C.00
.00.00.75.0B.00.00.00.00., Description=Drive or media  failure).
 Refer to Appendix D in the 'Messages' manualfor
recommended action.
11/27/03   15:53:40  ANR8359E Media fault detected on LTO volume
09L1 in  drive MT1.0.0.3 (mt1.0.0.3) of
library LB0.0.0.3.
11/27/03   15:53:40  ANR1411W Access mode for volume 09L1 now
set to  "read-only" due to write error.
11/27/03   15:53:40  ANR0523W Transaction failed for session 1837
for node CMS1  (WinNT) - error on output storage
device.
11/27/03   15:53:46  ANR1341I Scratch volume 09L1 has been
deleted from  storage pool LTOPOOL1.
11/27/03   15:54:16  ANR8468I LTO volume 09L1 dismounted from
drive  MT1.0.0.3 (mt1.0.0.3) in library LB0.0.0.3.
11/27/03   15:55:06  ANR8337I LTO volume 10L1 mounted in drive
MT1.0.0.3  (mt1.0.0.3).
11/27/03   15:55:11  ANR1340I Scratch volume 10L1 is now defined
in storage  pool LTOPOOL1.
11/27/03   15:56:47  ANR8302E I/O error on drive MT1.0.0.3
(mt1.0.0.3)  (OP=WEOF, Error Number=1117,
CC=306, KEY=03, ASC=0C,  ASCQ=00,
SENSE=70.00.03.00.00.00.00.0E.00.00.00.00.0C.00
.00.00.75.0B.00.00.00.00., Description=Drive or media  failure).
 Refer to Appendix D in the 'Messages' manualfor
recommended action.
11/27/03   15:56:47  ANR8359E Media fault detected on LTO volume
10L1 in  drive MT1.0.0.3 (mt1.0.0.3) of
library LB0.0.0.3.
11/27/03   15:56:47  ANR1401W Mount request denied for volume
10L1 - mount  failed.
11/27/03   15:57:18  ANR8468I LTO volume 10L1 dismounted from
drive  MT1.0.0.3 (mt1.0.0.3) in library LB0.0.0.3.
11/27/03   16:00:04  ANR8302E I/O error on drive MT1.0.0.3
(mt1.0.0.3)  (OP=READ, Error Number=1117,
CC=306, KEY=03, ASC=14,  ASCQ=00,
SENSE=F0.00.03.00.00.00.50.0E.00.00.0

Re: Domino server crashes at startup 'TDP for Lotus Domino' backup

2003-12-01 Thread Del Hoobler
Paul,

I would upgrade to the latest Data Protection for Domino.
There have been a number of issues similar to this solved.
Go here:

   Site:  ftp.software.ibm.com
   Dir:
/storage/tivoli-storage-management/maintenance/tivoli-data-protection/domino/v515

If the problem still exists, please call IBM support.

Thanks,

Del



> After a long period without any problems suddenly our Domino server
> crashes when we start the 'TDP for Lotus Domino'  backup
> The machine was rebooted but the problem remains.


Re: last backup info

2003-12-01 Thread Mr. Lindsay Morris
We have found that many TDP agents, especially older ones, don't bother
loading last-backup-date info into the TSM database when they complete.  I
think I've also seen this with some Mac clients.   But almost all the
filesystem clients DO load these fields correctly.

Another reason they're empty is because the schedule included something in
the objects field.  If you do an incremental backup, but limit it using the
object= feature on the schedule, dsmc does not load these fields, presumably
because it can't be sure that things were fully backed up.

We have workarounds within Servergraph to get accurate backup status
reporting - contact me offline if that's your concern.

-
Mr. Lindsay Morris
Lead Architect
www.servergraph.com
512-482-6138 ext 105

> -Original Message-
> From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] Behalf Of
> Gill, Geoffrey L.
> Sent: Monday, December 01, 2003 10:55 AM
> To: [EMAIL PROTECTED]
> Subject: last backup info
>
>
> Can anyone explain why the last backup start date/time, last backup
> completion date/time, and deletion occurred in filespace date/time would
> have no information in them for filespaces reported on some nodes? The
> capacity and percent util register data.
>
> Yesterday we had a SAN controller firmware upgrade and it seems one of the
> nodes on the SAN lost the data and a recovery is necessary. I'm
> not the one
> restoring the data nor do I have access to the node. I'm just looking from
> the TSM server side to see what is "hopefully" in TSM. I don't
> want to say I
> have a bad feeling something hasn't been backed up but I do want
> to have an
> educated answer if in fact there is no data.
>
>
>
> I understand the inclexcl list tells TSM what to back up, and I have no
> control of it. I have not asked to see this one yet but have a feeling I
> might need to. This particular node reports it is at 5.1.5.0, it
> is on Tru64
> platform. The server is on AIX 4.3.3, TSM 5.1.6.3.
>
>
>
> I see this same phenomenon for other filespaces on other nodes,
> although it
> has never struck me to ask why it is blank.
>
> Thanks for the help,
>
>
>
>
> Node Name
>
> CP-ITS-DWPROD
>
>
> Filespace Name
>
> /san2
>
>
> FSID
>
> 49
>
>
> Filespace Type
>
> ADVFS
>
>
> Capacity (MB)
>
> 416687.2
>
>
> Pct Util
>
> 1.3
>
>
> Last Backup Start Date/Time
>
> -
>
>
> Last Backup Completion Date/Time
>
> -
>
>
> Deletion occurred in Filespace Date/Time
>
> -
>
>
> Is Filespace Unicode?
>
> NO
>
>
> Hexadecimal Filespace Name
>
> -
>
>
>
> Geoff Gill
> TSM Administrator
> NT Systems Support Engineer
> SAIC
> E-Mail:   [EMAIL PROTECTED]
> Phone:  (858) 826-4062
> Pager:   (877) 905-7154
>


last backup info

2003-12-01 Thread Gill, Geoffrey L.
Can anyone explain why the last backup start date/time, last backup
completion date/time, and deletion occurred in filespace date/time would
have no information in them for filespaces reported on some nodes? The
capacity and percent util register data.

Yesterday we had a SAN controller firmware upgrade and it seems one of the
nodes on the SAN lost the data and a recovery is necessary. I'm not the one
restoring the data nor do I have access to the node. I'm just looking from
the TSM server side to see what is "hopefully" in TSM. I don't want to say I
have a bad feeling something hasn't been backed up but I do want to have an
educated answer if in fact there is no data.



I understand the inclexcl list tells TSM what to back up, and I have no
control of it. I have not asked to see this one yet but have a feeling I
might need to. This particular node reports it is at 5.1.5.0, it is on Tru64
platform. The server is on AIX 4.3.3, TSM 5.1.6.3.



I see this same phenomenon for other filespaces on other nodes, although it
has never struck me to ask why it is blank.

Thanks for the help,




Node Name

CP-ITS-DWPROD


Filespace Name

/san2


FSID

49


Filespace Type

ADVFS


Capacity (MB)

416687.2


Pct Util

1.3


Last Backup Start Date/Time

-


Last Backup Completion Date/Time

-


Deletion occurred in Filespace Date/Time

-


Is Filespace Unicode?

NO


Hexadecimal Filespace Name

-



Geoff Gill
TSM Administrator
NT Systems Support Engineer
SAIC
E-Mail:   [EMAIL PROTECTED]
Phone:  (858) 826-4062
Pager:   (877) 905-7154


Query dsm.opt file from TSM Server?

2003-12-01 Thread Marc Levitan
I have 2 Network Cards in my TSM Server.
I would like to know which clients are connecting to which card.
I know I can look at each individual client at the dsm.opt file.

Is there a way to find this information from the server side?
If I don't have to go to each client that would be great!


Thanks,
Marc Levitan
Storage Management Specialist
PFPC Global Funds Services



-
The contents of this email are the property of PNC. If it was not addressed to you, 
you have no legal right to read it. If you think you received it in error, please 
notify the sender. Do not forward or copy without permission of the sender.


TSM 5.1.8 and 'events' table

2003-12-01 Thread Przemysław Maciuszko
Hello.
Somehow 'events' table got broken some time ago.
All schedules with 'missed' status have 'actual_start' set to 1900-01-01 :(
Is this a common problem and about to be fixed?


-- 
Przemysław Maciuszko
Agora SA


FW: deleting 1200 volumes (== one stgpool)

2003-12-01 Thread Bill Boyer
Let SQL do it for you!!
Pipe the output of these commands to a file...(make sure the storagepool
name is upper case. It matters!)...

SET SQLDISPLAYMODE WIDE
SELECT 'DEL VOL ' || TRIM(VOLUME_NAME) || ' DISCARD=YES WAIT=YES' FROM
VOLUMES WHERE STGPOOL_NAME=''

You can then edit the output and feed it into dsmadmc as a macro or just
cut'n'paste. You should do the WAIT=YES to avoid database contention and
possible lock-out conditions.

Bill Boyer
DSS, Inc.


-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] Behalf Of
Loon, E.J. van - SPLXM
Sent: Monday, December 01, 2003 6:43 AM
To: [EMAIL PROTECTED]
Subject: Re: deleting 1200 volumes (== one stgpool)


Hi Remco!
This is what I would do:
dsmadmc -commadelimited
q vol stgpool=obsoltestgpool > c:\temp\vollist.txt
Open this file in Excel, insert a column before, where you type del volume
and drag this line all the way down. Do the same in the column C and type
there discarddata yes wait=yes. Also drag this column all the way down.
Now save the file as text file and you have a nice macro file which you can
use as input for dsmadmc.
Kindest regards,
Eric van Loon
KLM Royal Dutch Airlines


-Original Message-
From: Remco Post [mailto:[EMAIL PROTECTED]
Sent: Sunday, November 30, 2003 00:38
To: [EMAIL PROTECTED]
Subject: deleting 1200 volumes (== one stgpool)


Hi all,

we recently migrated our copy storage pool from one medium to another.
Now, the migration is finished and I have a copy storagepool with 1200
volumes in it, that all can be deleted.

Now since I'm not the kind of guy that likes typing del vol 
discarddata=y 1200 times, I was wondering if anybody happens to have a
nice script available to clear out a storagepool?

--
Met vriendelijke groeten,

Remco Post

SARA - Reken- en Netwerkdiensten  http://www.sara.nl
High Performance Computing  Tel. +31 20 592 8008Fax. +31 20 668 3167

"I really didn't foresee the Internet. But then, neither did the
computer
industry. Not that that tells us very much of course - the computer
industry
didn't even foresee that the century was going to end." -- Douglas Adams


**
For information, services and offers, please visit our web site:
http://www.klm.com. This e-mail and any attachment may contain confidential
and privileged material intended for the addressee only. If you are not the
addressee, you are notified that no part of the e-mail or any attachment may
be disclosed, copied or distributed, and that any other action related to
this e-mail or attachment is strictly prohibited, and may be unlawful. If
you have received this e-mail by error, please notify the sender immediately
by return e-mail, and delete this message. Koninklijke Luchtvaart
Maatschappij NV (KLM), its subsidiaries and/or its employees shall not be
liable for the incorrect or incomplete transmission of this e-mail or any
attachments, nor responsible for any delay in receipt.
**


Re: Full diskpool & clients to tape, but when the diskpool is migrate d the clients still goes to tape

2003-12-01 Thread Richard Sims
>I guess the subjectline says it all.
>When my diskpool gets full the new sessions goes directly to the tapepool, but
>when the diskpool is migrated and gets free space the sessions still wait for
>mountpoint in my tapepool.  Is it normal behaviour??

Use Query Content to see what went to tape.  It may be the old chestnut of
directories going to a different management class in the absence of DIRMc,
to be under the longest retention policy.
See topic in "Backups go directly to tape..." in
http://people.bu.edu/rbs/ADSM.QuickFacts
for other causes.

   Richard Sims, BU


[no subject]

2003-12-01 Thread Wijnbergen, AMv
Hi David,

Go to you Java Control Panel ( settings, at configuration panel) . Deselect
Microsoft Internet explorer at the Browser tab and the command line is
working again. .
This helps for us .

Best Regards,
Met Vriendelijke Groet,
Mit freundlichen Gruessen,

Arnold van Wijnbergen

Technical Engineer
Office Automation & Technology


METRO Cash & Carry Nederland B.V.
Information Services
Dalsteindreef 101 t/m 139
Kamer 4.05
1112 XC Diemen
' Tel.:  +31 (20) 398 0987
7 Fax:  +31 (020) 398 09 80
* Mailto:[EMAIL PROTECTED]



-Oorspronkelijk bericht-
Van: David Stubblefield [mailto:[EMAIL PROTECTED]
Verzonden: dinsdag 25 november 2003 14:44
Aan: [EMAIL PROTECTED]
Onderwerp:


I am trying to connect to Storage Management Server for Windows -
Version 5, Release 1, Level 5.1 and am getting a java error when I try
to "show the command line".  This problem started after upgrade to
windows XP.  I am able to successfully display the command line from
Windows 2000 workstations.  I searched google relentlessly for more than
a week and have found no relevant help.  I have downloaded the latest
java software and enabled every jave setting I can find with out luck.



I am able to connect just fine but when I got to options > show command
line the server command line shows up but is gray and the follow error
shows up on the browser:



Loading java applet failed

applet app notinited



here is what the java console shows.

java.lang.ClassFormatError: CommandLine (Bad magic number)

at java.lang.ClassLoader.defineClass0(Native Method)

at java.lang.ClassLoader.defineClass(Unknown Source)

at java.security.SecureClassLoader.defineClass(Unknown
Source)

at sun.applet.AppletClassLoader.findClass(Unknown
Source)

at java.lang.ClassLoader.loadClass(Unknown Source)

at sun.applet.AppletClassLoader.loadClass(Unknown
Source)

at java.lang.ClassLoader.loadClass(Unknown Source)

at sun.applet.AppletClassLoader.loadCode(Unknown Source)

at sun.applet.AppletPanel.createApplet(Unknown Source)

at sun.plugin.AppletViewer.createApplet(Unknown Source)

at sun.applet.AppletPanel.runLoader(Unknown Source)

at sun.applet.AppletPanel.run(Unknown Source)

at java.lang.Thread.run(Unknown Source)



Any ideas or suggestions would be appreciated.



Regards,

David Stubblefield

RagingNet

1-866-RAGENOC

400 Oyster Point Boulevard - Suite 525
South San Francisco, CA 94080
http://www.ragingnet.com


Re: Antw: Please help: Question concerning cleanup backupgroups

2003-12-01 Thread Zlatko Krastev
This is misleading!!!
The whole idea behind "clean backupgroups" command is to be abel to run it
in parts, i.e. do some work and cancel the process. Committed transactions
will be confirmed and will stay. Only the last transaction will be rolled
back! That's why the completion state is 'cancelled' - the process is
aware of cancellation and will continue next time!
Reverting to logmode=normal is exposing server operations to an
unnnecessary risk.

Log filling issue can be resolved by using a DB backup trigger (look at "h
def dbb" command), or by running the "clean backupgroups" several days and
cancelling it before the log gets filled.

Zlatko Krastev
IT Consultant






Bernd Wiedmann <[EMAIL PROTECTED]>
Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
25.11.2003 18:33
Please respond to "ADSM: Dist Stor Manager"


To: [EMAIL PROTECTED]
cc:
Subject:Antw: Please help: Question concerning cleanup backupgroups


Is your log running in roll-foward-mode???

if yes turn it to normal (only Pending transactions will be loged),
that shoud do it.

when you restart the process, it has to do all work again, i think
... 8)

cu
Bernd Wiedmann


Re: deleting 1200 volumes (== one stgpool)

2003-12-01 Thread Loon, E.J. van - SPLXM
Hi Remco!
This is what I would do:
dsmadmc -commadelimited
q vol stgpool=obsoltestgpool > c:\temp\vollist.txt
Open this file in Excel, insert a column before, where you type del volume
and drag this line all the way down. Do the same in the column C and type
there discarddata yes wait=yes. Also drag this column all the way down.
Now save the file as text file and you have a nice macro file which you can
use as input for dsmadmc.
Kindest regards,
Eric van Loon
KLM Royal Dutch Airlines


-Original Message-
From: Remco Post [mailto:[EMAIL PROTECTED]
Sent: Sunday, November 30, 2003 00:38
To: [EMAIL PROTECTED]
Subject: deleting 1200 volumes (== one stgpool)


Hi all,

we recently migrated our copy storage pool from one medium to another.
Now, the migration is finished and I have a copy storagepool with 1200
volumes in it, that all can be deleted.

Now since I'm not the kind of guy that likes typing del vol 
discarddata=y 1200 times, I was wondering if anybody happens to have a
nice script available to clear out a storagepool?

--
Met vriendelijke groeten,

Remco Post

SARA - Reken- en Netwerkdiensten  http://www.sara.nl
High Performance Computing  Tel. +31 20 592 8008Fax. +31 20 668 3167

"I really didn't foresee the Internet. But then, neither did the
computer
industry. Not that that tells us very much of course - the computer
industry
didn't even foresee that the century was going to end." -- Douglas Adams


**
For information, services and offers, please visit our web site: http://www.klm.com. 
This e-mail and any attachment may contain confidential and privileged material 
intended for the addressee only. If you are not the addressee, you are notified that 
no part of the e-mail or any attachment may be disclosed, copied or distributed, and 
that any other action related to this e-mail or attachment is strictly prohibited, and 
may be unlawful. If you have received this e-mail by error, please notify the sender 
immediately by return e-mail, and delete this message. Koninklijke Luchtvaart 
Maatschappij NV (KLM), its subsidiaries and/or its employees shall not be liable for 
the incorrect or incomplete transmission of this e-mail or any attachments, nor 
responsible for any delay in receipt.
**


Re: data in wrong stgpool

2003-12-01 Thread Zlatko Krastev
Single "move nodedata" ought to be enough for single node. Depending on
the number of nodes, several moves can be less time consuming than
collocation of the whole stgpool.
"clean archdir" and "clean backupgroup" are intended for totally different
purposes and the only surprise would be if they did what you wanted.

Natural expiration of the data is good option and might save you some tape
drive load if you do "move nodedata" later. But your course of action is
correct and you can do it even right now.

Zlatko Krastev
IT Consultant






Kurt A Rybczyk <[EMAIL PROTECTED]>
Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
25.11.2003 21:51
Please respond to "ADSM: Dist Stor Manager"


To: [EMAIL PROTECTED]
cc:
Subject:data in wrong stgpool


I recently discoverd that someone setup a copygroup wrong and data was
being sent to the wrong storage pool. My problem is that the stgpool it
was being sent to also has a copystgpool. I did a move nodedata 
from= to= and that ran okay. It moved from one primary pool
to another. Now, I'd like to get the data in the copystgpool removed too.
I've tried expire i and backup stg. I've also tried clean archdir and
clean backupgroup and that hasn't worked. The only other thing I can come
up with is to collocate the offsite pool and do a bunch of move nodedata
to isolate that data on specific offsite volumes, then doing a del v
discard=y on them.

Any thoughts or suggestions would be much appreciated.  Thanks in advance.

kr

--
Kurt Rybczyk


Re: TSM from AIX 4.3.3 to AIX 5.2

2003-12-01 Thread Zlatko Krastev
Your scenario ought to work flawlessly.
As a precaution you can drain your disk pool(s) and take a DB backup.

Zlatko Krastev
IT Consultant






Steven Bridge <[EMAIL PROTECTED]>
Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
27.11.2003 21:44
Please respond to "ADSM: Dist Stor Manager"


To: [EMAIL PROTECTED]
cc:
Subject:TSM from AIX 4.3.3 to AIX 5.2


I am planning to 'migrate' a TSM server from an F40 running AIX 4.3.3
to a p615 running AIX 5.2.0.

We are running TSM version 5.1.8.0 .
This has been installed on the new machine.

I was intending to physically re-attach the disks and tape library
to the new machine. The TSM data is all in TSM specific volume groups,
so I plan to exportvg and importvg these.

I would then copy across the dsmserv.dsk and dsmserv.opt files to
the new machine, add tape & library devices again and hopefully
restart TSM on the new machine.

Does this sound like it should work or have I forgotten anything ?

The new machine is running in 64 bit mode so the code base won't be
exactly the same - but I can't see that this should make any
difference. Am I correct in this assumption ?

+--+
 Steven Bridge Systems Group, Information Systems, EISD
  University College London


Re: Full diskpool & clients to tape, but when the diskpool is migrate d the clients still goes to tape

2003-12-01 Thread Zlatko Krastev
- (on mbox.infotel.bg)

email-body was scanned and no virus found
-
Yes, it is normal.
1. The diskpool gets full
2. Some sessions request backups and end up with mount requests
3. The diskpool is drained and there is some space in it
4. New sessions backup to diskpool while old sessions still wait their 
requests to get satisfied

A possible workaround for this issue is to set maxnummp=0 for offending 
nodes but their backups will tend to fail due to lack of server storage 
space.
The real solution is to scale your diskpool when your nodes scale!!!

Zlatko Krastev
IT Consultant






Niklas Lundstrom <[EMAIL PROTECTED]>
Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
01.12.2003 10:33
Please respond to "ADSM: Dist Stor Manager"

 
To: [EMAIL PROTECTED]
cc: 
Subject:Full diskpool & clients to tape, but when the diskpool is 
migrate d the 
clients still goes to tape


hello
 
I guess the subjectline says it all.
When my diskpool gets full the new sessions goes directly to the tapepool,
but when the diskpool is migrated and gets free space the sessions still
wait for mountpoint in my tapepool. 
Is it normal behaviour??
 
Mvh
Niklas Lundström
Föreningssparbanken IT
08-5859 5164
 




TSM server stops listening

2003-12-01 Thread Remco Post
Hi all,

we recently migrated to AIX 5.1ml5 and TSM server 5.2.1.2

Now we have the problem that after a few weeks our servers tops accepting
connections. I recall this being an AIX 5.1 bug, unfortunately, I'm unable
to find the APAR, could anybody point me in the right direction? (apar
number?)

--
Met vriendelijke groeten,

Remco Post

SARA - Reken- en Netwerkdiensten  http://www.sara.nl
High Performance Computing  Tel. +31 20 592 8008Fax. +31 20 668 3167

"I really didn't foresee the Internet. But then, neither did the computer
industry. Not that that tells us very much of course - the computer industry
didn't even foresee that the century was going to end." -- Douglas Adams


Full diskpool & clients to tape, but when the diskpool is migrate d the clients still goes to tape

2003-12-01 Thread Niklas Lundstrom
hello
 
I guess the subjectline says it all.
When my diskpool gets full the new sessions goes directly to the tapepool,
but when the diskpool is migrated and gets free space the sessions still
wait for mountpoint in my tapepool. 
Is it normal behaviour??
 
Mvh
Niklas Lundström
Föreningssparbanken IT
08-5859 5164
 


slow performance across a firewall

2003-12-01 Thread "Höpfner, Dietmar"
Hello TSMers,
 
when I backup my windows client in a dmz across a firewall, normaly the performance is 
7 mb/sec doing an incremental backup.
Now I change the configuration to serveronly initiated sessions and the performance 
decreases to 300 kb/sec !!!
The tsm server is at 5.2.1.2 on AIX 5.2, the windows client is at level 5.2.0.6 on 
win2000. I use server prompted scheduling in both cases. Any idea?

Regards,
 
Dietmar
 

 
Dietmar Höpfner
data process GmbH
Ludwig-Erhard-Str. 6
34131 Kassel
Tel.: +49 (0)561 9385 1924
EMail: [EMAIL PROTECTED]