Re: How can I approximate capacity of a tape volume if it's still scratch?

2004-02-05 Thread Richard Sims
>We are in the midst of replacing our existing 3590J cartridges with 3590J
>cartridges that have been (supposedly) upgraded to allow 20/40 gigabyte
>capacity instead of of 10/20 capacity. I can successfully checkin the new
>libvolumes but until they actually get used, I have no way of even guessing
>how much data they can hold. I want to verify that the new 3590J cartridges
>we just bought have really been upgraded to support 20/40 capacity. Is
>there a way to force data to goto my new libvolume? Maybe there is a atape
>(or whatever the AIX command is) command to do this?
>Since we are replacing existing 3590J cartridges that are labeled
>10-100300 with (supposedly upgraded) 3590J cartridges with the same
>labels, do I have any potential problems in store other than removing a
>libvolume that still has data on it? They will all stay in the same device
>class.

I've never heard of "upgrading a tape cartridge", and would be curious to
have some references to what that's supposed to be about.  (It sounds like
something one would be offered in spam.)  The way we mortals get more data
on a tape is by upgrading our drives to higher density; or we switch to longer
tapes, such as the 3590K (in concert with drive upgrading to accommodate the
handling of thinner tape).

To prove the existence of magic in this universe you need to perform a case
study: as with any new technology being introduced to your shop, you should
prove its capabilities before putting it into production.  If you're a 3590 user
you need to be well acquainted with the "IBM TotalStorage Tape Device Drivers:
Installation and User's Guide" manual (see topic "tapeutil" in ADSM QuickFacts).
Give a tape drive over to the test, turn off tape drive compression, and write
a controlled amount of data to the tape using the tapeutil command, or even an
OS utility like the Unix 'dd' command, trying to fill it according to the
capacity you expect it should hold.

You will need to consider Devclass values according to what you really have
there, which is a mystery to me.  There are READMEs and List postings regarding
the handling of drive upgrades vs. existing tapes.

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


Re: MAX_IO_SIZE on AIX

2004-02-05 Thread Harris, Jason (DIS)
Hello Balanand,

There is no parameter per se in Solaris 8 & 9 (the ones that I use).  But
there are several parameters in Solaris that relate to # of bytes which can
be read in a single I/O call.

The maxphys kernel parameter limits I/O in the SCSI layer within the kernel.
Default is 128k.

We are using Solaris Volume manager; within the SVM layer there is a
md_maxphys kernel module parameter that limits within that subsystem.  If
not specified then it defaults to maxphys.   There is a corresponding
parameter if you are using Veritas volume manager, but I am not sure what it
is vxd_maxphys   or something.   Can someone else confirm ?

SD (scsi) devices used the cd module and they describe a sd_max_xfer_size
parameter that limits max I/O size within that type of device.  Default is
1MB

SSD (fibre channel scsi) devices used the cd module and they describe a
ssd_max_xfer_size parameter that limits max I/O size within that type of
device.  Default is 1MB

Hope this helps..

Jason Harris


-Original Message-
From: PINNI, BALANAND (SBCSI) [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 05, 2004 4:45 PM
To: [EMAIL PROTECTED]
Subject: Re: MAX_IO_SIZE on AIX


Can any body tell me how to find out the MAX_IO_SIZE in solaris?


===
Answer:
===

The "maxphys" kernel parameter limits the max. I/O size in the SCSI layer.
Default is 128k.
The "vol_maxio" kernel parameter limits the max. I/O size in the VxVM layer
(if installed). Default is 256k.
The "md_maxphys" kernel parameter limits the max. I/O size in the
DiskSuite/SVM layer (if installed). Default is equal to maxphys.
The "sd_max_xfer_size" module parameter limits the max. I/O size in the SD
module (if installed). Default is 1 Mb.
The " sd_max_xfer_size" module parameter limits the max. I/O size in the SSD
module (if installed). Default is 1 Mb.

There is a good doc on I/O size limits in the following Technote :

-- 08-02-2002

Set the default max. I/O size in Veritas to match/exceed the max. I/O size
that will be used.

in /etc/system, place

set maxphys=1048576
set vxio:vol_maxio=2048
* to allow 1MB I/Os.

vol_maxio is in Veritas units i.e. disk sectors of 512 bytes.
maxphys is in bytes.

We used to have exactly the same issue with DiskSuite, BTW, and needed
to set md:md_maxphys in /etc/system.  However, I understand DiskSuite was
modified to check the kernel maxphys value and use that to override
md_maxphys
if it was larger.  It is convenient to only have to turn one knob.

-Original Message-
From: Russell Brooks [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 05, 2004 6:15 PM
To: [EMAIL PROTECTED]
Subject: MAX_IO_SIZE on AIX


Hi,
  We using ADSM and RMAN to backup our databases.  I've run across a tuning
recommendation dependent on max_io_size.  AIX does not appear to have this
parameter, though it has been suggested that maxpgahead may provide similar
information.  Does anyone have information on correlation of these two
parameters?  Any insights from people who've been down this path would be
appreciated.

Thanks,
Russ Brooks
[EMAIL PROTECTED]


Re: MAX_IO_SIZE on AIX

2004-02-05 Thread PINNI, BALANAND (SBCSI)
Can any body tell me how to find out the MAX_IO_SIZE in solaris?


===
Answer:
===

The "maxphys" kernel parameter limits the max. I/O size in the SCSI layer.
Default is 128k.
The "vol_maxio" kernel parameter limits the max. I/O size in the VxVM layer
(if installed). Default is 256k.
The "md_maxphys" kernel parameter limits the max. I/O size in the
DiskSuite/SVM layer (if installed). Default is equal to maxphys.
The "sd_max_xfer_size" module parameter limits the max. I/O size in the SD
module (if installed). Default is 1 Mb.
The " sd_max_xfer_size" module parameter limits the max. I/O size in the SSD
module (if installed). Default is 1 Mb.

There is a good doc on I/O size limits in the following Technote :

-- 08-02-2002

Set the default max. I/O size in Veritas to match/exceed the max. I/O size
that will be used.

in /etc/system, place

set maxphys=1048576
set vxio:vol_maxio=2048
* to allow 1MB I/Os.

vol_maxio is in Veritas units i.e. disk sectors of 512 bytes.
maxphys is in bytes.

We used to have exactly the same issue with DiskSuite, BTW, and needed
to set md:md_maxphys in /etc/system.  However, I understand DiskSuite was
modified to check the kernel maxphys value and use that to override
md_maxphys
if it was larger.  It is convenient to only have to turn one knob.

-Original Message-
From: Russell Brooks [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 05, 2004 6:15 PM
To: [EMAIL PROTECTED]
Subject: MAX_IO_SIZE on AIX


Hi,
  We using ADSM and RMAN to backup our databases.  I've run across a tuning
recommendation dependent on max_io_size.  AIX does not appear to have this
parameter, though it has been suggested that maxpgahead may provide similar
information.  Does anyone have information on correlation of these two
parameters?  Any insights from people who've been down this path would be
appreciated.

Thanks,
Russ Brooks
[EMAIL PROTECTED]


MAX_IO_SIZE on AIX

2004-02-05 Thread Russell Brooks
Hi,
  We using ADSM and RMAN to backup our databases.  I've run across a tuning 
recommendation dependent on max_io_size.  AIX does not appear to have this parameter, 
though it has been suggested that maxpgahead may provide similar information.  Does 
anyone have information on correlation of these two parameters?  Any insights from 
people who've been down this path would be appreciated.

Thanks,
Russ Brooks
[EMAIL PROTECTED]


Re: Help with an estimate

2004-02-05 Thread Paul Ripke
On Friday, Feb 6, 2004, at 06:14 Australia/Sydney, Lee, Gary D. wrote:

I need a way to estimate the size of a storage pool backup.
Looked through the database specs, but just don't see it.
Any help is appreciated.  A pointer to a manual section is fine.
Is something like "backup stg source dest preview=y wait=y" what you're
after? May take a little while, but the figures should be dead-on.
Cheers,
--
Paul Ripke
Unix/OpenVMS/TSM/DBA
I love deadlines. I like the whooshing sound they make as they fly by.
-- Douglas Adams


Re: Viewing PDF manuals online

2004-02-05 Thread Zoltan Forray/AC/VCU
Thank you (and Richard) for the CTRL-G hint.  However, that wasn't what I
meant.

Under V5, I could CTRL-F to START a FIND, REPEAT the FIND, CLOSE the FIND
window with an ESC, bring the FIND window back up and type in a NEW search
string with CTRL-F.

Now we get the SLOW FIND PANE that then scrunches the actual book to
unreadable font sizes (getting old.) and then have to HIDE the FIND
PANE to read the book, etc.

Give me an option to go back to the way it was !!!





"Stapleton, Mark" <[EMAIL PROTECTED]>
Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
02/05/2004 03:18 PM
Please respond to "ADSM: Dist Stor Manager"


To: [EMAIL PROTECTED]
cc:
Subject:Re: Viewing PDF manuals online


Try ctrl-g for "find again".

 -Original Message-
 From: Zoltan Forray/AC/VCU [mailto:[EMAIL PROTECTED]
 Sent: Thu 2/5/2004 13:59
 To: [EMAIL PROTECTED]
 Cc:
 Subject: Re: Viewing PDF manuals online



 I agree on the speed issue.

 Adobe Acrobat 6 is a joke. The FIND processes is
ridiculous, making you
 have to use the mouse, whether you like it or not (under
V5, you used to
 be able to repeatedly do a CTRL-F to either find again or
change the
 search value. Now a CTRL-F brings up the annoying "find
pane").




 Richard Sims <[EMAIL PROTECTED]>
 Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
 02/05/2004 02:50 PM
 Please respond to "ADSM: Dist Stor Manager"


 To: [EMAIL PROTECTED]
 cc:
 Subject:Viewing PDF manuals online


 Just thought I'd mention...

 There have been observations that viewing PDFed manuals
online is a
 drudge,
 making one want to keep hardcopies of TSM manuals to flip
through to
 quickly
 get to information.  Having had only hardcopy manuals my
first 20 years in
 data processing, I understand.

 I've been a Macintosh user since about 1986 and recently
got a G5 for my
 office workstation.  In Mac OS X (whose standard document
model is PDF) is
 an application called Preview, for viewing PDF and
graphics file.  Its
 speed
 is incredible, making online PDF use a joy.  I used
Acrobat Reader before
 this
 - which was the speed of a tortoise...enough to
discourage anyone from
 viewing
 PDFs on-screen.  But Preview is like lightning: as you
type the phrase you
 want to find, Preview is already finding hits for you. By
the time I've
 finished typing the phrase, it has found them all.

 If you have any say in your workstation choice, this is
the way to go.
 I can now search a huge manual in seconds.  I never
bother with hardcopy
 manuals any more, saving lots of storage space and much
personal time.

Richard Sims


How can I approximate capacity of a tape volume if it's still scratch?

2004-02-05 Thread John C Dury
We are in the midst of replacing our existing 3590J cartridges with 3590J
cartridges that have been (supposedly) upgraded to allow 20/40 gigabyte
capacity instead of of 10/20 capacity. I can successfully checkin the new
libvolumes but until they actually get used, I have no way of even guessing
how much data they can hold. I want to verify that the new 3590J cartridges
we just bought have really been upgraded to support 20/40 capacity. Is
there a way to force data to goto my new libvolume? Maybe there is a atape
(or whatever the AIX command is) command to do this?
Since we are replacing existing 3590J cartridges that are labeled
10-100300 with (supposedly upgraded) 3590J cartridges with the same
labels, do I have any potential problems in store other than removing a
libvolume that still has data on it? They will all stay in the same device
class.

TIA,
John


Re: Viewing PDF manuals online

2004-02-05 Thread Richard Sims
>Adobe Acrobat 6 is a joke. The FIND processes is ridiculous, making you
>have to use the mouse, whether you like it or not (under V5, you used to
>be able to repeatedly do a CTRL-F to either find again or change the
>search value. Now a CTRL-F brings up the annoying "find pane").

Shift over one key...  You can use Ctrl-G to search next forward, and
use your third hand to additionally press the Shift key to go backward.


LTO1 and LTO2 drives in a 3584

2004-02-05 Thread Thach, Kevin G
Last week, I added a fourth frame onto our 3584, along with 4 new LTO2
tape drives.  I have not defined the new drives in TSM yet, because I'm
still trying to find out the best way to run in a mixed LTO1-LTO2
environment.

I've read that in version 5.2.X you do not have to logically partition
your library to use both drives, but I'm still confused about whether I
will need to set up separate device classes and storage pools.

All of my media is LTO1.  Can I simply set my existing device class
format from "DRIVE" to "ultriumc", define the new drives, and just let
things rip?  All I really want to do is let the LTO2's perform like
LTO1's since I'm not using any LTO2 media.

Is anyone running a mixed LTO1-LTO2 environment?  If so, how are you
doing it?

Any help or advice is much appreciated!


TSM 5.2.2.1 OR -no report displayed

2004-02-05 Thread Prather, Wanda
We installed the new stand-alone TSM console on a Win2K pro system and had
no problems getting the Operational Reporter to generate the default dailiy
report.  Displays fine in the MMC console window.

We installed the TSM console on another Win2K pro system; set it up the same
way.  When we try to run the Operational Reporter daily report, NOTHING
comes back to the MMC console window - not even the "WORKING" message.

Checking the TSM activity log, we can see the SQL selects were executed, and
the .htm file for the daily reports is created (correctly) in the local
/console directory, it just never displays in the window.

"allow access to everyone" was checked during the install.

The two systems are the same level of Win2K pro, and have the same level of
IE - is this a java thing?

I looked in the README and can't find any place where it documents the level
of Windows/browser things requried - can anybody point me to the right thing
to read?

Thanks


Re: Viewing PDF manuals online

2004-02-05 Thread Stapleton, Mark
Try ctrl-g for "find again".

-Original Message- 
From: Zoltan Forray/AC/VCU [mailto:[EMAIL PROTECTED] 
Sent: Thu 2/5/2004 13:59 
To: [EMAIL PROTECTED] 
Cc: 
Subject: Re: Viewing PDF manuals online



I agree on the speed issue.

Adobe Acrobat 6 is a joke. The FIND processes is ridiculous, making you
have to use the mouse, whether you like it or not (under V5, you used to
be able to repeatedly do a CTRL-F to either find again or change the
search value. Now a CTRL-F brings up the annoying "find pane").




Richard Sims <[EMAIL PROTECTED]>
Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
02/05/2004 02:50 PM
Please respond to "ADSM: Dist Stor Manager"


To: [EMAIL PROTECTED]
cc:
Subject:Viewing PDF manuals online


Just thought I'd mention...

There have been observations that viewing PDFed manuals online is a
drudge,
making one want to keep hardcopies of TSM manuals to flip through to
quickly
get to information.  Having had only hardcopy manuals my first 20 years in
data processing, I understand.

I've been a Macintosh user since about 1986 and recently got a G5 for my
office workstation.  In Mac OS X (whose standard document model is PDF) is
an application called Preview, for viewing PDF and graphics file.  Its
speed
is incredible, making online PDF use a joy.  I used Acrobat Reader before
this
- which was the speed of a tortoise...enough to discourage anyone from
viewing
PDFs on-screen.  But Preview is like lightning: as you type the phrase you
want to find, Preview is already finding hits for you.  By the time I've
finished typing the phrase, it has found them all.

If you have any say in your workstation choice, this is the way to go.
I can now search a huge manual in seconds.  I never bother with hardcopy
manuals any more, saving lots of storage space and much personal time.

   Richard Sims




TSM and PowerPath Volume Manager on Solaris

2004-02-05 Thread Tim Melly
To *,

I have a Sun OS 5.8 / TSM 5.2 client exhibiting strange behavior. All non-system
volume groups (VGs) are not getting backed up with a "regular" incremental, TSM
sees the directory  mount point but that's it, nothing except for the directory
stub gets backed up. All files associated with the system VG  (i.e. rootvg in
AIX terms) and being backed up correctly (i.e. the "inc" is examining all
subdirectories and their contents).

If i do and incremental and explicitly reference the non-system VG filesystems
(i.e. inc /apps) then everything works fine

The non-system VGs were created using EMC's PowerPath Volume Manager. Has anyone
had any experience with this volume manager?
Has anyone experienced similar symptoms on a SUN box??

Any assistance would be appreciated. TIA

Regards, Tim
NAFTA IS Technical Operations
(203) 812-3469
[EMAIL PROTECTED]


Re: Viewing PDF manuals online

2004-02-05 Thread Zoltan Forray/AC/VCU
I agree on the speed issue.

Adobe Acrobat 6 is a joke. The FIND processes is ridiculous, making you
have to use the mouse, whether you like it or not (under V5, you used to
be able to repeatedly do a CTRL-F to either find again or change the
search value. Now a CTRL-F brings up the annoying "find pane").




Richard Sims <[EMAIL PROTECTED]>
Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
02/05/2004 02:50 PM
Please respond to "ADSM: Dist Stor Manager"


To: [EMAIL PROTECTED]
cc:
Subject:Viewing PDF manuals online


Just thought I'd mention...

There have been observations that viewing PDFed manuals online is a
drudge,
making one want to keep hardcopies of TSM manuals to flip through to
quickly
get to information.  Having had only hardcopy manuals my first 20 years in
data processing, I understand.

I've been a Macintosh user since about 1986 and recently got a G5 for my
office workstation.  In Mac OS X (whose standard document model is PDF) is
an application called Preview, for viewing PDF and graphics file.  Its
speed
is incredible, making online PDF use a joy.  I used Acrobat Reader before
this
- which was the speed of a tortoise...enough to discourage anyone from
viewing
PDFs on-screen.  But Preview is like lightning: as you type the phrase you
want to find, Preview is already finding hits for you.  By the time I've
finished typing the phrase, it has found them all.

If you have any say in your workstation choice, this is the way to go.
I can now search a huge manual in seconds.  I never bother with hardcopy
manuals any more, saving lots of storage space and much personal time.

   Richard Sims


Viewing PDF manuals online

2004-02-05 Thread Richard Sims
Just thought I'd mention...

There have been observations that viewing PDFed manuals online is a drudge,
making one want to keep hardcopies of TSM manuals to flip through to quickly
get to information.  Having had only hardcopy manuals my first 20 years in
data processing, I understand.

I've been a Macintosh user since about 1986 and recently got a G5 for my
office workstation.  In Mac OS X (whose standard document model is PDF) is
an application called Preview, for viewing PDF and graphics file.  Its speed
is incredible, making online PDF use a joy.  I used Acrobat Reader before this
- which was the speed of a tortoise...enough to discourage anyone from viewing
PDFs on-screen.  But Preview is like lightning: as you type the phrase you
want to find, Preview is already finding hits for you.  By the time I've
finished typing the phrase, it has found them all.

If you have any say in your workstation choice, this is the way to go.
I can now search a huge manual in seconds.  I never bother with hardcopy
manuals any more, saving lots of storage space and much personal time.

   Richard Sims


Re: RES: Help with an estimate

2004-02-05 Thread Richard Sims
>I need a way to estimate the size of a storage pool backup.

You mean, like, the Preview option?


RES: Help with an estimate

2004-02-05 Thread Dan Carlo Freitas Peres
Hi Gary,

See the Reedbook of IBM TSM Implementation Guide. There you can
see how to size storage pools, database, recovery log, number of
tapes...

Tks,
 
_
Dan Carlo Freitas Peres
IBM Certified Deployment Professional TSM
Net Control - Gerenciamento de Redes
Email: [EMAIL PROTECTED]
Telefone: +55 (61) 426.3400
Fax: +55 (61) 426.3407


-Mensagem original-
De: Lee, Gary D. [mailto:[EMAIL PROTECTED] 
Enviada em: quinta-feira, 5 de fevereiro de 2004 16:14
Para: [EMAIL PROTECTED]
Assunto: Help with an estimate

I need a way to estimate the size of a storage pool backup.
Looked through the database specs, but just don't see it.
Any help is appreciated.  A pointer to a manual section is fine.


Gary Lee
Senior Operating Systems Analyst
Ball State University
phone 765-285-1310
 


Help with an estimate

2004-02-05 Thread Lee, Gary D.
I need a way to estimate the size of a storage pool backup.
Looked through the database specs, but just don't see it.
Any help is appreciated.  A pointer to a manual section is fine.


Gary Lee
Senior Operating Systems Analyst
Ball State University
phone 765-285-1310
 


Re: TSM 5.2 performances on AIX 5.1

2004-02-05 Thread Zoltan Forray/AC/VCU
Also, ITSM folks had various "Technical Exchange" web seminars.   Many of
them addressed Performance Tuning in both the SERVER and CLIENT areas,
including recommended settings for things like TCPIP !

I saved the PPT/PDF files from these sessons, if you or anyone is
interested in them.  Some of them are close to 2MB in size so I will only
send them to specific email addresses, not the list.  Please email your
request to me, directly, NOT THE LIST !!!


Zoltan Forray
Virginia Commonwealth University - University Computing Center
e-mail: [EMAIL PROTECTED]





Madalina Cozea <[EMAIL PROTECTED]>
Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
02/05/2004 01:10 PM
Please respond to "ADSM: Dist Stor Manager"


To: [EMAIL PROTECTED]
cc:
Subject:Re: TSM 5.2 performances on AIX 5.1


i'll try tomorrow changing some settings in OS and checking the network .
Thanks for giving some ideas to start with .

Mada


Re: TSM 5.2 performances on AIX 5.1

2004-02-05 Thread Madalina Cozea
i'll try tomorrow changing some settings in OS and checking the network .
Thanks for giving some ideas to start with .

Mada


Re: TSM 5.2 performances on AIX 5.1

2004-02-05 Thread PINNI, BALANAND (SBCSI)
Try /usr/samples/kernel/vmtune -P 10 this will improve free memory or reduce
pageing if any.
On network side try:

no -o udp_pmtu_discover=0
no -o tcp_pmtu_discover=0
no -o ipforwarding=0
no -o tcp_ttl=120
no -o tcp_mssdflt=1448
no -o tcp_sendspace=65536
no -o tcp_recvspace=65536
no -o udp_sendspace=65536
no -o udp_recvspace=65536
no -o clean_partial_conns=1
no -o rfc1323=1
nfso -o nfs_rfc1323=1
-Original Message-
From: Madalina Cozea [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 05, 2004 11:58 AM
To: [EMAIL PROTECTED]
Subject: Re: TSM 5.2 performances on AIX 5.1


A ftp for a the file 300MB on the same network was done twice as fast (15
seconds instead of 30 as in TSM case )
thanks for the suggestions on checking the network .
Are any parameters in dsmserv.opt that have to be changed ? I was allways
installing with the default.
And in OS ... i don't know what is expected to be on AIX regarding VWtunning
or network parameters .
Thank u ,
Madalina
- Original Message -
From: "Ben Bullock" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 05, 2004 7:44 PM
Subject: Re: TSM 5.2 performances on AIX 5.1


> Ahh, so this is a fresh install.
>
> The suggestions about checking out the NIC and switch
> configurations are a good.
>
> I suggest doing an FTP between the 2 hosts to see if your issues
> are at the OS or TSM level. If your FTP is about as slow as TSM backups,
> then it is likely that your network devices are not agreeing on the
> negotiation speeds, and might have ended up in half duplex.
>
> The "entstat" command is helpful in seeing what the card is set
> to and what speed it's actually working at.
>
> Ben
>
> -Original Message-
> From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
> Madalina Cozea
> Sent: Thursday, February 05, 2004 10:44 AM
> To: [EMAIL PROTECTED]
> Subject: Re: TSM 5.2 performances on AIX 5.1
>
>
> It was a kind of mixed i think (not very small files any way - exe & big
> DB files), anyway ...for a single file 300MB it took 30 seconds. it
> seems a poor performance to me. The OS is in the state it came
> preinstalled , no patch added (right now i cannot look for the ML), no
> params changed . Same to TSM ...only installed on TSM I hope u can
> recommend some patches or tuning for parameters (in OS or in
> TSM) in order to improve the performances.
> Thanks ,
> Madalina
> - Original Message -
> From: "Karel Bos" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, February 05, 2004 7:24 PM
> Subject: Re: TSM 5.2 performances on AIX 5.1
>
>
> > And what sort of data. One file of 4 GB or 2 000 000 files and 4 GB in
>
> > total?
> >
> >
> >
> > Karel
> >
> > -Oorspronkelijk bericht-
> > Van: Ben Bullock [mailto:[EMAIL PROTECTED]
> > Verzonden: donderdag 5 februari 2004 18:20
> > Aan: [EMAIL PROTECTED]
> > Onderwerp: Re: TSM 5.2 performances on AIX 5.1
> >
> >
> > Which ML are you at on AIX?
> > Which version of TMS 5.2.0.0?
> > What vmtune settings do you have? (if any)
> >
> > Ben
> >
> > -Original Message-
> > From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf
> > Of Madalina Cozea
> > Sent: Thursday, February 05, 2004 10:07 AM
> > To: [EMAIL PROTECTED]
> > Subject: TSM 5.2 performances on AIX 5.1
> >
> >
> > Hello everybody,
> > I need some info regarding the performances of a TSM on AIX urgent ,if
>
> > any of u could help , because i'm experiencing some problems. I've
> > installed TSM 5.2 on a AIX box (5.1 64 bits) and left all the default
> > parameters . The performances over a Gbit network are poor , backups
> > of 4 GB taking over 35min (5.1.5 AIX client) . There is no load on
> > server , the disk is busy 5% .
> > Do u have any  idea what could causing poor performance and what can
> be
> > done ? thanks,
> > Mada


Re: TSM 5.2 performances on AIX 5.1

2004-02-05 Thread Madalina Cozea
A ftp for a the file 300MB on the same network was done twice as fast (15
seconds instead of 30 as in TSM case )
thanks for the suggestions on checking the network .
Are any parameters in dsmserv.opt that have to be changed ? I was allways
installing with the default.
And in OS ... i don't know what is expected to be on AIX regarding VWtunning
or network parameters .
Thank u ,
Madalina
- Original Message -
From: "Ben Bullock" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 05, 2004 7:44 PM
Subject: Re: TSM 5.2 performances on AIX 5.1


> Ahh, so this is a fresh install.
>
> The suggestions about checking out the NIC and switch
> configurations are a good.
>
> I suggest doing an FTP between the 2 hosts to see if your issues
> are at the OS or TSM level. If your FTP is about as slow as TSM backups,
> then it is likely that your network devices are not agreeing on the
> negotiation speeds, and might have ended up in half duplex.
>
> The "entstat" command is helpful in seeing what the card is set
> to and what speed it's actually working at.
>
> Ben
>
> -Original Message-
> From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
> Madalina Cozea
> Sent: Thursday, February 05, 2004 10:44 AM
> To: [EMAIL PROTECTED]
> Subject: Re: TSM 5.2 performances on AIX 5.1
>
>
> It was a kind of mixed i think (not very small files any way - exe & big
> DB files), anyway ...for a single file 300MB it took 30 seconds. it
> seems a poor performance to me. The OS is in the state it came
> preinstalled , no patch added (right now i cannot look for the ML), no
> params changed . Same to TSM ...only installed on TSM I hope u can
> recommend some patches or tuning for parameters (in OS or in
> TSM) in order to improve the performances.
> Thanks ,
> Madalina
> - Original Message -
> From: "Karel Bos" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, February 05, 2004 7:24 PM
> Subject: Re: TSM 5.2 performances on AIX 5.1
>
>
> > And what sort of data. One file of 4 GB or 2 000 000 files and 4 GB in
>
> > total?
> >
> >
> >
> > Karel
> >
> > -Oorspronkelijk bericht-
> > Van: Ben Bullock [mailto:[EMAIL PROTECTED]
> > Verzonden: donderdag 5 februari 2004 18:20
> > Aan: [EMAIL PROTECTED]
> > Onderwerp: Re: TSM 5.2 performances on AIX 5.1
> >
> >
> > Which ML are you at on AIX?
> > Which version of TMS 5.2.0.0?
> > What vmtune settings do you have? (if any)
> >
> > Ben
> >
> > -Original Message-
> > From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf
> > Of Madalina Cozea
> > Sent: Thursday, February 05, 2004 10:07 AM
> > To: [EMAIL PROTECTED]
> > Subject: TSM 5.2 performances on AIX 5.1
> >
> >
> > Hello everybody,
> > I need some info regarding the performances of a TSM on AIX urgent ,if
>
> > any of u could help , because i'm experiencing some problems. I've
> > installed TSM 5.2 on a AIX box (5.1 64 bits) and left all the default
> > parameters . The performances over a Gbit network are poor , backups
> > of 4 GB taking over 35min (5.1.5 AIX client) . There is no load on
> > server , the disk is busy 5% .
> > Do u have any  idea what could causing poor performance and what can
> be
> > done ? thanks,
> > Mada


Re: TSM 5.2 performances on AIX 5.1

2004-02-05 Thread Kamp, Bruce
I was hit by this when I switched to gigabit.  Took some work with my
network guys & IBM to get all the settings correct.  The performance
difference was incredible.


-
Bruce Kamp
Senior Midrange Systems Analyst
Memorial Healthcare System
E-mail: [EMAIL PROTECTED]
Phone: (954) 987-2020 x4597
Pager: (954) 286-9441
Alphapage:  [EMAIL PROTECTED]
Fax: (954) 985-1404
-


-Original Message-
From: PINNI, BALANAND (SBCSI) [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 05, 2004 12:20 PM
To: [EMAIL PROTECTED]
Subject: Re: TSM 5.2 performances on AIX 5.1

What is ur NIC speed set to. Did u enable or change MTU if yes set it back
to 1500 .Since 9000 needs to be changed on Switch also .It depends kind of
engine u have on CISCO switch.

Thanks
Balanand Pinni

-Original Message-
From: Madalina Cozea [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 05, 2004 11:07 AM
To: [EMAIL PROTECTED]
Subject: TSM 5.2 performances on AIX 5.1


Hello everybody,
I need some info regarding the performances of a TSM on AIX urgent ,if any
of u could help , because i'm experiencing some problems.
I've installed TSM 5.2 on a AIX box (5.1 64 bits) and left all the default
parameters .
The performances over a Gbit network are poor , backups of 4 GB taking over
35min (5.1.5 AIX client) . There is no load on server , the disk is busy 5%
.
Do u have any  idea what could causing poor performance and what can be done
?
thanks,
Mada


Re: TSM 5.2 performances on AIX 5.1

2004-02-05 Thread Miles Purdy
Hi Madalina,

unfortunately no one is going to be to tune your servers through email. Your issue is 
that AIX and TSM all have the default settings. I don't think anyone should be 
surprised that is not optimal.

What you need to do is establish a perf and tuning methodology. Establish a base line 
- which you might have already done. Make a change. Run the same test and see what 
affect it had on the performance.

There are so many different combinations of tuning parameters that it would be rare to 
find some one with an environment exactly like yours. Find a copy of the AIX 5 perf 
and tuning guide and a TSM perf and tuning guide.

Miles


>>> [EMAIL PROTECTED] 05-Feb-04 11:43:40 AM >>>
It was a kind of mixed i think (not very small files any way - exe & big DB
files), anyway ...for a single file 300MB it took 30 seconds. it seems a
poor performance to me.
The OS is in the state it came preinstalled , no patch added (right now i
cannot look for the ML), no params changed .
Same to TSM ...only installed on TSM
I hope u can recommend some patches or tuning for parameters (in OS or in
TSM) in order to improve the performances.
Thanks ,
Madalina
- Original Message -
From: "Karel Bos" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 05, 2004 7:24 PM
Subject: Re: TSM 5.2 performances on AIX 5.1


> And what sort of data. One file of 4 GB or 2 000 000 files and 4 GB in
> total?
>
>
>
> Karel
>
> -Oorspronkelijk bericht-
> Van: Ben Bullock [mailto:[EMAIL PROTECTED]
> Verzonden: donderdag 5 februari 2004 18:20
> Aan: [EMAIL PROTECTED]
> Onderwerp: Re: TSM 5.2 performances on AIX 5.1
>
>
> Which ML are you at on AIX?
> Which version of TMS 5.2.0.0?
> What vmtune settings do you have? (if any)
>
> Ben
>
> -Original Message-
> From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
> Madalina Cozea
> Sent: Thursday, February 05, 2004 10:07 AM
> To: [EMAIL PROTECTED]
> Subject: TSM 5.2 performances on AIX 5.1
>
>
> Hello everybody,
> I need some info regarding the performances of a TSM on AIX urgent ,if
> any of u could help , because i'm experiencing some problems.
> I've installed TSM 5.2 on a AIX box (5.1 64 bits) and left all the
> default parameters .
> The performances over a Gbit network are poor , backups of 4 GB taking
> over 35min (5.1.5 AIX client) . There is no load on server , the disk is
> busy 5% .
> Do u have any  idea what could causing poor performance and what can be
> done ? thanks,
> Mada


Re: Netware upgrade to 6.5 and TSM client upgrade 5.2.2

2004-02-05 Thread Jim Kirkman
Given all this, is anyone aware of any issues with Netware 6.0 SP4 and
the 5.1 or 5.2 clients?

Our Netware folks are getting ready to push SP4 out and this latest
round of posts has them a little nervous. The majority of nodes are
running Client 5.1.5.15.

as always, thanks!

Bill Fitzgerald wrote:
>
> there is a problem with the client 5.2.2 and the NLM from NW
>
> In late December and early January we were having the same problem
>
> After working with IBM and Novell, the NW people installed a service pac
>
> the service pac that the NW people installed had these NLMs
>
> TSAFS.NLM v 6.50.06 December 4, 2003
> SMDR.NLM  v 6.54 December 1, 2003
>
> you may also wish to go to the TSM FTP site and download the latest version of the 
> TSM Client for Novell
>
> >>> [EMAIL PROTECTED] 02/05/04 09:28AM >>>
> Hi Gang, wish I could repay you guys for all your help you have given me
> in the past, but once again, need some help please.
>
> We have just upgraded our NetWare servers to 6.5. In the process, we
> are also upgrading the TSM client to 5.2.2. The backups seem to be
> running ok, but I am getting a "Sytem program Error" that I can't find a
> answer to. Below are my logs from a Client we just upgraded both the OS
> and the TSM client. You will see after the Jan. 3rd backup, that we
> start seeing a lot more errors, which most are just open files. But in
> both the DSMerror.log and the dsmsched.log, you will see the System
> program error. I will also include my Dsm.opt file as well.Thanks
> for all your help...
>
> Thanks, Mark Hayden
> Informations Systems Analyst
> E-Mail:  [EMAIL PROTECTED]

--
Jim Kirkman
AIS - Systems
UNC-Chapel Hill
966-5884


Re: TSM 5.2 performances on AIX 5.1

2004-02-05 Thread Ben Bullock
Ahh, so this is a fresh install.

The suggestions about checking out the NIC and switch
configurations are a good. 

I suggest doing an FTP between the 2 hosts to see if your issues
are at the OS or TSM level. If your FTP is about as slow as TSM backups,
then it is likely that your network devices are not agreeing on the
negotiation speeds, and might have ended up in half duplex.

The "entstat" command is helpful in seeing what the card is set
to and what speed it's actually working at.

Ben

-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
Madalina Cozea
Sent: Thursday, February 05, 2004 10:44 AM
To: [EMAIL PROTECTED]
Subject: Re: TSM 5.2 performances on AIX 5.1


It was a kind of mixed i think (not very small files any way - exe & big
DB files), anyway ...for a single file 300MB it took 30 seconds. it
seems a poor performance to me. The OS is in the state it came
preinstalled , no patch added (right now i cannot look for the ML), no
params changed . Same to TSM ...only installed on TSM I hope u can
recommend some patches or tuning for parameters (in OS or in
TSM) in order to improve the performances.
Thanks ,
Madalina
- Original Message -
From: "Karel Bos" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 05, 2004 7:24 PM
Subject: Re: TSM 5.2 performances on AIX 5.1


> And what sort of data. One file of 4 GB or 2 000 000 files and 4 GB in

> total?
>
>
>
> Karel
>
> -Oorspronkelijk bericht-
> Van: Ben Bullock [mailto:[EMAIL PROTECTED]
> Verzonden: donderdag 5 februari 2004 18:20
> Aan: [EMAIL PROTECTED]
> Onderwerp: Re: TSM 5.2 performances on AIX 5.1
>
>
> Which ML are you at on AIX?
> Which version of TMS 5.2.0.0?
> What vmtune settings do you have? (if any)
>
> Ben
>
> -Original Message-
> From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf 
> Of Madalina Cozea
> Sent: Thursday, February 05, 2004 10:07 AM
> To: [EMAIL PROTECTED]
> Subject: TSM 5.2 performances on AIX 5.1
>
>
> Hello everybody,
> I need some info regarding the performances of a TSM on AIX urgent ,if

> any of u could help , because i'm experiencing some problems. I've 
> installed TSM 5.2 on a AIX box (5.1 64 bits) and left all the default 
> parameters . The performances over a Gbit network are poor , backups 
> of 4 GB taking over 35min (5.1.5 AIX client) . There is no load on 
> server , the disk is busy 5% .
> Do u have any  idea what could causing poor performance and what can
be
> done ? thanks,
> Mada


Re: TSM 5.2 performances on AIX 5.1

2004-02-05 Thread Madalina Cozea
It was a kind of mixed i think (not very small files any way - exe & big DB
files), anyway ...for a single file 300MB it took 30 seconds. it seems a
poor performance to me.
The OS is in the state it came preinstalled , no patch added (right now i
cannot look for the ML), no params changed .
Same to TSM ...only installed on TSM
I hope u can recommend some patches or tuning for parameters (in OS or in
TSM) in order to improve the performances.
Thanks ,
Madalina
- Original Message -
From: "Karel Bos" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 05, 2004 7:24 PM
Subject: Re: TSM 5.2 performances on AIX 5.1


> And what sort of data. One file of 4 GB or 2 000 000 files and 4 GB in
> total?
>
>
>
> Karel
>
> -Oorspronkelijk bericht-
> Van: Ben Bullock [mailto:[EMAIL PROTECTED]
> Verzonden: donderdag 5 februari 2004 18:20
> Aan: [EMAIL PROTECTED]
> Onderwerp: Re: TSM 5.2 performances on AIX 5.1
>
>
> Which ML are you at on AIX?
> Which version of TMS 5.2.0.0?
> What vmtune settings do you have? (if any)
>
> Ben
>
> -Original Message-
> From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
> Madalina Cozea
> Sent: Thursday, February 05, 2004 10:07 AM
> To: [EMAIL PROTECTED]
> Subject: TSM 5.2 performances on AIX 5.1
>
>
> Hello everybody,
> I need some info regarding the performances of a TSM on AIX urgent ,if
> any of u could help , because i'm experiencing some problems.
> I've installed TSM 5.2 on a AIX box (5.1 64 bits) and left all the
> default parameters .
> The performances over a Gbit network are poor , backups of 4 GB taking
> over 35min (5.1.5 AIX client) . There is no load on server , the disk is
> busy 5% .
> Do u have any  idea what could causing poor performance and what can be
> done ? thanks,
> Mada


Re: TSM 5.2 performances on AIX 5.1

2004-02-05 Thread Karel Bos
And what sort of data. One file of 4 GB or 2 000 000 files and 4 GB in
total?



Karel

-Oorspronkelijk bericht-
Van: Ben Bullock [mailto:[EMAIL PROTECTED]
Verzonden: donderdag 5 februari 2004 18:20
Aan: [EMAIL PROTECTED]
Onderwerp: Re: TSM 5.2 performances on AIX 5.1


Which ML are you at on AIX?
Which version of TMS 5.2.0.0?
What vmtune settings do you have? (if any)

Ben

-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
Madalina Cozea
Sent: Thursday, February 05, 2004 10:07 AM
To: [EMAIL PROTECTED]
Subject: TSM 5.2 performances on AIX 5.1


Hello everybody,
I need some info regarding the performances of a TSM on AIX urgent ,if
any of u could help , because i'm experiencing some problems.
I've installed TSM 5.2 on a AIX box (5.1 64 bits) and left all the
default parameters .
The performances over a Gbit network are poor , backups of 4 GB taking
over 35min (5.1.5 AIX client) . There is no load on server , the disk is
busy 5% .
Do u have any  idea what could causing poor performance and what can be
done ? thanks,
Mada


Re: TSM 5.2 performances on AIX 5.1

2004-02-05 Thread PINNI, BALANAND (SBCSI)
What is ur NIC speed set to. Did u enable or change MTU if yes set it back
to 1500 .Since 9000 needs to be changed on Switch also .It depends kind of
engine u have on CISCO switch.

Thanks
Balanand Pinni

-Original Message-
From: Madalina Cozea [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 05, 2004 11:07 AM
To: [EMAIL PROTECTED]
Subject: TSM 5.2 performances on AIX 5.1


Hello everybody,
I need some info regarding the performances of a TSM on AIX urgent ,if any
of u could help , because i'm experiencing some problems.
I've installed TSM 5.2 on a AIX box (5.1 64 bits) and left all the default
parameters .
The performances over a Gbit network are poor , backups of 4 GB taking over
35min (5.1.5 AIX client) . There is no load on server , the disk is busy 5%
.
Do u have any  idea what could causing poor performance and what can be done
?
thanks,
Mada


Re: TSM 5.2 performances on AIX 5.1

2004-02-05 Thread Ben Bullock
Which ML are you at on AIX? 
Which version of TMS 5.2.0.0?
What vmtune settings do you have? (if any)

Ben

-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
Madalina Cozea
Sent: Thursday, February 05, 2004 10:07 AM
To: [EMAIL PROTECTED]
Subject: TSM 5.2 performances on AIX 5.1


Hello everybody, 
I need some info regarding the performances of a TSM on AIX urgent ,if
any of u could help , because i'm experiencing some problems. 
I've installed TSM 5.2 on a AIX box (5.1 64 bits) and left all the
default parameters . 
The performances over a Gbit network are poor , backups of 4 GB taking
over 35min (5.1.5 AIX client) . There is no load on server , the disk is
busy 5% . 
Do u have any  idea what could causing poor performance and what can be
done ? thanks, 
Mada


TSM 5.2 performances on AIX 5.1

2004-02-05 Thread Madalina Cozea
Hello everybody, 
I need some info regarding the performances of a TSM on AIX urgent ,if any of u could 
help , because i'm experiencing some problems. 
I've installed TSM 5.2 on a AIX box (5.1 64 bits) and left all the default parameters 
. 
The performances over a Gbit network are poor , backups of 4 GB taking over 35min 
(5.1.5 AIX client) . There is no load on server , the disk is busy 5% . 
Do u have any  idea what could causing poor performance and what can be done ?
thanks, 
Mada


Re: Pending -> Empty?

2004-02-05 Thread Richard Sims
>A tape goes from Pending status to Empty Status after the re-use delay
>period is up.  What process or command triggers the status change from
>Pending to Empty, i.e. what causes the tsm server to go check all the
>tapes in pending status to see if their re-use delay period is up?

David - "You Don't Need To Know".  :-)

The server subdivides its work among a variety of worker threads, some of
which are termed "agents".  The 'SHow THReads' command will give you a
sense of the various areas.  From what little I know, the server has some
general time-based lookaround (housekeeping) tasks, which look around every
so often to see what general things need doing, as well as specialized
tasks to work on certain areas.  Suffice to say that its internals will
take care of such things.

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


Re: predefined backup

2004-02-05 Thread Prather, Wanda
Sure.

Use the command line version of the TSM client, dsmc.
Put it in a .bat file with a shortcut on the Windows desktop.

We call ours "one-button backup", and it's a .bat file with these contents:

--
c:
cd c:\progra~1\tivoli\tsm\baclient
echo "+" >>dsmsched.log
echo "+" >>dsmsched.log
echo "+" >>dsmsched.log
echo "starting one-button-backup  %DATE%  %TIME% " >>dsmsched.log
echo "++ ++" >>dsmsched.log
dsmc incremental >>dsmsched.log



"dsmc incremental" does a complete incremental backup, same as if you used
the scheduler.
You can, of course, change it to dsmc "yourdesiredfilespec" to backup just
selected files/directories.

The dsmc command and it's parameters are documented in the TSM Windows
Client Installation and Use manual.

Wanda Prather
Johns Hopkins University Applied Physics Laboratory
443-778-8769

"Intelligence has much less practical application than you'd think" -
Dilbert/Scott Adams
-Original Message-
From: Morten Kongsted [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 05, 2004 4:34 AM
To: [EMAIL PROTECTED]
Subject: predefined backup


Hi

Is it possible to predefine a backup job, which the user have to start by
himself. First, I don't want to use server schedules because they have be
started at a certain time and some users are not satisfied with that.
Second I don't want the user to select which files to backup every time.
Basically i want a backup rountine which the user can start any time he/she
wants. Is this possible ?
I'm running tsm 5.2 on as/400 pase with 5.2 windows clients.

Regards

Morten Kongsted


Re: Netware upgrade to 6.5 and TSM client upgrade 5.2.2

2004-02-05 Thread Bill Fitzgerald
there is a problem with the client 5.2.2 and the NLM from NW

In late December and early January we were having the same problem 

After working with IBM and Novell, the NW people installed a service pac 

the service pac that the NW people installed had these NLMs

TSAFS.NLM v 6.50.06 December 4, 2003
SMDR.NLM  v 6.54 December 1, 2003

you may also wish to go to the TSM FTP site and download the latest version of the TSM 
Client for Novell 


>>> [EMAIL PROTECTED] 02/05/04 09:28AM >>>
Hi Gang, wish I could repay you guys for all your help you have given me
in the past, but once again, need some help please.

We have just upgraded our NetWare servers to 6.5. In the process, we
are also upgrading the TSM client to 5.2.2. The backups seem to be
running ok, but I am getting a "Sytem program Error" that I can't find a
answer to. Below are my logs from a Client we just upgraded both the OS
and the TSM client. You will see after the Jan. 3rd backup, that we
start seeing a lot more errors, which most are just open files. But in
both the DSMerror.log and the dsmsched.log, you will see the System
program error. I will also include my Dsm.opt file as well.Thanks
for all your help...

Thanks, Mark Hayden
Informations Systems Analyst
E-Mail:  [EMAIL PROTECTED]


Pending -> Empty?

2004-02-05 Thread David E Ehresman
A tape goes from Pending status to Empty Status after the re-use delay
period is up.  What process or command triggers the status change from
Pending to Empty, i.e. what causes the tsm server to go check all the
tapes in pending status to see if their re-use delay period is up?

David


Re: DRM QUESTION

2004-02-05 Thread Prather, Wanda
DRM server to server functionality is really just electronic vaulting; the
secondary TSM server cannot just "take over" from the primary.

The primary server's data base is the ONLY one with the information/metadata
that is required to restore data from the copy pool tapes.

So you have to somehow recreate the primary server functionality by
restoring it's data base to another machine.

Now you could do that by setting up a second INSTANCE of TSM on your
secondary machine, or do it on another machine at your secondary site.

Hope that helps.



-Original Message-
From: tsmadmin account for Excaliber Business Solutions
[mailto:[EMAIL PROTECTED]
Sent: Thursday, February 05, 2004 8:33 AM
To: [EMAIL PROTECTED]
Subject: DRM QUESTION
Importance: High


Hi ALL

Need info if I am using server to server functionality.

I have got a primary server for primary data and a secondary server for the
copy pools.

My question is, if i lose my primary server, how would I bring up the
secondary( COPY TAPES/DISK ) online
to act as the primary server.

If anyone has done this before and can help it would be appreciated.

Thks
Sean


"This e-mail is sent on the Terms and Conditions that can be accessed by
Clicking on this link http://www.vodacom.net/legal/email.asp "


Re: Netware upgrade to 6.5 and TSM client upgrade 5.2.2

2004-02-05 Thread JOEL LOVELIEN
We are using Groupwise 5.5 and TSM client 5.1.5.  I don't have many problems backing 
up the databases at all.  Our PO's run in client/server mode only.  The only problems 
I have are with some of the temporary files bouncing around the file system.  
DSMERROR.LOG does not show any errors, and DSMSCHED.LOG shows the files as NORMAL and 
SENT.  

>>> [EMAIL PROTECTED] 2/5/2004 8:49:25 AM >>>
From: JOEL LOVELIEN [mailto:[EMAIL PROTECTED] 
We are running 6.0 and 5.2.2, but by the looks of things, these are just open files 
that are held by the operating system.  A lot of them are log files.  The ZenWorks 
stuff is something that you can probably exclude, at least those file types in that 
directory (as I've done.  It's temporary stuff anyway.)  I'm puzzled by the Groupwise 
stuff not backing up (wpdomain).  What version of Groupwise are you on?
===
 
Groupwise has open files that are not normally accessable by TSM, unless you use an 
open file manager like St. Bernard's OFM.
 
--
Mark Stapleton ([EMAIL PROTECTED])

 


Re: Phantom Administrator canceling sessions?

2004-02-05 Thread Richard Sims
>02/04/2004 23:41:02 ANS1369W Session Rejected: The session was canceled by
>the server administrator.
>
>I am getting this some servers.  This was not canceled by an individual.  Is
>there some explaination as to why this is occuring?

When you experience session errors, you need to look at both ends of the session
to get the whole picture.  You additionally need to look at the server
Activity Log.

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


Re: Phantom Administrator canceling sessions?

2004-02-05 Thread Richard van Denzel
I've seen this when a process with a higher priority starts. E.g. a
STGPOOL BACKUP was cancelled by a DB BACKUP.

Met vriendelijke groet, with kind regards,

Richard van Denzel
Consultant
IBM CATE, TSM Certified Consultant





"Coats, Jack" <[EMAIL PROTECTED]>
Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
05-02-2004 16:02
Please respond to "ADSM: Dist Stor Manager"


To: [EMAIL PROTECTED]
cc:
Subject:Phantom Administrator canceling sessions?


02/04/2004 23:41:02 ANS1369W Session Rejected: The session was canceled by
the server administrator.


I am getting this some servers.  This was not canceled by an individual.
Is
there some explaination as to why this is occuring?

TIA ... JC


Re: Server media mount not possible

2004-02-05 Thread Stapleton, Mark
From: Roger Nadler [mailto:[EMAIL PROTECTED] 
Running TSM 5.1.5.4 on IBM H70 AIX 5.1.3 with Scalar100 (4 LTO1 drives).
Client is W2K 5.1.5.  TSM Server has fiber GIG connection to a Cisco 4506
and the client has a copper Intel GIG NIC into the same switch. Networking
in not a bottleneck. Everything on the server looks good. The robot pulls
the tape, mounts it in the drive but the client doesn't think it's there.
Manually tried to start backup from client and it fails 3 out of 4 times.
Some times the backup starts and 1/2 way thru fails with the same errors.

02/04/2004 21:07:17 ANS1512E Scheduled event 'NIGHTLY_NOTES_2' failed.
Return code = 12.
02/04/2004 22:00:16 sessSendVerb: Error sending Verb, rc: -50
02/04/2004 22:00:16 ANS1809W Session is lost; initializing session reopen
procedure.
02/04/2004 22:00:31 ANS1810E TSM session has been reestablished.
02/04/2004 22:01:18 Server media mount not possible
02/04/2004 22:02:04 Server media mount not possible
02/04/2004 22:03:08 GetDfsEnum(): Server=\\usptml01, NetDfsEnum() returns
RC=259.
02/05/2004 00:05:59 sessSendVerb: Error sending Verb, rc: -50
02/05/2004 00:05:59 ANS1809W Session is lost; initializing session reopen
procedure.
02/05/2004 00:06:15 ANS1810E TSM session has been reestablished.
02/05/2004 00:06:54 Server media mount not possible

 
You've got network connectivity issues (rc=-50).
 
--
Mark Stapleton ([EMAIL PROTECTED])

 



Phantom Administrator canceling sessions?

2004-02-05 Thread Coats, Jack
02/04/2004 23:41:02 ANS1369W Session Rejected: The session was canceled by
the server administrator.


I am getting this some servers.  This was not canceled by an individual.  Is
there some explaination as to why this is occuring?

TIA ... JC


Server media mount not possible

2004-02-05 Thread Roger Nadler
Running TSM 5.1.5.4 on IBM H70 AIX 5.1.3 with Scalar100 (4 LTO1 drives).
Client is W2K 5.1.5.  TSM Server has fiber GIG connection to a Cisco 4506
and the client has a copper Intel GIG NIC into the same switch. Networking
in not a bottleneck. Everything on the server looks good. The robot pulls
the tape, mounts it in the drive but the client doesn't think it's there.
Manually tried to start backup from client and it fails 3 out of 4 times.
Some times the backup starts and 1/2 way thru fails with the same errors.

Anyone got any ideas??


02/04/2004 21:07:17 ANS1512E Scheduled event 'NIGHTLY_NOTES_2' failed.
Return code = 12.
02/04/2004 22:00:16 sessSendVerb: Error sending Verb, rc: -50
02/04/2004 22:00:16 ANS1809W Session is lost; initializing session reopen
procedure.
02/04/2004 22:00:31 ANS1810E TSM session has been reestablished.
02/04/2004 22:01:18 Server media mount not possible
02/04/2004 22:02:04 Server media mount not possible
02/04/2004 22:03:08 GetDfsEnum(): Server=\\usptml01, NetDfsEnum() returns
RC=259.
02/05/2004 00:05:59 sessSendVerb: Error sending Verb, rc: -50
02/05/2004 00:05:59 ANS1809W Session is lost; initializing session reopen
procedure.
02/05/2004 00:06:15 ANS1810E TSM session has been reestablished.
02/05/2004 00:06:54 Server media mount not possible
___

Roger Nadler
Manager Plant Engineering/Network Technologies
Office (856) 582-3212
Fax (856) 256-2901


Text Messaging:[EMAIL PROTECTED]

Sony Disc Manufacturing
400 North Woodbury Road
Pitman, NJ 08071
___


Re: Netware upgrade to 6.5 and TSM client upgrade 5.2.2

2004-02-05 Thread Stapleton, Mark
From: JOEL LOVELIEN [mailto:[EMAIL PROTECTED] 
We are running 6.0 and 5.2.2, but by the looks of things, these are just open files 
that are held by the operating system.  A lot of them are log files.  The ZenWorks 
stuff is something that you can probably exclude, at least those file types in that 
directory (as I've done.  It's temporary stuff anyway.)  I'm puzzled by the Groupwise 
stuff not backing up (wpdomain).  What version of Groupwise are you on?
===
 
Groupwise has open files that are not normally accessable by TSM, unless you use an 
open file manager like St. Bernard's OFM.
 
--
Mark Stapleton ([EMAIL PROTECTED])

 



Re: Netware upgrade to 6.5 and TSM client upgrade 5.2.2

2004-02-05 Thread JOEL LOVELIEN
Mark,

We are running 6.0 and 5.2.2, but by the looks of things, these are just open files 
that are held by the operating system.  A lot of them are log files.  The ZenWorks 
stuff is something that you can probably exclude, at least those file types in that 
directory (as I've done.  It's temporary stuff anyway.)  I'm puzzled by the Groupwise 
stuff not backing up (wpdomain).  What version of Groupwise are you on?

Joel

>>> [EMAIL PROTECTED] 2/5/2004 8:28:15 AM >>>
Hi Gang, wish I could repay you guys for all your help you have given me
in the past, but once again, need some help please.

We have just upgraded our NetWare servers to 6.5. In the process, we
are also upgrading the TSM client to 5.2.2. The backups seem to be
running ok, but I am getting a "Sytem program Error" that I can't find a
answer to. Below are my logs from a Client we just upgraded both the OS
and the TSM client. You will see after the Jan. 3rd backup, that we
start seeing a lot more errors, which most are just open files. But in
both the DSMerror.log and the dsmsched.log, you will see the System
program error. I will also include my Dsm.opt file as well.Thanks
for all your help...

Thanks, Mark Hayden
Informations Systems Analyst
E-Mail:  [EMAIL PROTECTED]


new tapeutil patch

2004-02-05 Thread Marcel J.E. Mol
Hi,
For those interested, I've put a new version of my patch for tapeutil
inline. It is for tapeutil-1.58 and includes a new command to read out
the MAM of a cartridge and a command to show the block limits of a device.
See http://www.mesa.nl (follow the download link).

For those without a compiler I also put online a compiled (and gzipped)
version of the patched tapeutil: tu-158.gz

-Marcel
--
 == Marcel J.E. MolMESA Consulting B.V.
===-ph. +31-(0)6-54724868  P.O. Box 112
===-[EMAIL PROTECTED] 2630 AC  Nootdorp
__ www.mesa.nl ---U_n_i_x__I_n_t_e_r_n_e_t The Netherlands 
 They couldn't think of a number,   Linux user 1148  --  counter.li.org
so they gave me a name!  -- Rupert Hine  --  www.ruperthine.com


Netware upgrade to 6.5 and TSM client upgrade 5.2.2

2004-02-05 Thread Mark Hayden
Hi Gang, wish I could repay you guys for all your help you have given me
in the past, but once again, need some help please.

We have just upgraded our NetWare servers to 6.5. In the process, we
are also upgrading the TSM client to 5.2.2. The backups seem to be
running ok, but I am getting a "Sytem program Error" that I can't find a
answer to. Below are my logs from a Client we just upgraded both the OS
and the TSM client. You will see after the Jan. 3rd backup, that we
start seeing a lot more errors, which most are just open files. But in
both the DSMerror.log and the dsmsched.log, you will see the System
program error. I will also include my Dsm.opt file as well.Thanks
for all your help...

Thanks, Mark Hayden
Informations Systems Analyst
E-Mail:  [EMAIL PROTECTED]


dsm.opt
Description: Binary data


DSMSCHED.LOG
Description: Binary data


DSMERROR.LOG
Description: Binary data


Re: What do these numbers mean ?

2004-02-05 Thread Remco Post
On Wed, 4 Feb 2004 11:06:42 -0600
"Redell, Greg S." <[EMAIL PROTECTED]> wrote:

> So if you were going to open holes in a firewall, what ports would you
> open for the data to go through?  Given that statement about the client
> source port, you could not definitively say what port it is going to
> come over
>

you know it is going to connect to  port 1500, so that is
what you open up on your firewall, as is the case for http, ftp, telnet,
smtp, pop3, ldap or any other protocol, client source ports are completely
irrelevant


> -Original Message-
> From: Remco Post [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, February 04, 2004 11:03 AM
> To: [EMAIL PROTECTED]
> Subject: Re: What do these numbers mean ?
>
> On Wed, 4 Feb 2004 11:57:13 -0500
> Zoltan Forray/AC/VCU <[EMAIL PROTECTED]> wrote:
>
> > Thank you (and Richard).
> >
> > But I am still a little confused on why these numbers vary soo
> much.
> >
> > Besides, I thought the PORT number is 1500/1501 ?   That is what is
> > configured ?
>
> The TSM server port (dest) is 1500 per default. The clients source port
> is
> random and usually somewhere between 32768 and 65535.
>
> The TSM client listener is usually on port 1501.
>
> >
> > Is this a firewall thing ?
> >
> >
> >
> >
> >
> > Karel Bos <[EMAIL PROTECTED]>
> > Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
> > 02/04/2004 11:18 AM
> > Please respond to "ADSM: Dist Stor Manager"
> >
> >
> > To: [EMAIL PROTECTED]
> > cc:
> > Subject:Re: What do these numbers mean ?
> >
> >
> > TCP portnumber.
> >
> >
> > -Oorspronkelijk bericht-
> > Van: Zoltan Forray/AC/VCU [mailto:[EMAIL PROTECTED]
> > Verzonden: woensdag 4 februari 2004 17:18
> > Aan: [EMAIL PROTECTED]
> > Onderwerp: What do these numbers mean ?
> >
> >
> > We are having problems getting a Linux client to perform backups (see
> my
> > earlier message that has not been responded to...yet !).
> >
> > What do the numbers after the DNS name mean and how are they relevant
> ?
> > Sometimes the numbers are 4-digitsother times 5 ??
> >
> > 2/4/2004 10:36:48 AM ANR0406I Session 42860 started for node
> AJAX.VCU.EDU
> > (Linux86) (Tcp/Ip ajax.vcu.edu(57262)).
>
>
> --
> 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


--
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


Re: Explain Excludes in the OptionSet

2004-02-05 Thread Richard Sims
>When trying to use excludes from an option set,  do these get processed
>before or after the ones
>in the dsm.opt file?  Or do they get processed at all if there are any in
>the dsm.opt file?

Jack - See Admin Guide topic "Managing Client Option Files" which explains
   the order of processing.

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


Re: DRM QUESTION

2004-02-05 Thread Stefan Gocke
This is just a quick and dirty description:

Set up the second server to work on different TCP Ports. save the
primary servers DB on the second server. Have space for the db + log
for primary server available on the second server and use the
dsmserv.opt, dsmserv.dsk ... of the primary server to restore the
primary server onto the second server (dsmserv restore ...). Use
IP-Aliases to have the IP address of the primary server available on
the second servers NIC's.

I've done the whole process and tested it sucessfully at some of my
customers.

Stefan Gocke
Gocke IT Solutions
email: [EMAIL PROTECTED]

tsmadmin account for Excaliber Business Solutions schrieb:
> Hi ALL
> 
> Need info if I am using server to server functionality.
> 
> I have got a primary server for primary data and a
> secondary server for the copy pools.
> 
> My question is, if i lose my primary server, how would I
> bring up the secondary( COPY TAPES/DISK ) online 
> to act as the primary server.
> 
> If anyone has done this before and can help it would be
> appreciated.
> 
> Thks
> Sean
> 
> 
> “This e-mail is sent on the Terms and Conditions that can
> be accessed by Clicking on this link
> http://www.vodacom.net/legal/email.asp "
> 
-- 
Stefan Gocke

Gocke IT Solutions
Maurerweg 5
D-85649 Brunnthal, Germany
Tel: +49-(0)8102-897789   Fax: +49-(0)8102-897738
Mobile: +49-(0)172-6841213
e-mail: [EMAIL PROTECTED]

Explain Excludes in the OptionSet

2004-02-05 Thread Coats, Jack
Ok, I have only been working on TSM 'forever', but one thing still eludes me
(at least one thing :)

Question:
When trying to use excludes from an option set,  do these get processed
before or after the ones
in the dsm.opt file?  Or do they get processed at all if there are any in
the dsm.opt file?

--
Jack Coats
Sterling Bank, Technology Department
This document and any attachments are privileged and confidential.  If you
received this message in error, please notify the sender and delete the
document.


DRM QUESTION

2004-02-05 Thread tsmadmin account for Excaliber Business Solutions
Hi ALL

Need info if I am using server to server functionality.

I have got a primary server for primary data and a secondary server for the copy pools.

My question is, if i lose my primary server, how would I bring up the secondary( COPY 
TAPES/DISK ) online 
to act as the primary server.

If anyone has done this before and can help it would be appreciated.

Thks
Sean


“This e-mail is sent on the Terms and Conditions that can be accessed by Clicking on 
this link http://www.vodacom.net/legal/email.asp "


incremental DB2 restore

2004-02-05 Thread Nicolas Launay
Hi all,

we are trying to do a db2 incremental restore through TSM.


We managed to make a full backup and an incremental backup on a databse.

The restore of the full database backup is also working.

Our problem is the restore of the incremental backup.

The restore commend is succesfull, but, in fact the database is
inconsistent.

We are said "An oldest version of the restore isn't finished yet"

Has anyone ever done this?


Re: Schedule Configuration

2004-02-05 Thread Andrew Raibeck
You need to go back and review my prior post on this subject. The proposed 
configuration will yield undesirable results.

Regards,

Andy

Andy Raibeck
IBM Software Group
Tivoli Storage Manager Client Development
Internal Notes e-mail: Andrew Raibeck/Tucson/[EMAIL PROTECTED]
Internet e-mail: [EMAIL PROTECTED]

The only dumb question is the one that goes unasked.
The command line is your friend.
"Good enough" is the enemy of excellence.



Robert Ouzen <[EMAIL PROTECTED]> 
Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
02/02/2004 02:24
Please respond to
"ADSM: Dist Stor Manager"


To
[EMAIL PROTECTED]
cc

Subject
Schedule Configuration






Hi 

I think for resolving this issue to ceate on my dsm.sys two stenza
  1. servername A with an inclexcl  management fullmgm
  2. severname  B  with an inclexl   management incrmgm

To create  two dsm.opt ( dsm_full.opt and dsm_incr.opt)
  1. dsm_full.opt  with servername A
  2. dsm_incr.opt with servername B

And to lauch: 
1. dsmc s -optfile=dsm_full.opt ………
2. dsmc I -optfile=dsm_incr.opt

I am correct ……..

Regards 
Robert Ouzen
 

> _ 
> From: רוברט אוזן 
> Sent: Sunday, February 01, 2004 9:20 AM
> To:   'ADSM: Dist Stor Manager'
> Cc:   'Amos ([EMAIL PROTECTED])'
> Subject:  Schedule Configuration
> 
> Hi to all
> 
> Need to schedule once a week a full backup of File systems on my Aix
> clients and in between Incremental backups. Want to keep my full backup
> for 3 Versions and my Incremental for 7 Versions.
> 
> I thought to create 2 Managements Class said:   Fullmgm   with backup 
copy
> group of 3 versions to keep
> 
> Incrmgm  with backup copy group of 7 versions to keep 
> 
> Did is a way to do it without creating 2 nodes when each node will point
> to another management class and 2 scheduler . I can't figure how to do 
it
> with just one node ?
> 
> Any suggestions will be appreciate ……..
> 
> Regards
> Robert Ouzen
> E-mail: [EMAIL PROTECTED]
> 




AW: predefined backup

2004-02-05 Thread Salak Juraj
Hi,
its is perfect possible using the command line client.
The simplest command to start is
"dsmc incr"
or, if you would prefer to offer more classical way of backup,
"dsmc arch d:\path\*"

You probably want your users only have clicked on an icon,
so you can prepare one pointing to for example CMD.EXE
with Parameter 
"/C c:\programs\tivoli\tsm\baclient\dsmc.exe incr"
and working directory set to c:\programs\tivoli\tsm\baclient.


You are supposed to have read the manuals first, 
there are tons of options related to this,
like whether to backup subdirectories or not - so be sure to set it up right
way.

regards
Juraj Salak







-Ursprüngliche Nachricht-
Von: Morten Kongsted [mailto:[EMAIL PROTECTED]
Gesendet: Donnerstag, 05. Februar 2004 10:34
An: [EMAIL PROTECTED]
Betreff: predefined backup


Hi

Is it possible to predefine a backup job, which the user have to start by
himself. First, I don't want to use server schedules because they have be
started at a certain time and some users are not satisfied with that.
Second I don't want the user to select which files to backup every time.
Basically i want a backup rountine which the user can start any time he/she
wants. Is this possible ?
I'm running tsm 5.2 on as/400 pase with 5.2 windows clients.

Regards

Morten Kongsted


mscs client path not found

2004-02-05 Thread Koen Willems
Dea listers,

Funny problem on w2k clusterservice.

02/05/2004 12:15:35 ANS1228E Sending of object '\\nt3000896\d$' failed
02/05/2004 12:15:35 ANS1063E Invalid path specification
02/05/2004 12:15:37 ANS1512E Scheduled event 'TEST' failed.  Return code =
12.
My opt file:

NODENAMENT3000897_CLUSTER
PASSWORDACCESS  GENERATE
TCPSERVERADDRESS172.16.7.19
LARGECOMYES
TXNBYTELIMIT2097152
DOMAIN  D:
CLUSTERNODE YES
SCHEDLOGRETENTION   21  D
ERRORLOGRETENTION   21  D
My DSMCUTIL command:

c:\Progra~1\tivoli\tsm\baclient\dsmcutil install SCHEDuler /name:"TSM Client
Scheduler NT3000897" /clientdir:"c:\Progra~1\tivoli\tsm\baclient"
/optfile:C:\Progra~1\Tivoli\TSM\Cluste~1\dsm_NT3000897.opt
/node:NT3000897_CLUSTER /password:thxck_d7 /validate:yes /autostart:yes
/startnow:no /clusternode:yes /clustername:NT3000896
The disks and the culsterservice all run under te administrator account ?

A Penny for Your Thoughts.

THNX,

Koen

_
MSN Search, for accurate results! http://search.msn.nl


Re: Strange orphaned objects

2004-02-05 Thread Loon, E.J. van - SPLXM
Hi Thomas!
The problem is that these nodes all running old TDP versions and they cannot
be upgraded easily.
Anyway, TDPOSYNC wouldn't help me here either, because it only removes
objects from TSM when there are no entries for those objects in the recovery
catalog and for a lot of them there are!
Our Oracle department is now checking the recovery catalog to see how many
old backups there are.
Thanks!
Kindest regards,
Eric van Loon
KLM Royal Dutch Airlines

-Original Message-
From: Thomas Rupp, Vorarlberger Illwerke AG
[mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 04, 2004 18:42
To: [EMAIL PROTECTED]
Subject: AW: Strange orphaned objects


Hi Eric,

I recently had a similar problem.
If you are on a recent TDPO version you can use TDPOSYNC
utility to synchronise the RMAN catalog an TSM.
But this will only help as long as the nodename/filespacename
haven't changed.
> The nodename was changed and also the Oracle filespace has changed.
Do you know the "old" nodename/filespacename?
If yes you could try
dsmc query backup "/filespace_name/*" -SUBDIR=YES -virtualn=nodename
That will give you the list of all saved Oracle files.

API 16.413.696 KB  29.01.2004 22:11:33DEFAULT A
/DB22//full_DB22_s3039_t516751844_p1
API 16.413.696 KB  30.01.2004 22:11:17DEFAULT A
/DB22//full_DB22_s3057_t516838230_p1

If you are still saving to a filespace with orphaned files you can
just rename the filespace and let TDPO create a new one. After the 
retention period (that means RMAN starts to delete old backups) you
can just drop the old filespace on TSM.

HTH
Thomas Rupp

-Ursprüngliche Nachricht-
Von: Loon, E.J. van - SPLXM [mailto:[EMAIL PROTECTED] 
Gesendet: Mittwoch, 04. Februar 2004 15:29
An: [EMAIL PROTECTED]
Betreff: Re: Strange orphaned objects


Hi Neil!
My previous solution (del object) appeared to be a too easy solution.
The old TDP backups are also present in the Oracle recovery catalog. Since
then, a lot of things changed. The nodename was changed and also the Oracle
filespace has changed.
I guess it will not be all that easy to get rid of these backups, but it's
worth trying because we talk about several gigabytes of obsolete data.
What I now want to find out is if there are more of those nodes in my TSM
environment.
The only way I could think of is to create a select statement which lists
all backups of non-oracle nodes with a ll_name of //. However, I ran that
statement on my test environment and it took almost 3 hours to finish. On my
production environment I'm afraid it will take days with all the negative
impact on the database performance.
Do you have an idea how to list these files without a select * from backups?
Thank you VERY much for your reply in advance!
Kindest regards,
Eric van Loon
KLM Royal Dutch Airlines


**
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: Strange orphaned objects

2004-02-05 Thread Loon, E.J. van - SPLXM
Hi Neil!
What I tried is issuing a select * from backups where node_name='NODE1' and
hl_name='//' and backup_date < '2003-01-01'.
This query took about 20 minutes, but it was successful.
I guess I'm going to issue it for all Oracle related nodes one by one.
Thank you VERY much for your help!
Kindest regards,
Eric van Loon
KLM Royal Dutch Airlines

-Original Message-
From: Neil Rasmussen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 04, 2004 21:39
To: [EMAIL PROTECTED]
Subject: Re: Strange orphaned objects


Hi Andy,

Below is a response that I am thinking about sending to a LISTSERV user.
Can you tell me if I am on track, or if you know the answer could you
share that information with me? thanks.

*
Eric,
I am not sure that there is any better way to do your query than what you
have already done. You might want to try breaking your queries up into
smaller search patterns by maybe querying all nodes that begin with the
letter "A" then "B" and so forth and then run these scripts over the
course of serveral days to minimize impact on the server. Having said
that, I do not know what the side effect of this kind of query - in other
words, will the TSM Server query for all high level "//" and then filter
out the results based on node names or will it filter on node names first.
This is where you may want to try it on your test machine first.


Regards,

Neil Rasmussen
Software Development
Data Protection for Oracle





"Loon, E.J. van - SPLXM" <[EMAIL PROTECTED]>
Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
02/04/2004 06:28 AM
Please respond to
"ADSM: Dist Stor Manager"


To
[EMAIL PROTECTED]
cc

Subject
Re: Strange orphaned objects






Hi Neil!
My previous solution (del object) appeared to be a too easy solution.
The old TDP backups are also present in the Oracle recovery catalog. Since
then, a lot of things changed. The nodename was changed and also the
Oracle
filespace has changed.
I guess it will not be all that easy to get rid of these backups, but it's
worth trying because we talk about several gigabytes of obsolete data.
What I now want to find out is if there are more of those nodes in my TSM
environment.
The only way I could think of is to create a select statement which lists
all backups of non-oracle nodes with a ll_name of //. However, I ran that
statement on my test environment and it took almost 3 hours to finish. On
my
production environment I'm afraid it will take days with all the negative
impact on the database performance.
Do you have an idea how to list these files without a select * from
backups?
Thank you VERY much for your reply in advance!
Kindest regards,
Eric van Loon
KLM Royal Dutch Airlines


-Original Message-
From: Neil Rasmussen [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 03, 2004 17:16
To: [EMAIL PROTECTED]
Subject: Re: Strange oprphaned objects


Eric,

Those look like Data Protection for Oracle backups.


Regards,

Neil Rasmussen
Software Development
Data Protection for Oracle
[EMAIL PROTECTED]




"Loon, E.J. van - SPLXM" <[EMAIL PROTECTED]>
Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
02/03/2004 08:11 AM
Please respond to
"ADSM: Dist Stor Manager"


To
[EMAIL PROTECTED]
cc

Subject
Strange oprphaned objects






Hi *SM-ers!
I have a Sun Solaris node for which I found something very strange. I
issued
a select * from backups where node_name='NODE' and I forwarded the output
to
a file. In that file I see some very old backup files which have a very
strange path. The filespace name for such a file is /data0001, the ll_name
is // and the object name is MT01D_t382461362_S3_P1.
The files cannot be seen by the BA GUI, because it only displays the files
located in /data0001/, not the files located in /data0001//.
Has anybody seen this before?
Client level is 4.2.3, server level is 5.1.8.
Kindest regards,
Eric van Loon
KLM Royal Dutch Airlines


**
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.
**


TDP error

2004-02-05 Thread nghiatd
Hello all,
I want to restore database, but RMAN always restores database that was backup lastly.
Could you show me the method to backup database that I want ?
( Example : Database's backupset is 78)
Thanks, Nghiatd
P/S : I use TDP backup for Oracle


Re: collocation

2004-02-05 Thread John Naylor
Can't comment on offsite reclamation, because cross site tape capability
means all reclamation is onsite, but in my environment TSM only selects
tapes marked full as reclamation candidates.





Richard Sims <[EMAIL PROTECTED]>@vm.marist.edu> on 02/04/2004 08:48:24 PM

Please respond to "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>

Sent by:"ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>


To:[EMAIL PROTECTED]
cc:
Subject:Re: collocation


>Reclamation will only reclaim tapes that were once full and have met your
>rules for reclamation. It will not effect tapes that have a status of
>filling.

To the best of my knowledge, Filling volumes are subject to reclamation
just as much as Full volumes are: it's just a matter of the combined
size of the "holes" in the volume's thus-far-written area.  Remember
that there's no guarantee that you will never have more than one Filling
volume for a given stgpool: multiple processes may cause there to be
multiple volumes in Filling state.  This can eventually cause a Filling
volume to be just hanging around, unused for a long time; and the Filling
volume could be 98% written.  You want such stuff reclaimed.

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



**
The information in this E-Mail is confidential and may be legally
privileged. It may not represent the views of Scottish and Southern
Energy plc.
It is intended solely for the addressees. Access to this E-Mail by
anyone else is unauthorised. If you are not the intended recipient,
any disclosure, copying, distribution or any action taken or omitted
to be taken in reliance on it, is prohibited and may be unlawful.
Any unauthorised recipient should advise the sender immediately of
the error in transmission.

Scottish Hydro-Electric, Southern Electric, SWALEC and S+S
are trading names of the Scottish and Southern Energy Group.
**


predefined backup

2004-02-05 Thread Morten Kongsted
Hi

Is it possible to predefine a backup job, which the user have to start by
himself. First, I don't want to use server schedules because they have be
started at a certain time and some users are not satisfied with that.
Second I don't want the user to select which files to backup every time.
Basically i want a backup rountine which the user can start any time he/she
wants. Is this possible ?
I'm running tsm 5.2 on as/400 pase with 5.2 windows clients.

Regards

Morten Kongsted