Parallel script

Status
Not open for further replies.

pfsubaru

ADSM.ORG Member
Joined
Jan 24, 2009
Messages
154
Reaction score
0
Points
0
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)
 
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)
 
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)

Thank you.
 
Status
Not open for further replies.
Back
Top