Re: piping commands in dsmadmc

2008-12-10 Thread Len Boyle
You can run the commands from a script external of tsm. 

Something like perl, rexx, A unix shell, or windows powershell. 
You can run the dsmc command from the script where the script process the 
output of the command, the script would then build one or more scripts to be 
run from within the script.

len

-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Stephan 
Boldt
Sent: Wednesday, December 10, 2008 7:13 PM
To: ADSM-L@VM.MARIST.EDU
Subject: [ADSM-L] piping commands in dsmadmc

Hello,

is there any way to pipe use the output of one command as an input of
another? For example if I want to cancel a running space reclamation of a
certain storagepool. So I first have to get the process number and cancel
this process. What I'm looking for is something like this:

select process_num from processes where process='Space Reclamation' and
status like '%TAPE_FILESYSTEM%' | cancel process

Obviously this doesn't work, but is there another way to get this done?

kind regards,
Stephan


piping commands in dsmadmc

2008-12-10 Thread Stephan Boldt
Hello,

is there any way to pipe use the output of one command as an input of
another? For example if I want to cancel a running space reclamation of a
certain storagepool. So I first have to get the process number and cancel
this process. What I'm looking for is something like this:

select process_num from processes where process='Space Reclamation' and
status like '%TAPE_FILESYSTEM%' | cancel process

Obviously this doesn't work, but is there another way to get this done?

kind regards,
Stephan


Re: Wait=yes with multiple processes

2008-12-10 Thread Todd D. Taft

Thomas Denier wrote:

We have a 5.4.2.0 TSM server running under mainframe Linus. Our
daily housekeeping uses 'backup stgpool', 'migrate stgpool',
and 'reclaim stgpool' commands that start multiple processes.
The home-grown software that manages our housekeeping figures
out when each of these activities is done by examining data
piped from an administrative client session with the console
option. I am looking into the possibility of simplifying the
management software by using the 'wait=yes' option of the
various commands. How does this option behave with multiple
processes? In particular, does the command end when the last
of the multiple processes ends?


Yes.  If you specify wait=yes, then it will wait until the last process
finishes (or gets canceled).

--
Todd D. Taft
[EMAIL PROTECTED]


Re: Wait=yes with multiple processes

2008-12-10 Thread Remco Post

On Dec 10, 2008, at 22:29 , Thomas Denier wrote:


We have a 5.4.2.0 TSM server running under mainframe Linus. Our
daily housekeeping uses 'backup stgpool', 'migrate stgpool',
and 'reclaim stgpool' commands that start multiple processes.
The home-grown software that manages our housekeeping figures
out when each of these activities is done by examining data
piped from an administrative client session with the console
option. I am looking into the possibility of simplifying the
management software by using the 'wait=yes' option of the
various commands. How does this option behave with multiple
processes? In particular, does the command end when the last
of the multiple processes ends?




`look into the PARALLEL and SERIAL keywords for TSM server scripts.

--
Met vriendelijke groeten,

Remco Post
[EMAIL PROTECTED]
+31 6 248 21 622


Re: Wait=yes with multiple processes

2008-12-10 Thread Tim Brown
We use TSM scripts. I started out using a homegrown process
that did what you are doing but with REXX execs which examined
TSM output. It was not flexible. I later found a TSM script
that someone shared with me that does it all. We do use wait=yes
for the processes since we have limitations with tape resources
on our TSM server running Z/OS

Our processes run serially not multiple though. If I wanted to
support multiple I would run 2 separate scripts.

Tim Brown
Systems Specialist - Project Leader
Central Hudson Gas & Electric
284 South Ave
Poughkeepsie, NY 12601
Email: [EMAIL PROTECTED] 
Phone: 845-486-5643
Fax: 845-486-5921
Cell: 845-235-4255




-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] Behalf Of
Thomas Denier
Sent: Wednesday, December 10, 2008 4:29 PM
To: ADSM-L@VM.MARIST.EDU
Subject: Wait=yes with multiple processes


We have a 5.4.2.0 TSM server running under mainframe Linus. Our
daily housekeeping uses 'backup stgpool', 'migrate stgpool',
and 'reclaim stgpool' commands that start multiple processes.
The home-grown software that manages our housekeeping figures
out when each of these activities is done by examining data
piped from an administrative client session with the console
option. I am looking into the possibility of simplifying the
management software by using the 'wait=yes' option of the
various commands. How does this option behave with multiple
processes? In particular, does the command end when the last
of the multiple processes ends?


Re: Library manager oversubscription

2008-12-10 Thread Robben Leaf
The library manager allocates the drives to the server instances that
request mounts. If more mounts are requested than there are available
drives, then the most recent mount requests have to wait until a drive
becomes available. This is a pretty common occurrence in our environment
at certain times of the day. It doesn't hurt anything - it just makes some
processes take a little longer.

There's no need to adjust the number of tape drives available to each
server, unless one server has more critical processing to do and must have
priority to the drives over the other server. If all of the drives are
available to both of the TSM instances, the library manager will honor
mount requests on available drives as the requests come in.

Robben Leaf




From:
Thomas Denier <[EMAIL PROTECTED]>
To:
ADSM-L@VM.MARIST.EDU
Date:
12/10/2008 03:19 PM
Subject:
[ADSM-L] Library manager oversubscription
Sent by:
"ADSM: Dist Stor Manager" 



I support a TSM server running under mainframe Linux. The database
has been growing at varying rates since we installed TSM. We are
starting to think about splitting the workload between two TSM
servers if there is a major growth spurt before we upgrade to 6.1
(we are currently at 5.4.2.0). If we did this we would set up a
third server to act as a library manager for the other two. We
would want to be able to adjust the number of tape drives available
to each server to adjust to variations in the workload. This would
be done by adjusting the mountlimit settings for the tape device
classes. What would happen if we made a mistake in this process
and ended up with the servers collectively requesting more tape
drives than actually exist?



U.S. BANCORP made the following annotations
-
Electronic Privacy Notice. This e-mail, and any attachments, contains 
information that is, or may be, covered by electronic communications privacy 
laws, and is also confidential and proprietary in nature. If you are not the 
intended recipient, please be advised that you are legally prohibited from 
retaining, using, copying, distributing, or otherwise disclosing this 
information in any manner. Instead, please reply to the sender that you have 
received this communication in error, and then immediately delete it. Thank you 
in advance for your cooperation.



-


Wait=yes with multiple processes

2008-12-10 Thread Thomas Denier
We have a 5.4.2.0 TSM server running under mainframe Linus. Our
daily housekeeping uses 'backup stgpool', 'migrate stgpool',
and 'reclaim stgpool' commands that start multiple processes.
The home-grown software that manages our housekeeping figures
out when each of these activities is done by examining data
piped from an administrative client session with the console
option. I am looking into the possibility of simplifying the
management software by using the 'wait=yes' option of the
various commands. How does this option behave with multiple
processes? In particular, does the command end when the last
of the multiple processes ends?


Library manager oversubscription

2008-12-10 Thread Thomas Denier
I support a TSM server running under mainframe Linux. The database
has been growing at varying rates since we installed TSM. We are
starting to think about splitting the workload between two TSM
servers if there is a major growth spurt before we upgrade to 6.1
(we are currently at 5.4.2.0). If we did this we would set up a
third server to act as a library manager for the other two. We
would want to be able to adjust the number of tape drives available
to each server to adjust to variations in the workload. This would
be done by adjusting the mountlimit settings for the tape device
classes. What would happen if we made a mistake in this process
and ended up with the servers collectively requesting more tape
drives than actually exist?


Re: Server Restore success!!

2008-12-10 Thread Alex Paschal
Hello, Tim.

Congratulations on your successful test.

More importantly, congratulations on getting resources for the test.  I
often see customer sites where acquiring time/materials is the major
battle.


Alex Paschal
Storage Solutions Engineer
MSI Systems Integrators
(503) 943-6919


Your Business.  Better.



-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
Tim Brown
Sent: Wednesday, December 10, 2008 12:57 PM
To: ADSM-L@VM.MARIST.EDU
Subject: [ADSM-L] Server Restore success!!


 We have requirements to restore at least 1 server a year,
 so we can test all the required steps.

 Again it was a success even using dissimilar hardware.

 Again I want to give my highly satisfied approval of TSM.
 Its worth its weight in gold !!

 Thanks to a number of you that gave me direction !!
 This EMail list is of tremendous value..


Tim Brown
Systems Specialist - Project Leader
Central Hudson Gas & Electric
284 South Ave
Poughkeepsie, NY 12601
Email: [EMAIL PROTECTED] 
Phone: 845-486-5643
Fax: 845-486-5921
Cell: 845-235-4255


This message contains confidential information and is only for the
intended recipient.  If the reader of this message is not the intended
recipient, or an employee or agent responsible for delivering this
message to the intended recipient, please notify the sender immediately
by replying to this note and deleting all copies and attachments.  Thank
you.

This message (including any attachments) is intended only for
the use of the individual or entity to which it is addressed and
may contain information that is non-public, proprietary,
privileged, confidential, and exempt from disclosure under
applicable law or may constitute as attorney work product.
If you are not the intended recipient, you are hereby notified
that any use, dissemination, distribution, or copying of this
communication is strictly prohibited. If you have received this
communication in error, notify us immediately by telephone and
(i) destroy this message if a facsimile or (ii) delete this message
immediately if this is an electronic communication.

Thank you.


Re: Backup of share will not work with schedule

2008-12-10 Thread Alex Paschal
Hello, John.

Instead of using a regular backup schedule, you could use a command
schedule.  The command object would be a batch file that executes a "net
use" command and then backs up the share.  Something like this:

net use z: \\172.17.16.101\archive2 password /user:username
dsmc inc z: >mylogfile 2>&1
net use z: /d

The advantage is that you can connect to the network resource
independent of what account under which the scheduler service runs.  The
drawback, of course, is that password would be in clear-text in your
batch file.  From a command prompt, type "net help use" for further
details on "net use".

Good luck!


Alex Paschal
Storage Solutions Engineer
MSI Systems Integrators
(503) 943-6919 - Office
(503) 539-8361 - Cell


Your Business.  Better.



-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
Schneider, John
Sent: Friday, December 05, 2008 1:48 PM
To: ADSM-L@VM.MARIST.EDU
Subject: Re: [ADSM-L] Backup of share will not work with schedule

Tim,
Thanks for your email.  There is not a Windows domain involved
here; I think the two clients' security is a workgroup.  I am logged in
to the local Administrator account, and I presume the TSM Client
Acceptor is running as the local System account as usual.
So you think the problem here has something to do with Windows
security, not with how I set up the TSM client or schedule?


Best Regards,

John D. Schneider
Phone: 314-364-3150
Cell: 314-750-8721
Email:  [EMAIL PROTECTED]


-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
Tim Brown
Sent: Friday, December 05, 2008 3:35 PM
To: ADSM-L@VM.MARIST.EDU
Subject: Re: [ADSM-L] Backup of share will not work with schedule

If the TSM service is using a local system account try  it with  a
domain
id

Tim

-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] Behalf Of
Schneider, John
Sent: Friday, December 05, 2008 4:27 PM
To: ADSM-L@VM.MARIST.EDU
Subject: Backup of share will not work with schedule


Greetings,
I have a server that I can't install the TSM client on because the
vendor who owns it won't permit it.   One alternative seemed to be to
share the directory that must be backed up, and acces that share from
another server to back it up explicitely as an object.   We created a
share on that server that we can access from another server.
I can log in to the other server, bring up the TSM line mode client,
and back it up with:

dsmc inc \\172.17.16.101\archive2\ -subdir=yes

And that backs up fine.  But when I build a schedule with the
\\172.17.16.101\archive2\   as the
object, it fails.  The dsmsched.log is below.  Does anyone know the
scheduler won't backup a filesystem that the linemode client backs up
fine?

12/04/2008 13:00:11 --- SCHEDULEREC QUERY BEGIN
12/04/2008 13:00:11 --- SCHEDULEREC QUERY END
12/04/2008 13:00:11 Next operation scheduled:
12/04/2008 13:00:11

12/04/2008 13:00:11 Schedule Name: EXCELLERA_ARCHIVE2
12/04/2008 13:00:11 Action:Incremental
12/04/2008 13:00:11 Objects:   \\172.17.16.101\archive2\

12/04/2008 13:00:11 Options:   -subdir=yes
12/04/2008 13:00:11 Server Window Start:   13:00:00 on 12/04/2008
12/04/2008 13:00:11

12/04/2008 13:00:11
Executing scheduled command now.
12/04/2008 13:00:11 --- SCHEDULEREC OBJECT BEGIN EXCELLERA_ARCHIVE2
12/04/2008 13:00:00
12/04/2008 13:00:11 Incremental backup of volume
'\\172.17.16.101\archive2\'
12/04/2008 13:00:13 ANS1228E Sending of object
'\\172.17.16.101\archive2\*' failed
12/04/2008 13:00:13 ANS1063E The specified path is not a valid file
system or logical volume name.
12/04/2008 13:00:13 --- SCHEDULEREC STATUS BEGIN
12/04/2008 13:00:13 --- SCHEDULEREC OBJECT END EXCELLERA_ARCHIVE2
12/04/2008 13:00:00
12/04/2008 13:00:13 ANS1512E Scheduled event 'EXCELLERA_ARCHIVE2'
failed.  Return code = 12.
12/04/2008 13:00:13 Sending results for scheduled event
'EXCELLERA_ARCHIVE2'.
12/04/2008 13:00:13 Results sent to server for scheduled event
'EXCELLERA_ARCHIVE2'.


Best Regards,

John D. Schneider

This e-mail contains information which (a) may be PROPRIETARY IN NATURE
OR
OTHERWISE PROTECTED BY LAW FROM DISCLOSURE, and (b) is intended only for
the
use of the addressee(s) named above. If you are not the addressee, or
the
person responsible for delivering this to the addressee(s), you are
notified
that reading, copying or distributing this e-mail is prohibited. If you
have
received this e-mail in error, please contact the sender immediately.
This e-mail contains information which (a) may be PROPRIETARY IN NATURE
OR
OTHERWISE PROTECTED BY LAW FROM DISCLOSURE, and (b) is intended only for
the
use of the addressee(s) named above. If you are not the addressee, or
the
person responsib

Server Restore success!!

2008-12-10 Thread Tim Brown
 We have requirements to restore at least 1 server a year,
 so we can test all the required steps.

 Again it was a success even using dissimilar hardware.

 Again I want to give my highly satisfied approval of TSM.
 Its worth its weight in gold !!

 Thanks to a number of you that gave me direction !!
 This EMail list is of tremendous value..


Tim Brown
Systems Specialist - Project Leader
Central Hudson Gas & Electric
284 South Ave
Poughkeepsie, NY 12601
Email: [EMAIL PROTECTED] 
Phone: 845-486-5643
Fax: 845-486-5921
Cell: 845-235-4255


This message contains confidential information and is only for the intended 
recipient.  If the reader of this message is not the intended recipient, or an 
employee or agent responsible for delivering this message to the intended 
recipient, please notify the sender immediately by replying to this note and 
deleting all copies and attachments.  Thank you.


Re: TS1130 support

2008-12-10 Thread Zoltan Forray/AC/VCU
Thanks. The link isn't very obvious (to me).



Bill Boyer <[EMAIL PROTECTED]>
Sent by: "ADSM: Dist Stor Manager" 
12/10/2008 02:05 PM
Please respond to
"ADSM: Dist Stor Manager" 


To
ADSM-L@VM.MARIST.EDU
cc

Subject
Re: [ADSM-L] TS1130 support






http://www-01.ibm.com/software/sysmgmt/products/support/IBM_TSM_Supported_De

vices_for_Linux.html

It's listed right off the TSM Support home page.

-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
Zoltan Forray/AC/VCU
Sent: Wednesday, December 10, 2008 1:11 PM
To: ADSM-L@VM.MARIST.EDU
Subject: TS1130 support

Can someone point me to a document showing the minimum server level
required to support TS1130 (aka 3592-E06) drives/devclass 3592-3C.  I know
I have to update all my drivers to lin_tape_1.16.0 as a minimum.


Re: TS1130 support

2008-12-10 Thread Bill Boyer
http://www-01.ibm.com/software/sysmgmt/products/support/IBM_TSM_Supported_De
vices_for_Linux.html

It's listed right off the TSM Support home page.

-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
Zoltan Forray/AC/VCU
Sent: Wednesday, December 10, 2008 1:11 PM
To: ADSM-L@VM.MARIST.EDU
Subject: TS1130 support

Can someone point me to a document showing the minimum server level
required to support TS1130 (aka 3592-E06) drives/devclass 3592-3C.  I know
I have to update all my drivers to lin_tape_1.16.0 as a minimum.


TS1130 support

2008-12-10 Thread Zoltan Forray/AC/VCU
Can someone point me to a document showing the minimum server level
required to support TS1130 (aka 3592-E06) drives/devclass 3592-3C.  I know
I have to update all my drivers to lin_tape_1.16.0 as a minimum.


Re: TSM 5.4.4 on AIX 5.2 (pseries 615) migrate to TSM 5.5.1 on Linux Red Hat 5.2 (system X 3650)

2008-12-10 Thread Ortepio, Victoria A (Vicki)
We've migrated from AIX to RedHat Linux.  We've started fresh with new backups 
on the new machine.  We are currently EXPORTING the archive data from the AIX 
side to LINUX.  We are taking this path because we couldn't
restore the TSM database from AIX to LINUX o/s.

Regards,

Vicki Ortepio, Sr. Staff Specialist
International Partner Solutions Data Centers & Systems Support
USA
Phone:  732.885.4126
Fax:  732-980-7782
VNET:  783-4126
 
Verizon Business - global capability. personal accountability.
 
-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Remco Post
Sent: Wednesday, December 10, 2008 10:57 AM
To: ADSM-L@VM.MARIST.EDU
Subject: Re: [ADSM-L] TSM 5.4.4 on AIX 5.2 (pseries 615) migrate to TSM 5.5.1 
on Linux Red Hat 5.2 (system X 3650)

On 10 dec 2008, at 16:55, Miguel Saez wrote:

> I need migrate TSM 5.4.4 on AIX 5.2 (pseries 615) to TSM 5.5.1 on  
> Linux Red
> Hat 5.2 (system X 3650)
>
> What is the recommended way to do this?
>

not, and if you really must import/export is the only way. (or just  
start fresh).

> regards
>
> Miguel Sáez Sáez
> IBM Certified Deployment Professional
> Tivoli Configuration Manager
> IT Specialist
> IBM de Chile S.A.C.
> mail: [EMAIL PROTECTED]
> Phone: 562-2006638

-- 
Met vriendelijke groeten/Kind regards,

Remco Post, PLCS
+31624821622


Re: Inclexcl help

2008-12-10 Thread Andrew Raibeck
OK... so you have your answer: the EXCLUDE for the *.dbf files needs to be
repositioned so the EXCLUDE is processed before the INCLUDEs for the
/abcd-xy1 directories. QUERY INCLEXCL shows the include-exclude list from
the top-down, but as you know, the INCLUDE and EXCLUDE options are written
in bottom-up fashion, so the EXCLUDE has to go below the INCLUDEs. If
there are certain *.dbf files you want included, you will need further
refinement of your include-exclude list.

Best regards,

Andy

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

IBM Tivoli Storage Manager support web page:
http://www.ibm.com/software/sysmgmt/products/support/IBMTivoliStorageManager.html


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

"ADSM: Dist Stor Manager"  wrote on 12/10/2008
10:44:49 AM:

> [image removed]
>
> Re: Inclexcl help
>
> Choudarapu, Ramakrishna (GTS)
>
> to:
>
> ADSM-L
>
> 12/10/2008 10:49 AM
>
> Sent by:
>
> "ADSM: Dist Stor Manager" 
>
> Please respond to "ADSM: Dist Stor Manager"
>
> Yes.
> The .dbf file are located in the directories such as,
> /abcd-xy1/ora05/oradata/ORCL/index_26.dbf
>
> Thanks, Rama
>
> -Original Message-
> From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
> Andrew Raibeck
> Sent: Wednesday, December 10, 2008 10:00 AM
> To: ADSM-L@VM.MARIST.EDU
> Subject: Re: [ADSM-L] Inclexcl help
>
>
> What does the full path to these *.dbf files look like? Could they
> reside
> under one of the /abcd-xy1 directories that are INCLUDEd?
>
> Andy Raibeck
> IBM Software Group
> Tivoli Storage Manager Client Product Development
> Level 3 Team Lead
> Internal Notes e-mail: Andrew Raibeck/Tucson/[EMAIL PROTECTED]
> Internet e-mail: [EMAIL PROTECTED]
>
> IBM Tivoli Storage Manager support web page:
> http://www.ibm.com/software/sysmgmt/products/support/IBMTivoliStorageMan
> ager.html
>
>
> The only dumb question is the one that goes unasked.
> The command line is your friend.
> "Good enough" is the enemy of excellence.
>
> "ADSM: Dist Stor Manager"  wrote on 12/10/2008
> 09:41:12 AM:
>
> > [image removed]
> >
> > Inclexcl help
> >
> > Choudarapu, Ramakrishna (GTS)
> >
> > to:
> >
> > ADSM-L
> >
> > 12/10/2008 09:43 AM
> >
> > Sent by:
> >
> > "ADSM: Dist Stor Manager" 
> >
> > Please respond to "ADSM: Dist Stor Manager"
> >
> > Hi,
> >
> > Here is the "q inclexcl" output for one of the nodes.
> > The node is still attempting to backup the "/.../oradata/.../*.dbf"
> > files.
> > What is wrong with the inclexcl and how to stop /.../oradata/.../*.dbf
> > from being backed up?
> >
> > tsm> q inclexcl
> > *** FILE INCLUDE/EXCLUDE ***
> > Mode Function  Pattern (match from top down)  Source File
> >  - -- -
> > Excl Filespace /mnt   Server
> > Excl Filespace /dba   Server
> > Excl Filespace /app/clarity   Server
> > Excl Filespace /efs/dist  Server
> > Excl Filespace /.efs/dist Server
> > Excl Filespace /mlextras  Server
> > Excl Filespace /boot  Server
> > Excl Filespace /dev/vxServer
> > Excl Filespace /dev/shm   Server
> > Excl Filespace /var   Server
> > Excl Filespace /  Server
> > Excl Filespace /unix/*Server
> > Excl Filespace /proc/ Server
> > Excl Filespace /dev/fdServer
> > Excl Filespace /dev/vx/*  Server
> > No exclude directory statements defined.
> > Include All   /abcd-xy1/apps/.../*   Server
> > Include All   /abcd-xy1/oraundo/.../*Server
> > Include All   /abcd-xy1/oratemp/.../*Server
> > Include All   /abcd-xy1/orasys03/.../*   Server
> > Include All   /abcd-xy1/orasys02/.../*   Server
> > Include All   /abcd-xy1/orasys01/.../*   Server
> > Include All   /abcd-xy1/orabackups/.../* Server
> > Include All   /abcd-xy1/oraarch/.../*Server
> > Include All   /abcd-xy1/ora06/.../*  Server
> > Include All   /abcd-xy1/ora05/.../*  Server
> > Include All   /abcd-xy1/ora04/.../*  Server
> > Include All   /abcd-xy1/ora03/.../*  Server
> > Include All   /abcd-xy1/ora02/.../*  Server
> > Include All   /abcd-xy1/ora01/.../*  Server
> > Include All   /.../*listener*.logServer
> > Exclude All   /.../oradata/.../*.ctl Server
> > Exclude All   /.../oradata/.../*.log Server
> > Exclude All   /.../oradata/.../*.dbf Server
> > Exclude All   /tmp/.../* Server

Re: TSM 5.4.4 on AIX 5.2 (pseries 615) migrate to TSM 5.5.1 on Linux Red Hat 5.2 (system X 3650)

2008-12-10 Thread Remco Post

On 10 dec 2008, at 16:55, Miguel Saez wrote:

I need migrate TSM 5.4.4 on AIX 5.2 (pseries 615) to TSM 5.5.1 on  
Linux Red

Hat 5.2 (system X 3650)

What is the recommended way to do this?



not, and if you really must import/export is the only way. (or just  
start fresh).



regards

Miguel Sáez Sáez
IBM Certified Deployment Professional
Tivoli Configuration Manager
IT Specialist
IBM de Chile S.A.C.
mail: [EMAIL PROTECTED]
Phone: 562-2006638


--
Met vriendelijke groeten/Kind regards,

Remco Post, PLCS
+31624821622


TSM 5.4.4 on AIX 5.2 (pseries 615) migrate to TSM 5.5.1 on Linux Red Hat 5.2 (system X 3650)

2008-12-10 Thread Miguel Saez
I need migrate TSM 5.4.4 on AIX 5.2 (pseries 615) to TSM 5.5.1 on Linux Red
Hat 5.2 (system X 3650)

What is the recommended way to do this?

regards

Miguel Sáez Sáez
IBM Certified Deployment Professional
Tivoli Configuration Manager
IT Specialist
IBM de Chile S.A.C.
mail: [EMAIL PROTECTED]
Phone: 562-2006638

Re: Inclexcl help

2008-12-10 Thread Choudarapu, Ramakrishna (GTS)
Yes. 
The .dbf file are located in the directories such as,
/abcd-xy1/ora05/oradata/ORCL/index_26.dbf

Thanks, Rama

-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
Andrew Raibeck
Sent: Wednesday, December 10, 2008 10:00 AM
To: ADSM-L@VM.MARIST.EDU
Subject: Re: [ADSM-L] Inclexcl help


What does the full path to these *.dbf files look like? Could they
reside
under one of the /abcd-xy1 directories that are INCLUDEd?

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

IBM Tivoli Storage Manager support web page:
http://www.ibm.com/software/sysmgmt/products/support/IBMTivoliStorageMan
ager.html


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

"ADSM: Dist Stor Manager"  wrote on 12/10/2008
09:41:12 AM:

> [image removed]
>
> Inclexcl help
>
> Choudarapu, Ramakrishna (GTS)
>
> to:
>
> ADSM-L
>
> 12/10/2008 09:43 AM
>
> Sent by:
>
> "ADSM: Dist Stor Manager" 
>
> Please respond to "ADSM: Dist Stor Manager"
>
> Hi,
>
> Here is the "q inclexcl" output for one of the nodes.
> The node is still attempting to backup the "/.../oradata/.../*.dbf"
> files.
> What is wrong with the inclexcl and how to stop /.../oradata/.../*.dbf
> from being backed up?
>
> tsm> q inclexcl
> *** FILE INCLUDE/EXCLUDE ***
> Mode Function  Pattern (match from top down)  Source File
>  - -- -
> Excl Filespace /mnt   Server
> Excl Filespace /dba   Server
> Excl Filespace /app/clarity   Server
> Excl Filespace /efs/dist  Server
> Excl Filespace /.efs/dist Server
> Excl Filespace /mlextras  Server
> Excl Filespace /boot  Server
> Excl Filespace /dev/vxServer
> Excl Filespace /dev/shm   Server
> Excl Filespace /var   Server
> Excl Filespace /  Server
> Excl Filespace /unix/*Server
> Excl Filespace /proc/ Server
> Excl Filespace /dev/fdServer
> Excl Filespace /dev/vx/*  Server
> No exclude directory statements defined.
> Include All   /abcd-xy1/apps/.../*   Server
> Include All   /abcd-xy1/oraundo/.../*Server
> Include All   /abcd-xy1/oratemp/.../*Server
> Include All   /abcd-xy1/orasys03/.../*   Server
> Include All   /abcd-xy1/orasys02/.../*   Server
> Include All   /abcd-xy1/orasys01/.../*   Server
> Include All   /abcd-xy1/orabackups/.../* Server
> Include All   /abcd-xy1/oraarch/.../*Server
> Include All   /abcd-xy1/ora06/.../*  Server
> Include All   /abcd-xy1/ora05/.../*  Server
> Include All   /abcd-xy1/ora04/.../*  Server
> Include All   /abcd-xy1/ora03/.../*  Server
> Include All   /abcd-xy1/ora02/.../*  Server
> Include All   /abcd-xy1/ora01/.../*  Server
> Include All   /.../*listener*.logServer
> Exclude All   /.../oradata/.../*.ctl Server
> Exclude All   /.../oradata/.../*.log Server
> Exclude All   /.../oradata/.../*.dbf Server
> Exclude All   /tmp/.../* Server
> Exclude All   /.../core  Server
> Include All   /.../tivoli/tsm/client/oracle/.../*opt Server
> Include All   /.../tivoli/tsm/client/oracle/.../*log Server
> Include All   /.../*dsm.sys  Server
> Include All   /.../*dsmwebcl.log Server
> Include All   /.../*dsmerror.log Server
> Include All   /.../*dsm.opt  Server
> Include All   /.../*dsmsched.log Server
> No DFS include/exclude statements defined.
>
> TIA,
> Rama
>
>

--
> This message w/attachments (message) may be privileged, confidential
> or proprietary, and if you are not an intended recipient, please
> notify the sender, do not use or share it and delete it. Unless
> specifically indicated, this message is not an offer to sell or a
> solicitation of any investment products or other financial product
> or service, an official confirmation of any transaction, or an
> official statement of Merrill Lynch. Subject to applicable law,
> Merrill Lynch may monitor, review and retain e-communications (EC)
> traveling through its networks/systems. The laws of the country of
> each sender/recipient may impact the handling of EC, and EC may be
> archived, supervised and produced in countries other than the
> country in which you are located. This message canno

Re: Script that generates a macro? Or something like that....

2008-12-10 Thread Nicholas Rodolfich
In my 20 years experience it is quite common for network issues to
mysteriously "fix themselves" Funny how that happens!!

Nicholas


Re: TSM server from x32 to x64 version

2008-12-10 Thread Howard Coles
It's kind of like this:

1. install the same version of TSM on the new 64bit box using 64bit
code.
2. empty all disk pools and delete them on the 32bit box.
3. backup your db from the old 32bit box, and then restore it to the
64bit server.
(adjust IP addresses etc. at this point)
4. create new storage pool volumes to match your old settings (or adjust
to new setups as desired).
5. run TSM and make sure all is functioning.
6. upgrade TSM to latest version.

This is a very simplified version as I'm assuming you know to create the
db volumes and log volumes on the new box with at least the same amount
of space assigned on the old box.

See Ya'
Howard

> -Original Message-
> From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf
> Of Nielsen, Bo
> Sent: Wednesday, December 10, 2008 4:38 AM
> To: ADSM-L@VM.MARIST.EDU
> Subject: [ADSM-L] TSM server from x32 to x64 version
> 
> Hi *SMs
> 
> The existing enviroment is TSM 5.4.1.2 on W2K3 SP1 x32.
> 
> Now I upgrade TSM to 5.5.1 and after this move to new hardware W2K8
> x64,
> what is the recommended way to do this.
> 
> 
>   aOaRegards
>   Bo Nielsen
>  * +45 4386 4671
>   Coop  IT  * (Internt postcenter): 6244
>   Data & Storage Center * mailto:[EMAIL PROTECTED]
> Remember, a dead fish can float downstream,
> But it takes a live one to svim upstream. - W.C. Fields.


Re: Fastback has me stumped

2008-12-10 Thread Nicholas Rodolfich
Thanks Mark,

I finally got the install to work. I am not sure what was causing me
problems. My stupidity I bet. Anyway, I tried to install the client on the
same system as the server and could not get that to work but I installed
the client on a remote system and had had some success in doing my
snapshots. Thanks for your responses. It will be a couple of days before I
can attack it again.

Nicholas


Re: Inclexcl help

2008-12-10 Thread Andrew Raibeck
What does the full path to these *.dbf files look like? Could they reside
under one of the /abcd-xy1 directories that are INCLUDEd?

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

IBM Tivoli Storage Manager support web page:
http://www.ibm.com/software/sysmgmt/products/support/IBMTivoliStorageManager.html


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

"ADSM: Dist Stor Manager"  wrote on 12/10/2008
09:41:12 AM:

> [image removed]
>
> Inclexcl help
>
> Choudarapu, Ramakrishna (GTS)
>
> to:
>
> ADSM-L
>
> 12/10/2008 09:43 AM
>
> Sent by:
>
> "ADSM: Dist Stor Manager" 
>
> Please respond to "ADSM: Dist Stor Manager"
>
> Hi,
>
> Here is the "q inclexcl" output for one of the nodes.
> The node is still attempting to backup the "/.../oradata/.../*.dbf"
> files.
> What is wrong with the inclexcl and how to stop /.../oradata/.../*.dbf
> from being backed up?
>
> tsm> q inclexcl
> *** FILE INCLUDE/EXCLUDE ***
> Mode Function  Pattern (match from top down)  Source File
>  - -- -
> Excl Filespace /mnt   Server
> Excl Filespace /dba   Server
> Excl Filespace /app/clarity   Server
> Excl Filespace /efs/dist  Server
> Excl Filespace /.efs/dist Server
> Excl Filespace /mlextras  Server
> Excl Filespace /boot  Server
> Excl Filespace /dev/vxServer
> Excl Filespace /dev/shm   Server
> Excl Filespace /var   Server
> Excl Filespace /  Server
> Excl Filespace /unix/*Server
> Excl Filespace /proc/ Server
> Excl Filespace /dev/fdServer
> Excl Filespace /dev/vx/*  Server
> No exclude directory statements defined.
> Include All   /abcd-xy1/apps/.../*   Server
> Include All   /abcd-xy1/oraundo/.../*Server
> Include All   /abcd-xy1/oratemp/.../*Server
> Include All   /abcd-xy1/orasys03/.../*   Server
> Include All   /abcd-xy1/orasys02/.../*   Server
> Include All   /abcd-xy1/orasys01/.../*   Server
> Include All   /abcd-xy1/orabackups/.../* Server
> Include All   /abcd-xy1/oraarch/.../*Server
> Include All   /abcd-xy1/ora06/.../*  Server
> Include All   /abcd-xy1/ora05/.../*  Server
> Include All   /abcd-xy1/ora04/.../*  Server
> Include All   /abcd-xy1/ora03/.../*  Server
> Include All   /abcd-xy1/ora02/.../*  Server
> Include All   /abcd-xy1/ora01/.../*  Server
> Include All   /.../*listener*.logServer
> Exclude All   /.../oradata/.../*.ctl Server
> Exclude All   /.../oradata/.../*.log Server
> Exclude All   /.../oradata/.../*.dbf Server
> Exclude All   /tmp/.../* Server
> Exclude All   /.../core  Server
> Include All   /.../tivoli/tsm/client/oracle/.../*opt Server
> Include All   /.../tivoli/tsm/client/oracle/.../*log Server
> Include All   /.../*dsm.sys  Server
> Include All   /.../*dsmwebcl.log Server
> Include All   /.../*dsmerror.log Server
> Include All   /.../*dsm.opt  Server
> Include All   /.../*dsmsched.log Server
> No DFS include/exclude statements defined.
>
> TIA,
> Rama
>
>
--
> This message w/attachments (message) may be privileged, confidential
> or proprietary, and if you are not an intended recipient, please
> notify the sender, do not use or share it and delete it. Unless
> specifically indicated, this message is not an offer to sell or a
> solicitation of any investment products or other financial product
> or service, an official confirmation of any transaction, or an
> official statement of Merrill Lynch. Subject to applicable law,
> Merrill Lynch may monitor, review and retain e-communications (EC)
> traveling through its networks/systems. The laws of the country of
> each sender/recipient may impact the handling of EC, and EC may be
> archived, supervised and produced in countries other than the
> country in which you are located. This message cannot be guaranteed
> to be secure or error-free. This message is subject to terms
> available at the following link:
http://www.ml.com/e-communications_terms/
> . By messaging with Merrill Lynch you consent to the foregoing.
>
--
>


Inclexcl help

2008-12-10 Thread Choudarapu, Ramakrishna (GTS)
Hi,

Here is the "q inclexcl" output for one of the nodes. 
The node is still attempting to backup the "/.../oradata/.../*.dbf"
files.
What is wrong with the inclexcl and how to stop /.../oradata/.../*.dbf
from being backed up?

tsm> q inclexcl
*** FILE INCLUDE/EXCLUDE ***
Mode Function  Pattern (match from top down)  Source File
 - -- -
Excl Filespace /mnt   Server
Excl Filespace /dba   Server
Excl Filespace /app/clarity   Server
Excl Filespace /efs/dist  Server
Excl Filespace /.efs/dist Server
Excl Filespace /mlextras  Server
Excl Filespace /boot  Server
Excl Filespace /dev/vxServer
Excl Filespace /dev/shm   Server
Excl Filespace /var   Server
Excl Filespace /  Server
Excl Filespace /unix/*Server
Excl Filespace /proc/ Server
Excl Filespace /dev/fdServer
Excl Filespace /dev/vx/*  Server
No exclude directory statements defined.
Include All   /abcd-xy1/apps/.../*   Server
Include All   /abcd-xy1/oraundo/.../*Server
Include All   /abcd-xy1/oratemp/.../*Server
Include All   /abcd-xy1/orasys03/.../*   Server
Include All   /abcd-xy1/orasys02/.../*   Server
Include All   /abcd-xy1/orasys01/.../*   Server
Include All   /abcd-xy1/orabackups/.../* Server
Include All   /abcd-xy1/oraarch/.../*Server
Include All   /abcd-xy1/ora06/.../*  Server
Include All   /abcd-xy1/ora05/.../*  Server
Include All   /abcd-xy1/ora04/.../*  Server
Include All   /abcd-xy1/ora03/.../*  Server
Include All   /abcd-xy1/ora02/.../*  Server
Include All   /abcd-xy1/ora01/.../*  Server
Include All   /.../*listener*.logServer
Exclude All   /.../oradata/.../*.ctl Server
Exclude All   /.../oradata/.../*.log Server
Exclude All   /.../oradata/.../*.dbf Server
Exclude All   /tmp/.../* Server
Exclude All   /.../core  Server
Include All   /.../tivoli/tsm/client/oracle/.../*opt Server
Include All   /.../tivoli/tsm/client/oracle/.../*log Server
Include All   /.../*dsm.sys  Server
Include All   /.../*dsmwebcl.log Server
Include All   /.../*dsmerror.log Server
Include All   /.../*dsm.opt  Server
Include All   /.../*dsmsched.log Server
No DFS include/exclude statements defined.

TIA,
Rama

--
This message w/attachments (message) may be privileged, confidential or 
proprietary, and if you are not an intended recipient, please notify the 
sender, do not use or share it and delete it. Unless specifically indicated, 
this message is not an offer to sell or a solicitation of any investment 
products or other financial product or service, an official confirmation of any 
transaction, or an official statement of Merrill Lynch. Subject to applicable 
law, Merrill Lynch may monitor, review and retain e-communications (EC) 
traveling through its networks/systems. The laws of the country of each 
sender/recipient may impact the handling of EC, and EC may be archived, 
supervised and produced in countries other than the country in which you are 
located. This message cannot be guaranteed to be secure or error-free. This 
message is subject to terms available at the following link: 
http://www.ml.com/e-communications_terms/. By messaging with Merrill Lynch you 
consent to the foregoing.
--
 


Re: TSM server from x32 to x64 version

2008-12-10 Thread Remco Post

I don't believe there is an official IBM statement on this, but 64 bit
tsm servers can read all data written by 32 bit servers on the same os.

I've done upgrades of 32 bit aix to 64 bit aix and 32 bit linux to 64
bit linux without a problem, so I think windows must be just as easy ;-)

On 10 dec 2008, at 11:38, Nielsen, Bo wrote:


Hi *SMs

The existing enviroment is TSM 5.4.1.2 on W2K3 SP1 x32.

Now I upgrade TSM to 5.5.1 and after this move to new hardware W2K8
x64,
what is the recommended way to do this.


aOaRegards
Bo Nielsen
   * +45 4386 4671
Coop  IT  * (Internt postcenter): 6244
Data & Storage Center * mailto:[EMAIL PROTECTED]
Remember, a dead fish can float downstream,
But it takes a live one to svim upstream. - W.C. Fields.


--
Met vriendelijke groeten/Kind regards,

Remco Post, PLCS
+31624821622


Re: TSM server from x32 to x64 version

2008-12-10 Thread Henrik Vahlstedt
Hi Bo,

I would first move to new hardware and run TSM for a couple of days,
then upgrade TSM.

I think it is easier to troubleshot possible problems if you split the
migration and upgrade.


//Henrik

-Original Message-
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of
Nielsen, Bo
Sent: den 10 december 2008 11:38
To: ADSM-L@VM.MARIST.EDU
Subject: [ADSM-L] TSM server from x32 to x64 version

Hi *SMs

The existing enviroment is TSM 5.4.1.2 on W2K3 SP1 x32.

Now I upgrade TSM to 5.5.1 and after this move to new hardware W2K8 x64,
what is the recommended way to do this.


aOaRegards 
Bo Nielsen 
   * +45 4386 4671 
Coop  IT  * (Internt postcenter): 6244 
Data & Storage Center * mailto:[EMAIL PROTECTED] Remember, a
dead fish can float downstream, But it takes a live one to svim
upstream. - W.C. Fields. 


---
The information contained in this message may be CONFIDENTIAL and is
intended for the addressee only. Any unauthorised use, dissemination of the
information or copying of this message is prohibited. If you are not the
addressee, please notify the sender immediately by return e-mail and delete
this message.
Thank you.


TSM server from x32 to x64 version

2008-12-10 Thread Nielsen, Bo
Hi *SMs

The existing enviroment is TSM 5.4.1.2 on W2K3 SP1 x32.

Now I upgrade TSM to 5.5.1 and after this move to new hardware W2K8 x64,
what is the recommended way to do this.


aOaRegards 
Bo Nielsen 
   * +45 4386 4671 
Coop  IT  * (Internt postcenter): 6244 
Data & Storage Center * mailto:[EMAIL PROTECTED] 
Remember, a dead fish can float downstream, 
But it takes a live one to svim upstream. - W.C. Fields. 


Re: DR with VCB file backup?

2008-12-10 Thread Julien Sauvanet
Hzllo Stephan,


to restore a full vcb backup, restore this one to your proxy VCB, then use 
VM COnverter to recreate your VM :)
It works fine 


Cordialement, Best Regards , 

Julien SAUVANET
TSM Certified Specialist 

ITD - Storage Service Line 

@mail: [EMAIL PROTECTED]
tél: 36 53 30  +33 4 92 11 53 30 
GSA:  http://ehngsa.ibm.com/gsa/ehngsa/home/s/a/sauvanet/web/public




Stephan Boldt <[EMAIL PROTECTED]> 
Sent by: "ADSM: Dist Stor Manager" 
10/12/2008 10:01
Please respond to
"ADSM: Dist Stor Manager" 


To
ADSM-L@VM.MARIST.EDU
cc

Subject
[ADSM-L] DR with VCB file backup?






Hello everybody,

I am wondering if you can fully restore a destroyed virtual machine which
has been file-backed-up with VCB? For example, I have a Windows fileserver
and back up all it's files via VCB into TSM. Now let's say a dumb admin
deletes the SAN-LUN on which the VMFS resides... ;-) When I install a 
plain
new Windows VM, install the TSM client there and do a full restore of the
Server's data onto it's virtual disks, would the restore be successfull? 
Is
the server bootable afterwards or do some system files have to be on some
"special" locations on the disk which TSM doesn't honour for example?

kind regards,
Stephan



Sauf indication contraire ci-dessus:/ Unless stated otherwise above:
Compagnie IBM France
Siège Social : Tour Descartes, 2, avenue Gambetta, La Défense 5, 92400 
Courbevoie
RCS Nanterre 552 118 465
Forme Sociale : S.A.S.
Capital Social : 590.751.786,90 ?
SIREN/SIRET : 552 118 465 02430

<>

Re: DR with VCB file backup?

2008-12-10 Thread Otto Schakenbos

Hi,

we have been using the following method, here the rough steps:
create a new empty vm with sufficient resources.
boot this vm using bartpe, partition and format your os installation 
drive. (c:)
boot again using bartpe.  if your bartpe does not have the latest level 
of the tsm client you can map a drive over the network to the latest 
level of the tsm client.

configure the dsm.opt file with the nodename you wish to restore
restore all files to the c-drive
now boot from the windows installation media and into the recovery 
console. Run fixmbr and fixboot


Now the box should come up by itself.

Have fun

Otto Schakenbos
Teleflex ERP Operations

TEL: +49-7151/502 8468
FAX: +49-7151/502 8489
MOBILE: +49-172/7102715
E-MAIL: [EMAIL PROTECTED]

TFX Holding GmbH
Corporate IT Europe
Willy-Rüsch-Str. 4-10
71394 Kernen i.R.

HRB 263273 AG Stuttgart
Geschäftsführer: 
Thomas Wagner


www.teleflex.com





Stephan Boldt wrote:

Hello everybody,

I am wondering if you can fully restore a destroyed virtual machine which
has been file-backed-up with VCB? For example, I have a Windows fileserver
and back up all it's files via VCB into TSM. Now let's say a dumb admin
deletes the SAN-LUN on which the VMFS resides... ;-) When I install a plain
new Windows VM, install the TSM client there and do a full restore of the
Server's data onto it's virtual disks, would the restore be successfull? Is
the server bootable afterwards or do some system files have to be on some
"special" locations on the disk which TSM doesn't honour for example?

kind regards,
Stephan
  


DR with VCB file backup?

2008-12-10 Thread Stephan Boldt
Hello everybody,

I am wondering if you can fully restore a destroyed virtual machine which
has been file-backed-up with VCB? For example, I have a Windows fileserver
and back up all it's files via VCB into TSM. Now let's say a dumb admin
deletes the SAN-LUN on which the VMFS resides... ;-) When I install a plain
new Windows VM, install the TSM client there and do a full restore of the
Server's data onto it's virtual disks, would the restore be successfull? Is
the server bootable afterwards or do some system files have to be on some
"special" locations on the disk which TSM doesn't honour for example?

kind regards,
Stephan