Results 1 to 3 of 3
Thread: Parallel script
-
05-31-2012, 09:25 AM #1Member
- Join Date
- Jan 2009
- Posts
- 134
- Thanks
- 0
- Thanked 0 Times in 0 Posts
Parallel script
Hi,
need some help on this script that I created, I want to know if I have this script correctly made for each section to finish its process before it move to the next section.
set dbrecovery lto5_class
PARALLEL
backup stgpool DISKPOOL OFFLINE_POOL1 maxprocess=1 wait=yes (section1)
SERIAL
PARALLEL
backup stgpool ONLINE_POOL1 OFFLLINE_POOL1 maxprocess=1 wait=yes (section2)
backup stgpool ONLINE_POOL2 OFFLLINE_POOL2 maxprocess=1 wait=yes (section2)
SERIAL
PARALLEL
backup stgpool ONLINE_POOL3 OFFLLINE_POOL3 maxprocess=1 wait=yes (section3)
backup stgpool ONLINE_POOL4 OFFLLINE_POOL4 maxprocess=1 wait=yes (section3)
SERIAL
backup stgpool ARCH_POOL5 OFFLINE_POOL1 wait=yes (section4)
-
05-31-2012, 09:56 AM #2Moderator
- Join Date
- Aug 2005
- Location
- Somewhere in the US
- Posts
- 5,303
- Thanks
- 2
- Thanked 138 Times in 136 Posts
Here is what I believe the script should look like:
SERIAL
set dbrecovery lto5_class
backup stgpool DISKPOOL OFFLINE_POOL1 maxprocess=1 wait=yes (section1)
PARALLEL
backup stgpool ONLINE_POOL1 OFFLLINE_POOL1 maxprocess=1 wait=yes (section2)
backup stgpool ONLINE_POOL2 OFFLLINE_POOL2 maxprocess=1 wait=yes (section2)
PARALLEL
backup stgpool ONLINE_POOL3 OFFLLINE_POOL3 maxprocess=1 wait=yes (section3)
backup stgpool ONLINE_POOL4 OFFLLINE_POOL4 maxprocess=1 wait=yes (section3)
SERIAL
backup stgpool ARCH_POOL5 OFFLINE_POOL1 wait=yes (section4)Ed
-
05-31-2012, 04:37 PM #3Member
- Join Date
- Jan 2009
- Posts
- 134
- Thanks
- 0
- Thanked 0 Times in 0 Posts
Similar Threads
-
Admin script - call scripts parallel
By Lisatech in forum ScriptingReplies: 11Last Post: 05-02-2012, 05:00 PM -
TSM 5.5 and 6.1 running in parallel
By itcsge in forum TSM ServerReplies: 3Last Post: 10-19-2009, 02:59 PM -
Using Parallel in a Maintenance Script
By bobrains in forum ScriptingReplies: 3Last Post: 08-05-2009, 03:24 AM -
backing up to two tapes in parallel
By umur in forum Performance TuningReplies: 14Last Post: 07-17-2008, 04:03 AM -
Informix parallel backup
By tkostrevc in forum TDP/Application Layer BackupReplies: 1Last Post: 04-08-2004, 04:06 AM



