Page 1 of 1

QUIESCE IN ERROR

PostPosted: Mon Mar 10, 2014 8:41 pm
by Gandosio
Hello, I've submitted a job like this:
//DSNUPROC.SYSIN DD *
OPTIONS EVENT(ITEMERROR,SKIP)

LISTDEF LISTA1
INCLUDE TABLESPACE XXXXX*.* PARTLEVEL(2)
EXCLUDE TABLESPACE XXXXX*.* PARTLEVEL(0)

QUIESCE LIST LISTA1 WRITE YES

and I have this error:

DSNU524I =DE5P 068 04:51:09.31 DSNUQUIA - INVALID DATA SET OR PARTITION NUMBER 2
SPECIFIED FOR TABLESPACE xxxxxxxx.xxxxxxx
DSNU1027I =DE5P 068 04:51:09.35 DSNUQUIA - PROCESSING CONTINUES DUE TO OPTIONS ITEMERROR SKIP
DSNU017I 068 04:51:12.82 DSNUGBAC - UTILITY DATA BASE SERVICES MEMORY EXECUTION ABENDED, REASON=X'00C90101'

So I've modified the job to exclude the tablespace with a different number of partitions:
LISTDEF LISTA1
INCLUDE TABLESPACE XXXXX*.* PARTLEVEL(2)
EXCLUDE TABLESPACE XXXXX*.* PARTLEVEL(0)
EXCLUDE TABLESPACE xxxxxxxx.xxxxxxx

Unfortunately I've always the same problem, it seems as the exclude clause is not considered...
I try in different way... exclude tablespace xxxxxxxx.xxxxxxx partlevel(1)....but nothing....

Have you any suggestion?

thanks for all!