Re: 'Inexperienced' RBS tech operative's blunder led to banking meltdown

2012-06-29 Thread Scott Ford
Kirk, Absolutely ugly in regression testing...Or found Friday at 5 pm Scott ford www.identityforge.com On Jun 28, 2012, at 1:12 PM, Kirk Talman wrote: > well said > > not supposed to exist, but ... > > especially ugly when the problem is regression testing > > IBM Mainframe Discussion List

Re: release SYSOUT for a running STC

2012-06-29 Thread Gary Puchkoff
Starting in z/OS 1.13 any JES2 sysout dataset can be "spun" Add the keyword SPIN=(UNALLOC,xxx) on the sysout JCL. Where xxx is one of: • ‘hh:mm’ – Spin data set at specified time • ‘+hh:mm’ – Spin data set at interval specified • nnn [K|M] – Spin every nnn records • NOCMD – Cannot spin data se

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Ken French
Mark - I got an error when I ran LISTCAT ENT(data_component) ALL, presumably because the volume that the DATA component pointed to did not exist on the system. Thus I was unable to see the expected 'ASSOCIATIONS' information for the DATA component, which would have given me the name of the asso

Re: HSM tape

2012-06-29 Thread Gibney, Dave
Try an LIST TTOC SLECT(FAILEDRECYLCE) and the same for FAILEDCREATE for more info Dave Gibney Information Technology Services Washington State University > -Original Message- > From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] > On Behalf Of Mark Pace > Sent: Friday,

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Mark Zelden
On Fri, 29 Jun 2012 13:58:20 -0600, Ken French wrote: >Mark, Craig and all that contributed - > >I ran DIAGNOSE on the USERCAT that contained the entry for the DATA component >I was trying to delete and found the associated CLUSTER name. Both the DATA >and CLUSTER component names were in the DB

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread retired mainframer
Do the entries for the clusters also exist in the USERCAT? If so, you should specify the cluster name in the DELETE ... NOSCRATCH command. If not, you need to figure out how the cluster was deleted but not the data component and prevent it from happening again. One brute force way to end up with

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Robert A. Rosenberg
At 11:27 -0600 on 06/29/2012, Ken French wrote about Re: Unable to Delete Orphaned VSAM Data Components: Craig - Yes, I tried DELETE NOSCRATCH CLUSTER, and I get IDC3012I ENTRY MY.VSAM.DATA NOT FOUND+ IDC0551I ** ENTRY MY.VSAM.DATA NOT DELETED IDC0014I LASTCC=8 IDC3009I ** VSAM CATALOG

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Ken French
Mark, Craig and all that contributed - I ran DIAGNOSE on the USERCAT that contained the entry for the DATA component I was trying to delete and found the associated CLUSTER name. Both the DATA and CLUSTER component names were in the DB2 naming convention that I'm not very familiar with. Once I

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Jousma, David
//STEP1 EXEC PGM=IDCAMS //SYSPRINT DD SYSOUT=* //DD1 DD DSN=SYS1.VVDS.VVND004,DISP=SHR,UNIT=3390,VOL=SER=VND004 //SYSIN DD * DELETE SYSV.CW.CH

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Michael Wickman
Have you tried something like this: DELETE (file.name) NOERASE NOSCRATCH - CATALOG(user.catalog.name) Mike Wickman -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Mark Zelden Sent: Friday, June 29,

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Mark Zelden
On Fri, 29 Jun 2012 12:57:31 -0600, Ken French wrote: >Craig - >Tried your suggesting early on; output below. >- Ken > >DELETE MY.VSAM.DATA - > >NOSCRATCH - > >CATALOG( -

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Ken French
Mark and all - Here is the LISTCAT command and output: LISTCAT ENTRY(MY.VSAM.DATA) - DATA - CATALOG(MY.ACTIVE.USERCAT) IDCAMS SYSTEM SERVICES TIME: 14:00:04 LISTING FROM CATALOG -- MY.ACTIVE.USERCAT

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Bonaduce, Frank
I think Cliff is on to it. A portion of the BCS entry is the only thing left and it would likely be the TRUENAME element. Frank. GSG Systems -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Clifford McNeill Sent: Friday, June 29, 2012

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Ken French
Craig - Tried your suggesting early on; output below. - Ken DELETE MY.VSAM.DATA - NOSCRATCH - CATALOG( - MY.ACTIVE.USERCAT -

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Clifford McNeill
Ken, Have you tried IDCAMS DELETE TRUENAME? //DELET12JOB ... //STEP1 EXEC PGM=IDCAMS //SYSPRINT DDSYSOUT=A //SYSIN DD* DELETE - K101.AIX.DATA TRUENAME - CATALOG(USERCAT4) /* Cliff McNeill > > 1) Orphaned DATA component entry exists

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Ken French
Still stuck. To rehash, here is the situation: 1) Orphaned DATA component entry exists in an active USERCAT 2) Cluster entry for the orphaned DATA component doesn't exist 3) Volume pointed to by the orphaned DATA component doesn't exist, so the DATA component does not physically exist 4) USERCAT

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Mark Zelden
On Fri, 29 Jun 2012 13:13:42 -0500, Tom Marchant wrote: >He isn't trying to get rid of an uncataloged VSAM component from his >volume. He is trying to get rid of a catalog entry for a component on a >volume that does not exist. > Didn't realize that... that's what I get for jumping in late.

"The Truth Will Set You Free" -- on Destination z

2012-06-29 Thread Gabe Goldberg
"The Truth Will Set You Free" http://destinationz.org/Mainframe-Solution/Business-Case/The-Truth-Will-Set-You-Free.aspx ...and of course, thanks to all who responded to query. -- Gabriel Goldberg, Computers and Publishing, Inc. g...@gabegold.com 3401 Silver Maple Place, Falls Church, VA 22

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Craig . Pace
Ken, Try this if you have not: DELETE fully-qualified-name CATALOG(catalog-name) Example: DELETE ORPHAN.VSAM.DATA CATALOG(CATALOG.USER.VSAM) DELETE ORPHAN.VSAM.INDEX CATALOG(CATALOG.USER.VSAM) Craig From: Ken French To: IBM-MAIN@LISTSERV.UA.EDU Date: 06/29/2012 12:26

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Tom Marchant
On Fri, 29 Jun 2012 10:57:38 -0700, Sri h Kolusu wrote: >IBM Mainframe Discussion List wrote on >06/29/2012 10:32:45 AM: > >> From: Ken French >> >> In the DELETE VVR job, which volume would the 'VOLUME' DD point to? >> I don't think DELETE VVR will work because the volume that contained >> the

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Mark Zelden
I've ignored this thread up until now, but I'll throw in my 2 cents: 1) Use ISMF if you can. Go to the data set menu, generate a list from the vtoc (use the specific dsn if you want), then type DELETE next to the dsn.I haven't used a batch job for DELETE VVR in a long time. 2) If th

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Sri h Kolusu
IBM Mainframe Discussion List wrote on 06/29/2012 10:32:45 AM: > From: Ken French > To: IBM-MAIN@listserv.ua.edu, > Date: 06/29/2012 10:37 AM > Subject: Re: Unable to Delete Orphaned VSAM Data Components > Sent by: IBM Mainframe Discussion List > > Sri - > > In the DELETE VVR job, which vol

Re: ROI of zIIP investment on kneecapped z Systems

2012-06-29 Thread Jan Vanbrabant
That's exactly what it is about, Mike. jan On Fri, Jun 29, 2012 at 7:43 PM, Mike Schwab wrote: > As far as I know, only full service CPs are kneecapped. > Low cost specialty processors run full speed > (I. E. as fast as the fastest CP processor with the same number of > processors). > > On Fri, J

Re: ROI of zIIP investment on kneecapped z Systems

2012-06-29 Thread Mike Schwab
As far as I know, only full service CPs are kneecapped. Low cost specialty processors run full speed (I. E. as fast as the fastest CP processor with the same number of processors). On Fri, Jun 29, 2012 at 12:34 PM, Jan Vanbrabant wrote: > Hi, > > Mgt wants to know the ROI of a zIIP investment on

ROI of zIIP investment on kneecapped z Systems

2012-06-29 Thread Jan Vanbrabant
Hi, Mgt wants to know the ROI of a zIIP investment on zSystems with *kneecapped*GP processors. I've been reading Jim Horne's *Specialty Engines & Kneecapped Processors(Jim Horne, ShareOrlando2011)How specialty engines are reported in RMF TYPE70 & TYPE72) https://share.confex.com/share/117/webpr

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Ken French
Sri - In the DELETE VVR job, which volume would the 'VOLUME' DD point to? I don't think DELETE VVR will work because the volume that contained the data component no longer exists on my system. Same for the PRINT VVDS job. That wouldn't seem to work because the volume that the catalog entry poi

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Ken French
Craig - Yes, I tried DELETE NOSCRATCH CLUSTER, and I get IDC3012I ENTRY MY.VSAM.DATA NOT FOUND+ IDC0551I ** ENTRY MY.VSAM.DATA NOT DELETED IDC0014I LASTCC=8 IDC3009I ** VSAM CATALOG RETURN CODE IS 8 - REASON CODE IS IGG0CLFM-6 Since the object is actually an orphaned DATA component, the D

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Sri h Kolusu
> > I have several VSAM data components in one of my USERCATs that are > cataloged to volumes that no longer exist. I've searched extensively > on how this might be done, and have tried several variations of the > IDCAMS DELETE command without success, including DELETE > NOSCRATCH, DELETE TRUEN

SV: SV: PCOMM alternate screen size

2012-06-29 Thread Thomas Berg
> -Ursprungligt meddelande- > Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] > För Chris Mason > Skickat: den 29 juni 2012 18:12 > Till: IBM-MAIN@LISTSERV.UA.EDU > Ämne: Re: SV: PCOMM alternate screen size > > Thomas > > When giving advice it behoves the adviser not

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Ken French
Hervey - >From ISPF 3.4, DELETE / NOSCRATCH returns the following: IDC2552I ENTRY TYPE IS INVALID FOR DELETE IDC0551I ** ENTRY MY.VSAM.DATA NOT DELETED IDC0014I LASTCC=8 Apparently the system knows that I am trying to delete a VSAM DATA component, and sees this as invalid. >From ISPF 3.4,

Re: Looking for a product

2012-06-29 Thread Ed Gould
Mitch: Indeed the first part you are correct however, under your scenario there is no way any package could tell certain items (even if you had source) as some programs dynamically link to other programs depending on other variables such as parm values or program logic. SO your situation

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Hervey Martinez
In ISPF 3.4 when you enter the VSAM name, then, the VSAM filenames are displayed, you should be able to do a "del / nos" and you may need to do this to the data & index components; but you need Storage admin privileges to do this; if you dont, contact your storage person. You will not be able t

Re: Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Craig . Pace
Have you tried DELETE ent NOSCRATCH CLUSTER ? If alternate index or path, you would need those keywords. From: Ken French To: IBM-MAIN@LISTSERV.UA.EDU Date: 06/29/2012 10:54 Subject:Unable to Delete Orphaned VSAM Data Components Sent by:IBM Mainframe Discussion L

Re: SV: PCOMM alternate screen size

2012-06-29 Thread Chris Mason
Thomas When giving advice it behoves the adviser not to be quite so careless with terminology! > Make sure You connect to a proper VTAM profile (that support the > alternate/dynamic screen size). The IP component of z/OS Communications Server uses files called "PROFILE" for both the main addr

Re: PCOMM alternate screen size

2012-06-29 Thread Chris Mason
Sri > or Shouldn't this be "and"? Also I found nothing in the manual about setting the RFC 2355 (TN3270) "device type"[1] character string to "IBM-DYNAMIC" which, although it was not mentioned in the original post, a subsequent post indicated that the environment was 3270 TELNET. I appreciate

Re: PCOMM alternate screen size

2012-06-29 Thread Chris Mason
Tom http://publib.boulder.ibm.com/infocenter/pcomhelp/v5r9/index.jsp?topic=/com.ibm.pcomm.doc/books/html/emulator_reference13.htm If byte 24 is X'03', the default screen size is 24 x 80 and the alternate is what you configured with PC/3270 So what is described is setting an user-defined *al

Re: VSAM tracking

2012-06-29 Thread Jerry Whitteridge
Have a look at the DAF tool found on the CBT Tape website. It will crunch all that information out of the SMNF records for you - and it's the right price. Jerry Whitteridge Lead Systems Programmer Safeway Inc. 925 951 4184 If you feel in control you just aren't going fast enough. -Origina

Re: PCOMM alternate screen size

2012-06-29 Thread Chris Mason
Paul Which, as I replied to Bob Rutledge who provided the identical recommendation earlier, would be a good idea if it were accurate. Chris Mason On Thu, 28 Jun 2012 19:14:22 -0500, paul wrote: >Try this >http://www-03.ibm.com/support/techdocs/atsmastr.nsf/WebIndex/TD102151 -

Re: PCOMM alternate screen size

2012-06-29 Thread Chris Mason
Bob Which would be a good idea if it were accurate. It is just sufficiently erudite - and with the right pedigree - for its imperfections to be dangerous and frustrating. This post by someone I know quite well from October 2010 which covers necessary corrections: http://newsgroups.derkeiler.c

Unable to Delete Orphaned VSAM Data Components

2012-06-29 Thread Ken French
I have several VSAM data components in one of my USERCATs that are cataloged to volumes that no longer exist. I've searched extensively on how this might be done, and have tried several variations of the IDCAMS DELETE command without success, including DELETE NOSCRATCH, DELETE TRUENAME. I even

Re: CA product numbers (was 'Inexperienced' RBS tech operative's blunder led to banking meltdown)

2012-06-29 Thread Scott Ford
John, Hopefully my mid summer I am getting another system here at home, going yo be 16g with win7 64bit ,,vbox, fedora under it... Scott ford www.identityforge.com On Jun 27, 2012, at 1:17 PM, "McKown, John" wrote: >> -Original Message- >> From: IBM Mainframe Discussion List >> [mai

Re: VSAM tracking

2012-06-29 Thread O'Brien, David W. (NIH/CIT) [C]
DAF (Dataset Audit Facility) does what you want. Available for free from cbttape.org. Just make sure you are cutting the required SMF records. Thank You, Dave O'Brien NIH Contractor From: Scott Ford [scott_j_f...@yahoo.com] Sent: Friday, June 29, 2012 11:2

Re: Looking for a product

2012-06-29 Thread Mitch
Ed (et al): SMF is one of the sources for the RES Suite solution for obtaining information only IF the source module available, but the info from SMF is typically insufficient or incomplete. As an example, assume the following: PGMA - using File1, File2, File3 - calling PGMB PGMB- using File4

Re: release SYSOUT for a running STC

2012-06-29 Thread Scott Ford
Matan, Someone mentioned in a previous post about SPIN and FREE...is this a vendor STC or in house written? Scott ford www.identityforge.com On Jun 28, 2012, at 2:29 AM, Matan Cohen wrote: > Hi, > I wonder if there is a way to release a specific sysout DD for a running > STC? > the main idea

Re: VSAM tracking

2012-06-29 Thread Scott Ford
Peter, Just to add to the great explanation from Lizette , dcollect and ICETOOL can do a lot also. It might be worth looking at Scott ford www.identityforge.com On Jun 29, 2012, at 4:07 AM, mf db wrote: > Lizette, > > Probably My email didn't explained much. Yes I want to see who Updated or

Re: HSM tape

2012-06-29 Thread Mark Pace
So after using suggestions of a LIST DNS to verify the tape is in fact empty I did a DELVOL ML1078 MIGRATION(PURGE) & ADDVOL ML1078 UNIT(3590-1) MIGRATION(ML2) and now the tape shows as empty. On Fri, Jun 29, 2012 at 9:54 AM, Lizette Koehler wrote: > Did you mark the tape full? > > To mark any

Re: HSM tape

2012-06-29 Thread Lizette Koehler
Did you mark the tape full? To mark any partial ML2 and backup tapes full using the 'DELVOL volser MIGRATION(MARKFULL)' or 'DELVOL volser BACKUP(MARKFULL)' commands, as appropriate. Followed by a RECYCLE Should show tape in the state you want. Lizette > -Original Message- > From: IBM Ma

Re: HSM tape

2012-06-29 Thread O'Brien, David W. (NIH/CIT) [C]
Mark, You could try HSEND RECYCLE EXECUTE VOLUME(ML1078) FORCE if that doesn't work HSEND DELVOL ML1078 MIGRATION(PURGE provided you are sure there's no valid data on the tape. Thank You, Dave O'Brien NIH Contractor From: Mark Pace [pacemainl...@gmail

HSM tape

2012-06-29 Thread Mark Pace
I'm trying to figure out why I have tapes that have no valid data, but still show full. ML1060 3590-1 ML2 0098302500 00 000 * EMPTY* NO *NONE* *NONE* 001 *** *NONE* LIB001TPSG ML1078 3590-1 ML2 0003932100 00 000 * FULL *NO *NONE* *NONE* 001 ***

Re: QUESTION ABOUT REF*

2012-06-29 Thread John Dawes
Thanks to all who responded and enlightened me. From: Mark Zelden To: IBM-MAIN@LISTSERV.UA.EDU Sent: Thursday, 28 June 2012 2:27 PM Subject: Re: QUESTION ABOUT REF* On Thu, 28 Jun 2012 10:55:18 -0700, John Dawes wrote: We are evaluating some volume backup jo

Re: PCOMM copy-paste (quite another issue)

2012-06-29 Thread Steve Bireley
The reason is that the line drawing characters use the APL character set. When you paste to another application, it does not know how to handle the those characters so they display as the corresponding ASCII characters at the same position in the character set. Some emulators convert the lines t

SSS2 specialties (JES2 question)

2012-06-29 Thread ESHEL Jonathan
Hi everyone, We have a product that captures data from SYSOUT files of both JES2 and JES3 and use the SSOB extension SAPI with the SSS2 control block and the PUT/GET function. In order to calculate the size of the data, we use the double-word field SSS2BYCT which is supposed to give the "Byte c

SV: PCOMM alternate screen size

2012-06-29 Thread Thomas Berg
I forget: The macro, if You use it, can be set as a start macro for that session profile or e g be defined for a key on the keyboard e g ctrl+F1 (e g "macro LOGON5S0"). Regards, Thomas Berg ___ Thomas Berg Specialist AM/SM&S SWEDBANK AB

PCOMM copy-paste (quite another issue)

2012-06-29 Thread R.S.
Problem description: PCOMM+Windows copy-paste function make frames corrupted. Line elements are translated to letters. I mean copy from PCOMM screen and paste to some Windows application like this e-mail program, MS Word, Notepad, etc. Q: Is there any method to fix it? Any clue? Example: Ess

Re: RCODE: 801C-00 Multiple TELNETPARMS blocks.

2012-06-29 Thread Mike Wawiorko
You may also consider TTLSPORT (together with a Policy Agent AT-TLS policy) instead of SECUREPORT. AT-TLS is IBM's strategic z/OS solution for SSL/TLS and has a big benefit in making certificate changes non-disruptive. · With AT-TLS just a non-disruptive F PAGENT,REFRESH to refresh c

SV: PCOMM alternate screen size

2012-06-29 Thread Thomas Berg
If You by that mean You want to use a bigger screensize (dynamic) You can do like I do: 1: Edit the xxx.ws pcomm session profile file and have: . . . [Telnet3270] TerminalTypeString=IBM-DYNAMIC . . . [3270] . . . ScreenSize=64x128 <--- 64 rows x 128 columns (Whatever You like) . . . 2: Ma

Re: VSAM tracking

2012-06-29 Thread Lizette Koehler
See if the CBT tape file 094 could help. The utility DAF will read any SMF record (this is an assembler program. Just assembler linked and run) and provides: /* DAF CAN SOLVE MANY COMMON MYSTERIES BY SHOWING: * FILE 094 //*

Re: VSAM tracking

2012-06-29 Thread mf db
Lizette, Probably My email didn't explained much. Yes I want to see who Updated or deleted or inserted obviously in Z/OS(Not in anyother Open platform). Unfortunately Our shop is not having a tool like SAS or MXG otherwise I would have exploited MXG . Yes I am good at REXX , COBOL, but I have no

Re: VSAM tracking

2012-06-29 Thread Lizette Koehler
> I am in a process of tracking the changes made to VSAM. Just went on with a basic > research on performing a audit trail on VSAM and found the below information like > > "Type 60 records updates to the VSAM volume Dataset (VVDS). Updates are recorded > as INSERTED, DELETED or UPDATED. As SMS put