Catalog IDCAMS Verify - IEC161I 032-015

2012-04-25 Thread Buckton, T. (Theo)
Hi All,

Please advise what this message code means. The manuals are not very 
informative. I try to verify a catalog, and this message is generated, failing 
with RC=12. The error has something to do with the opening of the catalog. The 
reason code is what I need to know.

COMMAND INPUT === 
  VERIFY FILE(FILE01)   
0IDC3300I  ERROR OPENING CATALOG.TSO.USERS  
 IDC3351I ** VSAM OPEN RETURN CODE IS 148   
0IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12 
0   


Nedbank Limited Reg No 1951/09/06. The following link displays
the names of the Nedbank Board of Directors and Company Secretary.
[ http://www.nedbank.co.za/terms/DirectorsNedbank.htm ]
This email is confidential and is intended for the addressee only.
The following link will take you to Nedbank's legal notice.
[ http://www.nedbank.co.za/terms/EmailDisclaimer.htm ]


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Catalog IDCAMS Verify - IEC161I 032-015

2012-04-25 Thread McKown, John
Why do you want to VERIFY a catalog? That seems very unusual to me. Have you 
made sure that nobody is using it? And have you then done a 

F CATALOG,CLOSE(CATALOG.TSO.USERS)
F CATALOG,UNALLOCATE(CATALOG.TSO.USERS)

I'm not sure, but this may allow you to VERIFY the catalog. Assuming somebody 
doesn't do a catalog lookup which undoes the MODIFY commands.

Instead of VERIFY, perhaps you should do an EXAMINE:
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/DGT2I290/22.0

-- 
John McKown 
Systems Engineer IV
IT

Administrative Services Group

HealthMarkets(r)

9151 Boulevard 26 * N. Richland Hills * TX 76010
(817) 255-3225 phone * 
john.mck...@healthmarkets.com * www.HealthMarkets.com

Confidentiality Notice: This e-mail message may contain confidential or 
proprietary information. If you are not the intended recipient, please contact 
the sender by reply e-mail and destroy all copies of the original message. 
HealthMarkets(r) is the brand name for products underwritten and issued by the 
insurance subsidiaries of HealthMarkets, Inc. -The Chesapeake Life Insurance 
Company(r), Mid-West National Life Insurance Company of TennesseeSM and The 
MEGA Life and Health Insurance Company.SM

 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Buckton, T. (Theo)
 Sent: Wednesday, April 25, 2012 2:53 AM
 To: IBM-MAIN@bama.ua.edu
 Subject: Catalog IDCAMS Verify - IEC161I 032-015
 
 Hi All,
 
 Please advise what this message code means. The manuals are 
 not very informative. I try to verify a catalog, and this 
 message is generated, failing with RC=12. The error has 
 something to do with the opening of the catalog. The reason 
 code is what I need to know.
 
 COMMAND INPUT === 
   VERIFY FILE(FILE01)   
 0IDC3300I  ERROR OPENING CATALOG.TSO.USERS  
  IDC3351I ** VSAM OPEN RETURN CODE IS 148   
 0IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12 
 0   
 
 
 Nedbank Limited Reg No 1951/09/06. The following link displays
 the names of the Nedbank Board of Directors and Company Secretary.
 [ http://www.nedbank.co.za/terms/DirectorsNedbank.htm ]
 This email is confidential and is intended for the addressee only.
 The following link will take you to Nedbank's legal notice.
 [ http://www.nedbank.co.za/terms/EmailDisclaimer.htm ]
 
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN
 
 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Catalog IDCAMS Verify - IEC161I 032-015

2012-04-25 Thread Staller, Allan
From :
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2M6C0/SPTB
B3351

RC148 An unidentified error occurred while VSAM was searching the
catalog.

Is there a FILE01 DD statement in you IDCAMS JCL? Does it point to the
correct volume/dsn?

From :
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/FRAMESET/IEA2M7C0/S
PTDP02801

IEC161I RC32 

Specific information for this return code: The catalog record for the
data set being processed was not found. During end-of-volume (EOV)
processing, the error can also occur if an additional volume is required
for a data set but the catalog contains no more volume records for the
data set. 

For message IEC070I, the subfunction information field, if present,
might contain a decimal problem-determination code (reason code) for use
by the IBM Support Center in case further problem diagnosis is
necessary. The following table lists the reason codes for return code
032. 

Is there a FILE01 DD statement in you IDCAMS JCL? Does it point to the
correct volume/dsn?

Please post the entire job stream


snip

Please advise what this message code means. The manuals are not very
informative. I try to verify a catalog, and this message is generated,
failing with RC=12. The error has something to do with the opening of
the catalog. The reason code is what I need to know.

COMMAND INPUT === 
  VERIFY FILE(FILE01)   
0IDC3300I  ERROR OPENING CATALOG.TSO.USERS  
 IDC3351I ** VSAM OPEN RETURN CODE IS 148   
0IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12 
0   
/snip

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Catalog IDCAMS Verify - IEC161I 032-015

2012-04-25 Thread Buckton, T. (Theo)
Thanks for the feedback. This is the job stream:

//STEP001  EXEC PGM=IDCAMS,REGION=0K 
//FILE01   DD DISP=SHR,DSN=CATALOG.TSO.USERS 
//SYSOUT   DD SYSOUT=*   
//SYSPRINT DD SYSOUT=*   
//SYSIN DD * 
 VERIFY FILE(FILE01) 
//*  


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Staller, Allan
Sent: 25 April 2012 02:35 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Catalog IDCAMS Verify - IEC161I 032-015

From :
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2M6C0/SPTB
B3351

RC148 An unidentified error occurred while VSAM was searching the catalog.

Is there a FILE01 DD statement in you IDCAMS JCL? Does it point to the correct 
volume/dsn?

From :
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/FRAMESET/IEA2M7C0/S
PTDP02801

IEC161I RC32 

Specific information for this return code: The catalog record for the data set 
being processed was not found. During end-of-volume (EOV) processing, the error 
can also occur if an additional volume is required for a data set but the 
catalog contains no more volume records for the data set. 

For message IEC070I, the subfunction information field, if present, might 
contain a decimal problem-determination code (reason code) for use by the IBM 
Support Center in case further problem diagnosis is necessary. The following 
table lists the reason codes for return code 032. 

Is there a FILE01 DD statement in you IDCAMS JCL? Does it point to the correct 
volume/dsn?

Please post the entire job stream


snip

Please advise what this message code means. The manuals are not very 
informative. I try to verify a catalog, and this message is generated, failing 
with RC=12. The error has something to do with the opening of the catalog. The 
reason code is what I need to know.

COMMAND INPUT === 
  VERIFY FILE(FILE01)   
0IDC3300I  ERROR OPENING CATALOG.TSO.USERS  
 IDC3351I ** VSAM OPEN RETURN CODE IS 148   
0IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12 
0   
/snip

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@bama.ua.edu with the message: INFO IBM-MAIN


Nedbank Limited Reg No 1951/09/06. The following link displays
the names of the Nedbank Board of Directors and Company Secretary.
[ http://www.nedbank.co.za/terms/DirectorsNedbank.htm ]
This email is confidential and is intended for the addressee only.
The following link will take you to Nedbank's legal notice.
[ http://www.nedbank.co.za/terms/EmailDisclaimer.htm ]


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Catalog IDCAMS Verify - IEC161I 032-015

2012-04-25 Thread Elardus Engelbrecht
Buckton, T. (Theo) wrote:

//STEP001  EXEC PGM=IDCAMS,REGION=0K
//FILE01   DD DISP=SHR,DSN=CATALOG.TSO.USERS
//SYSOUT   DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
 VERIFY FILE(FILE01)
//*

Verify against a catalog? I now understand that strange error message, you want 
to 'reset' a BCS while it is probably in use by Catalog Address Space.

I would really suggest that you tell all your Catalog Address Spaces to drop 
the catalog as described earlier by John McKown and then do an EXAMINE (and 
perhaps DIAGNOSE ICFCATALOG) on it.

On the otherside, could you be kind to tell us what you are trying to do with 
the catalog?

Groete / Greetings
Elardus Engelbrecht

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Catalog IDCAMS Verify - IEC161I 032-015

2012-04-25 Thread Buckton, T. (Theo)
Thank you for the feedback. The verify step has always a part of our catalog 
health check procedure. 

This particular catalog is sitting in our test environment, and was reorg'ed, 
hence the verify. 

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Elardus Engelbrecht
Sent: 25 April 2012 04:33 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Catalog IDCAMS Verify - IEC161I 032-015

Buckton, T. (Theo) wrote:

//STEP001  EXEC PGM=IDCAMS,REGION=0K
//FILE01   DD DISP=SHR,DSN=CATALOG.TSO.USERS
//SYSOUT   DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
 VERIFY FILE(FILE01)
//*

Verify against a catalog? I now understand that strange error message, you want 
to 'reset' a BCS while it is probably in use by Catalog Address Space.

I would really suggest that you tell all your Catalog Address Spaces to drop 
the catalog as described earlier by John McKown and then do an EXAMINE (and 
perhaps DIAGNOSE ICFCATALOG) on it.

On the otherside, could you be kind to tell us what you are trying to do with 
the catalog?

Groete / Greetings
Elardus Engelbrecht

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@bama.ua.edu with the message: INFO IBM-MAIN


Nedbank Limited Reg No 1951/09/06. The following link displays
the names of the Nedbank Board of Directors and Company Secretary.
[ http://www.nedbank.co.za/terms/DirectorsNedbank.htm ]
This email is confidential and is intended for the addressee only.
The following link will take you to Nedbank's legal notice.
[ http://www.nedbank.co.za/terms/EmailDisclaimer.htm ]


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Catalog IDCAMS Verify - IEC161I 032-015

2012-04-25 Thread Buckton, T. (Theo)
The catalog was in Extended Addressability, and that's why it abended. When I 
reallocated the file with no EA, the verify worked. Any ideas?

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Buckton, T. (Theo)
Sent: 25 April 2012 04:55 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Catalog IDCAMS Verify - IEC161I 032-015

Thank you for the feedback. The verify step has always a part of our catalog 
health check procedure. 

This particular catalog is sitting in our test environment, and was reorg'ed, 
hence the verify. 

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Elardus Engelbrecht
Sent: 25 April 2012 04:33 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Catalog IDCAMS Verify - IEC161I 032-015

Buckton, T. (Theo) wrote:

//STEP001  EXEC PGM=IDCAMS,REGION=0K
//FILE01   DD DISP=SHR,DSN=CATALOG.TSO.USERS
//SYSOUT   DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
 VERIFY FILE(FILE01)
//*

Verify against a catalog? I now understand that strange error message, you want 
to 'reset' a BCS while it is probably in use by Catalog Address Space.

I would really suggest that you tell all your Catalog Address Spaces to drop 
the catalog as described earlier by John McKown and then do an EXAMINE (and 
perhaps DIAGNOSE ICFCATALOG) on it.

On the otherside, could you be kind to tell us what you are trying to do with 
the catalog?

Groete / Greetings
Elardus Engelbrecht

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@bama.ua.edu with the message: INFO IBM-MAIN


Nedbank Limited Reg No 1951/09/06. The following link displays the names of 
the Nedbank Board of Directors and Company Secretary.
[ http://www.nedbank.co.za/terms/DirectorsNedbank.htm ] This email is 
confidential and is intended for the addressee only.
The following link will take you to Nedbank's legal notice.
[ http://www.nedbank.co.za/terms/EmailDisclaimer.htm ]


--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@bama.ua.edu with the message: INFO IBM-MAIN


Nedbank Limited Reg No 1951/09/06. The following link displays
the names of the Nedbank Board of Directors and Company Secretary.
[ http://www.nedbank.co.za/terms/DirectorsNedbank.htm ]
This email is confidential and is intended for the addressee only.
The following link will take you to Nedbank's legal notice.
[ http://www.nedbank.co.za/terms/EmailDisclaimer.htm ]


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN