Find out allocations of current MSTJCL

2008-08-25 Thread Volkmar Langer
Hi folks, I wonder if there's a way to find out which datasets are allocated to master jcl (some control block or something like that). Regards Volkmar Langer -- For IBM-MAIN subscribe / signoff / archive access instructions,

Re: Find out allocations of current MSTJCL

2008-08-25 Thread Gerhard Postpischil
Volkmar Langer wrote: I wonder if there's a way to find out which datasets are allocated to master jcl (some control block or something like that). The official ones are in the master scheduler TIOT. In some versions of OS that TIOT is also used in the top level TCB (region control task) in

Erase tape data securely

2008-08-25 Thread Victor Zhang
Hi all, I have a T9840 tape drive and lots of carts that need to be erased the data on them. I know that there is an option in T9840 CSE panel that can be turned on/off:DSE(Data security erase), my question is: if I turned it on, what utility or software can I use to erase the data on those

Re: Erase tape data securely

2008-08-25 Thread R.S.
Victor Zhang wrote: Hi all, I have a T9840 tape drive and lots of carts that need to be erased the data on them. I know that there is an option in T9840 CSE panel that can be turned on/off:DSE(Data security erase), my question is: if I turned it on, what utility or software can I use to erase

Re: Trying to figure out IEAMSCHD

2008-08-25 Thread Peter Relson
I never saw the initial post, but the program provided as an example with the BR 14 was incorrect. It was off by a level of indirection. This was what was posted: MODESET KEY=ZERO,MODE=SUP STORAGE OBTAIN,LENGTH=2,SP=227 LR R5,R1 MVC 0(2,R5),=X'07FE' IEAMSCHD

Re: TN3270 Abend S0F8 RC04

2008-08-25 Thread John Chase
On Sun, 17 Aug 2008 09:04:35 -0500, Chase, John wrote: Hi, All, Running a smoke test of z/OS 1.9 on the Prod LPAR, and getting intermittent S0F8-04 abends in TN3270. No hits on IBMLink for this. System Codes manual says: The issuer [of an SVC instruction] was in a mode other than task control

Re: Find out allocations of current MSTJCL

2008-08-25 Thread Binyamin Dissen
On Mon, 25 Aug 2008 01:59:20 -0500 Volkmar Langer [EMAIL PROTECTED] wrote: :Hi folks, :I wonder if there's a way to find out which datasets are allocated to master jcl :(some control block or something like that). Depends on what you mean by allocated. You can look for SYSDSN ENQ's, for one.

Re: Catalog Error - Can't delete dataset

2008-08-25 Thread Staller, Allan
DELETE 'dataset name' nvr FILE(DD1) DD1 points to the correct UCAT HTH, snip So just to try renaming it to something... Seems like everything I try really wants the physical file there - which doesn't make sense since I've run into rouge catalog entries before and not had trouble cleaning

Re: Trying to figure out IEAMSCHD

2008-08-25 Thread Gerhard Postpischil
Peter Relson wrote: It was mentioned that the desire is to do VSMLIST. Why? What will you do with the information? Maybe there are other pieces of information available in the system without going through the trouble (and cycles) of retrieving VSMLIST and analyzing the conl structures. Lindy

Re: Interrupting CICS and IMS transactions

2008-08-25 Thread Mohammad Khan
Chris All I meant by this phrase was that some user input would cause a program to be executed in the CICS / IMS region. It could be what you described in your post or something else though I can't comment due to my ignorance of these matters. Rest of my post was the specific bit that I could

Re: Why don't I see my CSA storage in the dump?

2008-08-25 Thread Walt Farrell
On Sun, 24 Aug 2008 20:08:26 +0200, Lindy Mayfield [EMAIL PROTECTED] wrote: That's exactly what I want to do. Problem is that there are some basic concepts that aren't covered so even though I've read those chapters a few times over, I don't get out of them what I should. I think the basics are

Re: Find out allocations of current MSTJCL

2008-08-25 Thread Walt Farrell
On Mon, 25 Aug 2008 15:39:20 +0300, Binyamin Dissen [EMAIL PROTECTED] wrote: On Mon, 25 Aug 2008 01:59:20 -0500 Volkmar Langer [EMAIL PROTECTED] wrote: :Hi folks, :I wonder if there's a way to find out which datasets are allocated to master jcl :(some control block or something like that).

Re: commands in a JCL stream.

2008-08-25 Thread Itschak Mugzach
John, The commands entered in JCL have a space after the //. It should be a continuation card or one of the few SET, INCLUDE,.. cards that doesn't need a name verb after the slashs. It should be simple to check of ot one of these cards, continuation card or a suspected command. In regard to the

Enterprise COBOL v3.4.1 run time issue

2008-08-25 Thread K Zafirop
Hi all, One of our most curious programmers noticed that when he uses READ or READ INTO statement to parse alphanumeric data, a translation is made. The value passed is the arithmetic truncation of the string. For example a string 'FOW123' is passed with value '666123'. As you can see X'F1' =

Re: Why don't I see my CSA storage in the dump?

2008-08-25 Thread Shane
On Mon, 2008-08-25 at 08:32 -0500, Walt Farrell wrote: I think the basics are covered, Lindy, if you carefully read -all- of the MVS Programming Assembler Services Guide and the MVS Programming Authorized Assembler Services Guide. And the Extended Addressability Gyide. And a good reading of

Re: Enterprise COBOL v3.4.1 run time issue

2008-08-25 Thread Steve Comstock
K Zafirop wrote: Hi all, One of our most curious programmers noticed that when he uses READ or READ INTO statement to parse alphanumeric data, a translation is made. I don't believe it. READ transfers bytes of data from an external source into a memory location unchanged. The only exception

Re: Enterprise COBOL v3.4.1 run time issue

2008-08-25 Thread Don Holstein
DTR will test and give you a Compile time error if truncation is occurring, that is moving a 6 digit field to a 5 digit field. It will also test to see when you are moving an alphanumeric field to a numeric field. This is a compile time and not a runtime option. The value I am seeing FOW123, if

Re: Enterprise COBOL v3.4.1 run time issue

2008-08-25 Thread Binyamin Dissen
On Mon, 25 Aug 2008 09:02:26 -0500 K Zafirop [EMAIL PROTECTED] wrote: :Hi all, : :One of our most curious programmers noticed that when he uses READ or READ :INTO statement to parse alphanumeric data, a translation is made. The value :passed is the arithmetic truncation of the string. For

Re: Enterprise COBOL v3.4.1 run time issue

2008-08-25 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of K Zafirop Sent: Monday, August 25, 2008 9:02 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Enterprise COBOL v3.4.1 run time issue Hi all, One of our most curious programmers noticed that when

SYSOUT LRECL/dcb parms and JES2 performance

2008-08-25 Thread Thomas Berg
Hi! I wondering if there are some preformance consideration regarding dcb parms for a SYSOUT dataset. Lets say that I want to write multiple lines on sysout and they are of very different lengths, everything from zero to 3 chars. Does it matter if I use FB or VB and what maxlength i use

Re: sFTP from/to z/OS best practices

2008-08-25 Thread Jack Kelly
snip We need to set up some type of area that our users (user's) can each place their files but that can't be accessed by the other outside users. unsnip You may want to look at access ACLs in the OMVS directory. Also the [EMAIL PROTECTED] list may be more informative. Jack Kelly 202-502-2390

Re: Catalog Error - Can't delete dataset

2008-08-25 Thread Jeffrey Deaver
4. For this one you need to leave the ver… as is. //SYSINDD * ZAP BCS(USERCAT.NAME) - DELETE(KEY(DATASET.NAME) - VER(04,C'A')) Well, I'd love to try the zap, but I don't have CatalogRecovery +. Bummer.

Re: SYSOUT LRECL/dcb parms and JES2 performance

2008-08-25 Thread Rick Fochtman
--snip-- I wondering if there are some preformance consideration regarding dcb parms for a SYSOUT dataset. Lets say that I want to write multiple lines on sysout and they are of very different lengths, everything from zero to 3 chars.

Re: Enterprise COBOL v3.4.1 run time issue

2008-08-25 Thread Paul Gilmartin
On Mon, 25 Aug 2008 08:26:19 -0600, Steve Comstock wrote: K Zafirop wrote: The value passed is the arithmetic truncation of the string. For example a string 'FOW123' is passed with value '666123'. I'm confused here. How can the string 'FOW123' have a value '666123'? The string is its value.

SV: SYSOUT LRECL/dcb parms and JES2 performance

2008-08-25 Thread Thomas Berg
I thought that maybe today JES2 stores it in its own, compressed, format regardless of what I specify. The natural choice if thinking in terms of normal dataset IO would of course be VB as You suggest. The 3 chars was just an example to show the unpredictability of the output. (Logging,

Re: Trying to figure out IEAMSCHD

2008-08-25 Thread (IBM Mainframe Discussion List)
In a message dated 8/25/2008 7:00:29 A.M. Central Daylight Time, [EMAIL PROTECTED] writes: I do find it distressing that experienced people on this forum would give advice about using non-programming interfaces such as CVTSRBRT. I didn't know until your post that using CVTSRBRT was not

Re: Catalog Error - Can't delete dataset

2008-08-25 Thread Brian Peterson
I've had good luck with IBM's unsupported VVDSFIX tool, to delete an otherwise un-delete-able data set. The VVDSFIX tool's DELBCSR command did the trick for me. //*DELBCSR - DELETE BCS RECORD will erase a BCS record.** //* The purpose of this command is to erase a catalog

Re: Enterprise COBOL v3.4.1 run time issue

2008-08-25 Thread Mansell, George R.
Doubt the Read is involved. Look at the move code for this field generated by the complier. Pics? On Mon, 25 Aug 2008 08:26:19 -0600, Steve Comstock wrote: K Zafirop wrote: The value passed is the arithmetic truncation of the string. For example a string 'FOW123' is passed with value

Re: Erase tape data securely

2008-08-25 Thread Rich Greenberg
In article [EMAIL PROTECTED] you write: Hi all, I have a T9840 tape drive and lots of carts that need to be erased the data on them. I know that there is an option in T9840 CSE panel that can be turned on/off:DSE(Data security erase), my question is: if I turned it on, what utility or software can

PassTicket on FEPI Terminal

2008-08-25 Thread FRANSISCUS KAURRANY
Dear All, Our shop has never used FEPI before, but since the bussiness need grew, we are currently exploring that option. Any experience in using FEPI is very much needed. We really need an expert on guiding us towards the right way on how to implement this. So we are going to have a CICS

sharing data sets acrosss systems

2008-08-25 Thread John C. Wolf
There used to be an IBM manual about placement of system daya sets in MVS. It also told what system data sets could be shared and not shared. Does any one knoe what that manual is now or where I can find such information? We just installed z/OS 1.9 and are sharing the logrec data set between

Re: sharing data sets acrosss systems

2008-08-25 Thread Mark Zelden
On Mon, 25 Aug 2008 12:29:15 -0500, John C. Wolf [EMAIL PROTECTED] wrote: There used to be an IBM manual about placement of system daya sets in MVS. It also told what system data sets could be shared and not shared. Does any one knoe what that manual is now or where I can find such information?

Re: sharing data sets acrosss systems

2008-08-25 Thread Brian Peterson
For some reason, the powers that be who are in charge of IBM manuals have decided that the old System Data Set Definition manual is no longer needed. I found the following reference which explains that the LOGREC data set must be unique to each z/OS system, from z/OS Diagnosis Tools and

Re: sharing data sets acrosss systems

2008-08-25 Thread Lizette Koehler
My own preference would be to NOT share LOGREC, MAN files, certain zFS or HFS files, Page Datasets, and so on. I would share Copule Data Sets, Catalogs, Spool, and so on. Lizette There used to be an IBM manual about placement of system daya sets in MVS. It also told what system data sets

Re: sharing data sets acrosss systems

2008-08-25 Thread Mark Zelden
On Mon, 25 Aug 2008 13:47:03 -0500, Mark Zelden [EMAIL PROTECTED] wrote: On Mon, 25 Aug 2008 12:29:15 -0500, John C. Wolf [EMAIL PROTECTED] wrote: There used to be an IBM manual about placement of system daya sets in MVS. It also told what system data sets could be shared and not shared. Does

Abend U1188 in Syncsort with EMC DASD

2008-08-25 Thread Lizette Koehler
As promised, I now have a solution to my Syncsort Jobs abending with U1188. EMC has a microcode patch for DMX2 (DMX3000 Storage array) family and DMX4 (DMX4500 Storage Array) family. You can search powerlink with the following phrase: ‘IOS050I SyncSort ABEND U1188’ You will see a couple for

Re: PassTicket on FEPI Terminal

2008-08-25 Thread Chris Mason
Fransiscus I was obliged to call on the services of Google in order to work out what you were talking about here. Eventually FEPI and CICS as keywords cleared the matter up. You should probably use the CICS-L list for this query. See

Re: Catalog Error - Can't delete dataset

2008-08-25 Thread Jeffrey Deaver
I've had good luck with IBM's unsupported VVDSFIX tool, to delete an otherwise un-delete-able data set. The VVDSFIX tool's DELBCSR command did the trick for me. SHAZAM! It worked. Thanks! Jeffrey Deaver, Engineer Systems Engineering [EMAIL PROTECTED] 651-665-4231(v) IS - Creating competitive

SHOWzOS 7.17 for z/OS R10 (beta)

2008-08-25 Thread Veilleux, Jon L
Roland, how can I contact you to get the beta version of Showzos? Thanks, Jon Jon L. Veilleux [EMAIL PROTECTED] (860) 636-2683 This e-mail may contain confidential or privileged information. If you think you have received this e-mail in error, please advise the sender by reply e-mail and

Re: Which OMEGAMON is correct?

2008-08-25 Thread Itschak Mugzach
Doron, There is doubt that your CSA size in not 10M, there are only 16M down there... Did you use IRLM for IMS as well? I mean, may be from DB2 point of view IRLM uses only 10M in ECSA, and the rest 3MB are used by IMS settings left behind after IMS drop? Start OM for DBCTL and see what it has to

Re: Catalog Error - Can't delete dataset

2008-08-25 Thread Itschak Mugzach
Why don't you just zap the VTOC entry for this dataset to PS? The catalog structure is much simpler then and bypasses VVDS. You should be familiar with VTOP dump, zap and format-x DSCBs. Don't try it at home if you are not familiar with it! If you have CA-Disk, you can use a utility to this for

Re: sharing data sets acrosss systems

2008-08-25 Thread Imbriale, Donald
I too found the System Data Set Definitions manual to be quite useful. As Mark pointed out it went away with z/OS 1.7. You can get the last version at http://publibz.boulder.ibm.com/epubs/pdf/iea2g500.pdf The info may be 'old', but I believe it is still mostly relevant. Don Imbriale

Platinum and z/OS V1.9

2008-08-25 Thread Lizette Koehler
Cross posting to IBMMAIN and DB2 Newsgroups Are there any issues with DB2 V8, Platinum and z/OS V1.9? Our DBA group is indicating that since the z/OS V1.9 operating system went in, the Platinum loads have failed on space issues. What they are seeing are: IGD17226I THERE IS AN INSUFFICIENT

Re: Platinum and z/OS V1.9

2008-08-25 Thread O'Brien, David W. (NIH/CIT) [C]
Lizette, You might consider using a Data class that has the following attributes: Space Constraint Relief . . . : YES Reduce Space Up To (%) . . : 30 Dynamic Volume Count . . . : 9 Regards, Dave O'Brien From: Lizette Koehler

SMS Dynamic Volume and still D37

2008-08-25 Thread Jack Kelly
I thought that I understood this option until a user came in. Researching this issue, I discovered, what everyone else probably knows but, Dynamic Vol addition doesn't occur if there's no secondary allocation requested, eg SPACE=(TRK,(10,0)). This was obfuscated by Syncsort's wannabee

Re: Platinum and z/OS V1.9

2008-08-25 Thread Lizette Koehler
Would that force Platinum to use more '*'? Currently the dataclas for this data is (NULL). Lizette Lizette, You might consider using a Data class that has the following attributes: Space Constraint Relief . . . : YES Reduce Space Up To (%) . . : 30 Dynamic Volume Count . .

Re: Platinum and z/OS V1.9

2008-08-25 Thread O'Brien, David W. (NIH/CIT) [C]
It should but the file must be SMS managed. From: Lizette Koehler [mailto:[EMAIL PROTECTED] Sent: Mon 8/25/2008 4:24 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: Platinum and z/OS V1.9 Would that force Platinum to use more '*'? Currently the dataclas for this

Re: Which OMEGAMON is correct?

2008-08-25 Thread Doron Geva
Hi ITsckak We are DB2 only. We stop using IMS about 10 months ago All numbers related to ECSA Have fun Doron On Mon, Aug 25, 2008 at 10:16 PM, Itschak Mugzach [EMAIL PROTECTED]wrote: Doron, There is doubt that your CSA size in not 10M, there are only 16M down there... Did you use IRLM for

Re: Platinum and z/OS V1.9

2008-08-25 Thread Lizette Koehler
All of our DB2 data bases are managed by SMS. What is puzzeling is the DBAs are saying this worked fine in z/OS V1.7 but with the installation of z/OS V1.9 it is failing. I am looking in IBM Link and not finding anything that would support that view. But I will try setting up the DC routine

Enterprise COBOL v3.4.1 run time issue

2008-08-25 Thread Bill Klein
As others have indicated, I (mostly) doubt that the READ (rather than READ INTO) is doing ANY manipulation of data. The one possible exception is if you have the 01-level under the FD defined as a numeric or edited field - and even then, I doubt that conversion takes place. (The other exception

Re: Erase tape data securely

2008-08-25 Thread Stephen Mednick
-Original Message- Hi all, I have a T9840 tape drive and lots of carts that need to be erased the data on them. I know that there is an option in T9840 CSE panel that can be turned on/off:DSE(Data security erase), my question is: if I turned it on, what utility or software can I

Re: Erase tape data securely

2008-08-25 Thread Russell Witt
Victor, What the others have told is correct. However, one more thing to be aware with STK drives is that there is an option to perform a fast erase and a full or slow erase. The fast erase will only erase a couple of feet (not sure how many) so that an attempt to read past the double-tape-mark

Dependencies between subsystem initialization routines

2008-08-25 Thread W. Kevin Kelley
IBM would like to know if anyone has created dependencies on the ordering of subsystem initialization routines or depends on the subsystem initialization process being synchronous. We are specifically interested in the subsystem initialization routines that are run as part of defining the

Re: SYSOUT LRECL/dcb parms and JES2 performance

2008-08-25 Thread William H. Blair
Thomas Berg wrote: ... [performance] consideration ... dcb for a SYSOUT dataset. ... I want to write multiple lines on sysout and they are of very different lengths, everything from zero to 3 chars. Does it matter if I use FB or VB and what [LRECL] i use ... ? Yes, it could matter. But

Re: Platinum and z/OS V1.9

2008-08-25 Thread Lopez, Sharon
Check in the z/OS 1.9 migration guide under DFSMS migration actions. There is a section in there that talks about defining linear data sets with CISIZE greater than 4096. -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of O'Brien, David W.

Porting Apache 2.2.9 to z/OS 1.9, and other matters

2008-08-25 Thread Steve Comstock
Information passed to my opt-in list already... After over two months of work, I have succesfully ported the Apache server, version 2.2.9, to our z/OS 1.9 system. Based on this work, I have produced a paper on how to do this (or at least how I did it, which may or may not work for you). If you