Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PROBLEM with SAFETY DISK

Status
Not open for further replies.

Astonces

Technical User
Jan 19, 2003
64
ES
Hi,

I program a SAFETY DISK to a MD110 with 34 LIMs.

BLEQI:EQU=1-0-70-00;
IOSII:NODE=SYSN,IODEV=SAFETY-HDU,SIPOS=0,SUBFS=SAFETY-SF11&SAFETY-SF12;
FICRI:SUBFS=SAFETY-SF11,SIZE=64;
FICRI:SUBFS=SAFETY-SF12,SIZE=64;
BLEQE:EQU=1-0-70-00;

But....

<FISBI:DIR=REL1;
FISBI:DIR=REL1;
SURE? (YES/NO)
<YES;
NOT ACCEPTED
SUBFILE SYSTEM NOT FOUND

WHY????


 
After FICRI
FIMOI:SUBFS=SAFETY-SF11;
FIMOI:SUBFS=SAFETY-SF12;
BLEQE:EQU=1-0-70-00;
 
Hi rfpui,

but now ....

<FIMOI:SUBFS=SAFETY-SF11;
NOT ACCEPTED
UNREASONABLE VALUE
PATH
<
<FIMOI:SUBFS=SAFETY-SF12;
NOT ACCEPTED
UNREASONABLE VALUE
PATH
<


 
Sorry You need safety backup not standard backup.
FIMOI is needed for standard backup not for safety.

And problem is with Subfile system name. You are used non standard name.
Standard (recommended ) name is SAFETY-SF not SAFETY-SF11 or SAFETY-SF12 etc.
And only one Subfile is needed.
So try
BLEQI:EQU=1-0-70-00;
IOSII:NODE=SYSN,IODEV=SAFETY-HDU,SIPOS=0,SUBFS=SAFETY-SF;
FICRI:SUBFS=SAFETY-SF,SIZE=140;
BLEQE:EQU=1-0-70-00;
and
FISBI:DIR=REL1;

I think that for 34 LIM’s system SIZE=64 is to small.

Or if you want to use your SUBFS name (SAFETY-SF11)
FISBI :DIR=REL1,SUBFS=SAFETY-SF11;

If command FISBI is used without parameter SUBFS=…; SUBFS=SAFETY-SF is used as default and hear is Your problem
 
Hi rfpui,

With FISBI :DIR=REL1,SUBFS=SAFETY-SF11;

SAFETY BACKUP RESULT
COPYING TO SAFETY BACKUP FAILED
SUBFILE SYSTEM IS FULL

And I can´t make FICRI with SIZE=140 the result is:

<FICRI:SUBFS=SAFETY-SF,SIZE=140;

SIZE= 140
NOT IN RANGE
<

Release of PBX: BC11 SP6



 
Hi
I don’t know why SIZE is not in range. Theoretically size can by from 1 to 254.
Try SIZE=128, or 160 or 254
 

In Alex for BC11 SP7, say that:

9 SIZE Size of subfile system

9.1 FORMAT

SIZE = D 1 D 2

D 1 D 2 = 1-64. Size of subfile system in Mbytes.


What can I do?



 
Upss
It is not little problem.
You have right the maximum size in BC9 & BC 10 was 64. and for BC 11, too.
But I have Alex for BC 11 SP 12 and max size is 254.
So only way is to upgrade your system to newest version BC12 or load service pack for BC 11 . If I know last service pack for BC11 is SP14
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top