Re: ADR120E - DFDSS Error

2006-05-25 Thread Bruce Hewson
Hello John,

I believe a lot of confusion has been caused by the original formatting of 
your command:

   DUMP  DATASET(INCLUDE(IST*.**-
 MED*.**   -
 X*.** -
 Y*.** -
 Z*.** -
 SRT.**-
 SYS*.**   -
 TEMP.**   -
 *SYSUT*.**)  -
 BY(CREDT,LT,*,-1,DSORG,NE,VSAM)) -
 LOGINDDNAME(DASD) -
 OUTDD(TAPE) OPT(4) ALLDATA(*) ALLEXCP -
 TOL(ENQF)


I would have coded these as:-

   DUMP  DATASET(INCLUDE(- == changed
  IST*.** - == changed
 MED*.** -
 X*.**   -
 Y*.**   -
 Z*.**   -
 SRT.**  -
 SYS*.** -
 TEMP.** -
 *SYSUT*.**  - == changed
) - == changed - end INCLUDE
 BY(CREDT,LT,*,-1,DSORG,NE,VSAM) -
) - == changed - end DATASET
 LOGINDDNAME(DASD) -
 OUTDD(TAPE) OPT(4) ALLDATA(*) ALLEXCP -
 TOL(ENQF)

By formatting the end ) on separate lines, it makes it very easy to 
validate the parmaters and parentheses on the BY statement.

I believe you already have changed the BY statement to be

  BY((CREDT,LT,(*,-1)),(DSORG,NE,(VSAM))) -

Regards
Bruce Hewson

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Stopping DB2 (was SMP/E SMPWRK* vs. SDB)

2006-05-25 Thread R.S.

Wayne Driscoll wrote:

Radoslaw,
There is a simple solution to resolving the -stop db2 issue.  Don't allow
people who have no business accessing a console, be it via a real console,
an EMCS console (including SDSF) or any other approach.


Wayne,
it is a joke, yes ?
Otherwise:
I'm aware that I can disallow people to use any console. I can also 
disallow them to use any mainframe connection, and - if there is no 
business case - I can switch off the mainframe - in that case everything 
will be very secure.
We call it binary security. You have access to all or nothing. Simple 
rule.
But seriously: I have business reasons to allow some folks to issue 
DISPLAY (and some MODIFY) commands. I can filter the commands very 
precisely, for example I can allow to F CICSA, but not CICSB. However 
*every* person having such (limited) access is also able to blow up our 
DB2 subsystem.



Regards
--
Radoslaw Skorupka
Lodz, Poland

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: 501 --- reserved for future use ---

2006-05-25 Thread Big Iron
I think that this happens when there is a problem with the message
catalog that FTP is using and so FTP isn't retrieving the right
message text. Is this on a z/OS system?

Bill

[EMAIL PROTECTED] wrote:
 Greetings all,
 
 I get 501 --- reserved for future use --- when I create an FTP
 connection.  The message immediately before shows the IP address port
 21 (we use the default).  The line after says it was the OPEN command
 (rc=10501).
 
 This happens in batch and online.  Same JCL works fine in our OS/390
 2.9 system.
 
 What could be reserved for future use?
 
 JCL:
 
 //FTPTEST EXEC PGM=FTP,PARM='XXX.XXX.XXX.XXX (EXIT'
 //INPUT  DD *
 MYUID MYPSWD
 CD
 DIR
 QUIT
 
 Thanks in advance,
 Bruce

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: z/OS V1R4 SEND command to operator console

2006-05-25 Thread Glenn Siegel
Paul,
You could use file708 on the www.cbttape.org always check the updates 
page.  A new release will be out shortly.  If you like this product and 
wish to be on the email notification just send me an email.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Stopping DB2

2006-05-25 Thread Terry Sambrooks
Hi Radoslaw,

In your post in response to Wayne, you wrote 

.But seriously: I have business reasons to allow some folks to issue 
DISPLAY (and some MODIFY) commands. I can filter the commands very precisely, 
for example I can allow to F CICSA, but not CICSB. However *every* person 
having such (limited) access is also able to blow up our DB2 subsystem.

This situation is not the case on my z/OS 1.6 System. I recently opened Display 
authority within SDSF to allow certain uses to display the status of various 
network components. If I log on to one of these userids and type /-DB8G STOP 
DDF the command is rejected by SDSF as being an authorised attempt.

Whilst I accept that attempting to stop DDF rather than DB2 in its entirety is 
not quite the same, the point is that SDSF stopped the command, whilst it did 
allow /D SMF.

I haven't got any User's authorised to issue the modify command so I cannot 
comment specifically at that higher level of authority, but certainly Display, 
at least on my system, does not give authority to close DB2. As a point of 
interest I also have a VTAM application which issue various shutdown commands, 
and whilst it can close some tasks either via Cancel or Stop, it cannot close 
DB2 at present as its command is declared unauthorised.

My system also has a simplistic approach in this area in that RACF is not, as 
far as I know, exploited from an SDSF perspective, it is only the SDSF Parm 
member which controls security.

Kind regards - Terry

Terry Sambrooks
Director
KMS-IT Limited
228 Abbeydale Road South
Dore
Sheffield
S17 3LA
UK

Tel: +44 (0)114 262 0933
WEB:
www.legac-e.co.uk
www.kmsitltd.co.uk

Reg: England  Wales 3767263 at the above address

All outgoing E-mails are scanned but it remains the recipients responsibility 
to ensure that their system is protected from viruses, trojans, worms, and 
spy-ware.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Stopping DB2

2006-05-25 Thread R.S.

Terry Sambrooks wrote:


Hi Radoslaw,

In your post in response to Wayne, you wrote 


.But seriously: I have business reasons to allow some folks to issue 
DISPLAY (and some MODIFY) commands. I can filter the commands very precisely, for example 
I can allow to F CICSA, but not CICSB. However *every* person having such (limited) 
access is also able to blow up our DB2 subsystem.

This situation is not the case on my z/OS 1.6 System. I recently opened Display 
authority within SDSF to allow certain uses to display the status of various 
network components. If I log on to one of these userids and type /-DB8G STOP 
DDF the command is rejected by SDSF as being an authorised attempt.


What message is issued when user tries to do it ? Any ICH408I ?
Do you have any command exit ?
Is it controlled only by SDSF parm member ?



Whilst I accept that attempting to stop DDF rather than DB2 in its entirety is 
not quite the same, the point is that SDSF stopped the command, whilst it did 
allow /D SMF.

I haven't got any User's authorised to issue the modify command so I cannot 
comment specifically at that higher level of authority, but certainly Display, 
at least on my system, does not give authority to close DB2. As a point of 
interest I also have a VTAM application which issue various shutdown commands, 
and whilst it can close some tasks either via Cancel or Stop, it cannot close 
DB2 at present as its command is declared unauthorised.

My system also has a simplistic approach in this area in that RACF is not, as 
far as I know, exploited from an SDSF perspective, it is only the SDSF Parm 
member which controls security.


Can you share you parm member ?
BTW: in that case you should also protect every other command 
interface, like // COMMAND in JCL, TSO COMMAND, NetView, SMSC consoles, 
MCS consoles, etc.

Protect here means totally disallow or trust selected users.

Regards
--
Radoslaw Skorupka
Lodz, Poland

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Need Suggestions - Best Way To Ship Secure Reports from Mainframe to Users

2006-05-25 Thread R.S.

What about ...access to TSO ?
Just allow them to browse the reports on 3270 emulator screen.
It doesn't require anything except emulator. It can be SSL session.
It does require almost no setup.
It doesn't consume network bandwith.
It is secure - data will not leave most secure platorm, while PC can be 
stolen, hacked, etc.

You can monitor what reports are read, what are never touched.
You can monitor who read the reports.
You can migrate older reports to tape and recall them when needed. 
Unattended.


Just my $0.02
--
Radoslaw Skorupka
Lodz, Poland


Robert Pelletier wrote:


Hi All. I have been asked by the user to come up with a way to SECURELY
ship reports from the frame to the users. Right now we use XMITIP
unsecured or unsecured FTP to ship them. The user stated:
1. If possible NO changes to their PCs / use of keys if possible.
2. User doesn't care if reports go to the server from the frame and then
uses something secure on the PC to ship them secured ( I don't want to
do it this way if possible as it moves another function off the frame).
3. Mentioned a product called VPS?
4. Basically they want some sort of security on what goes to school etc.

I am a 3 person shop running OS390 V2R10 very vanilla and have never
dealt with this type of issue. I am not even sure if my needs are clear.
Any suggestions/ideas/where to look are greatly appreciated. Thanks in
advance.  


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: FDR MESSAGE - FDR998

2006-05-25 Thread willie bunter
Richard,
   
  As you stated, yes, I am looking for something like SYSTERM as mentioned.  As 
per Bruce's advice on the SYSPRINT, we output this to a gdg.  That is where I 
found the  FDR309**.  It would be nice if the good folks of FDR could post 
that error message in another sysprint statement.  I examined the other 
SYSPRINx statements but I didn't find any error.
  Below is what my jcl looks like.  Maybe, someone can make a suggestion.
   
  //BACKUP  EXEC PGM=FDRABR,REGION=0M,TIME=1440  
//SYSPRINT DD DSN=SYS2..FDR.incr.BACKUP.OUTPUT(+1),   
//DISP=(,CATLG,DELETE),UNIT=SYSALLDA,DCB=PROD.MODLDSCB,  
//SPACE=(TRK,(30,15),RLSE) 
//SYSPRIN1 DD SYSOUT=* 
//SYSPRIN2 DD SYSOUT=* 
//SYSPRIN3 DD SYSOUT=* 
//SYSPRIN4 DD SYSOUT=* 
//SYSPRIN5 DD SYSOUT=* 
//SYSPRIN6 DD SYSOUT=* 
//SYSPRIN7 DD SYSOUT=* 
//SYSUDUMP DD SYSOUT=* 
//ABRMAP   DD SYSOUT=* 
//FDRSUMM  DD SYSOUT=* 
//TAPE1DD DSN=FDR.backup.TAPE1, 
// DISP=(,KEEP),SUBSYS=SOV
//*   
//TAPE11   DD DSN=FDR.backup.TAPE11
// DISP=(,KEEP),SUBSYS=SOV
//*   
//TAPE2DD DSN=FDR.backup.TAPE2,
// DISP=(,KEEP),SUBSYS=SOV
//*   
//TAPE22   DD DSN=FDR.backup.TAPE22
// DISP=(,KEEP),SUBSYS=SOV
//*   
//TAPE3DD DSN=FDR.backup.TAPE3,
// DISP=(,KEEP),SUBSYS=SOV
//*   
//TAPE33   DD DSN=FDR.backup.TAPE33
// DISP=(,KEEP),SUBSYS=SOV
//*   
//TAPE4DD DSN=FDR.backup.TAPE4,
// DISP=(,KEEP),SUBSYS=SOV
//* 
//TAPE44   DD DSN=FDR.backup.TAPE44, 
// DISP=(,KEEP),SUBSYS=SOV  
//* 
//TAPE5DD DSN=FDR.backup.TAPE5,  
// DISP=(,KEEP),SUBSYS=SOV  
//* 
//TAPE55   DD DSN=FDR.backup.TAPE55, 
// DISP=(,KEEP),SUBSYS=SOV  
//* 
//TAPE6DD DSN=FDR.backup.TAPE6,  
// DISP=(,KEEP),SUBSYS=SOV  
//* 
//TAPE66   DD DSN=FDR.backup.TAPE66, 
// DISP=(,KEEP),SUBSYS=SOV  
//* 
//TAPE7DD DSN=FDR.backup.TAPE7,  
// DISP=(,KEEP),SUBSYS=SOV  
//* 
//TAPE77   DD DSN=FDR.backup.TAPE77, 
// DISP=(,KEEP),SUBSYS=SOV  
//* 
//SYSINDD * 
 DUMP TYPE=ABR,PRINT=DSN,DSNENQ=NONE,RTC=YES,MAXERR=1,DCT=YES,ENQ=OF
 MOUNT VOLG=PROM   
 MOUNT VOLG=SYS
 MOUNT VOLG=WORK 
 MOUNT VOLG=PROD   
 MOUNT VOLG=IMS   
 MOUNT VOLG=CICS
 MOUNT VOLG=Z34
 MOUNT VOLG=TSO  
 MOUNT VOLG=TOR
 MOUNT VOLG=TDD   
 MOUNT VOLG=FLS
 MOUNT VOL=SYS011   

Richard Peurifoy [EMAIL PROTECTED] wrote:
  Bruce Black wrote:

..
 SYSPRINT will show the success or failure of each volume, although you
 may need to examine the SYSPRINx outputs to find specific error messages


I think what he is looking for is something like SYSTERM in HLASM
which would just contain error messages so they would be easy to find.

Richard



-
How low will we go? Check out Yahoo! Messenger’s low  PC-to-Phone call rates.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Need Suggestions - Best Way To Ship Secure Reports from Mainf rame to Users

2006-05-25 Thread Clark, Kevin D, HRC-Alexandria/EDS
Bob, 

Encrypt the file and then transmit. Have a different key for each school
that you publish on a key ring.

Since your are in the Financial area. You will have to consider SSL at some
point,

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Robert Pelletier
Sent: Wednesday, May 24, 2006 3:29 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Need Suggestions - Best Way To Ship Secure Reports from Mainframe
to Users


Hi All. I have been asked by the user to come up with a way to SECURELY ship
reports from the frame to the users. Right now we use XMITIP unsecured or
unsecured FTP to ship them. The user stated: 1. If possible NO changes to
their PCs / use of keys if possible. 2. User doesn't care if reports go to
the server from the frame and then uses something secure on the PC to ship
them secured ( I don't want to do it this way if possible as it moves
another function off the frame). 3. Mentioned a product called VPS? 4.
Basically they want some sort of security on what goes to school etc.

I am a 3 person shop running OS390 V2R10 very vanilla and have never dealt
with this type of issue. I am not even sure if my needs are clear. Any
suggestions/ideas/where to look are greatly appreciated. Thanks in advance.



Have a Nice Day !
 
Bob Pelletier
Connecticut Student Loan Foundation
Rocky Hill, Ct.
 



Confidentiality Notice
 
Unless expressly stated otherwise, this message is confidential and may be
privileged.  It is intended for the addressee(s) only.   Access to this
e-mail by anyone else is unauthorized.  If you are not an addressee, any
disclosure or copying of the contents of this e-mail or any action taken (or
not taken) in reliance on it is unauthorized and may be unlawful.   If you
are not an addressee, please inform the sender immediately and delete this
message from your system.

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email
to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the
archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Stopping DB2

2006-05-25 Thread Wayne Driscoll
Terry,
Walt really can't comment on RACF controlling DB2 commands.  The issue is
that RACF can only answer those questions that are asked of it.  Prior to
Version 8, DB2 didn't ask RACF if the issuer of the command is aurhorized,
so RACF never came into the picture.  
Wayne Driscoll
Product Developer
JME Software LLC
NOTE: All opinions are strictly my own.
  

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Terry Sambrooks
Sent: Thursday, May 25, 2006 7:49 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Stopping DB2

Hi Radoslaw,

As mentioned previously RACF is not used within SDSF at present so the
message issue with the illegal /-DB8G STOP DDF was:

ISF015I SDSF COMMAND ATTEMPTED '-DB8G STOP DDF

I am not saying that the method used is the best method for inhibiting the
illicit use of commands, as I simply do not know.

My system is not a production system but one of the IBM supplied development
systems. In that respect many of the additional command inhibit requirements
you cite are not applicable. The only other method I know that is active is
that JES2 has batch command processing set to ignore to block commands in
the input stream as much as possible.

It would be useful to receive a comment from Walt Farrell in respect of RACF
control of DB2 start/stop processing.

Kind regards - Terry

Terry Sambrooks
Director
KMS-IT Limited
228 Abbeydale Road South
Dore
Sheffield
S17 3LA
UK

Tel: +44 (0)114 262 0933
WEB:
www.legac-e.co.uk
www.kmsitltd.co.uk

Reg: England  Wales 3767263 at the above address

All outgoing E-mails are scanned but it remains the recipients
responsibility to ensure that their system is protected from viruses,
trojans, worms, and spy-ware.

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email
to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the
archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Write to BR14 allocated PSDS - Unitech ACR 3.3

2006-05-25 Thread Shmuel Metz (Seymour J.)
In
[EMAIL PROTECTED],
on 05/24/2006
   at 04:51 PM, Chase, John [EMAIL PROTECTED] said:

Yeah -- HARBA and HURBA (High Allocated Relative Byte Address and
High Used RBA) live in the catalog entry.

More to the point, you really don't want an EOF at the beginning of an
extent that is supposed to be CI formatted. Similar considerations
apply to other access methods. The EOF is really only relevant to
(B|P|Q)SAM.
 
-- 
 Shmuel (Seymour J.) Metz, SysProg and JOAT
 ISO position; see http://patriot.net/~shmuel/resume/brief.html 
We don't care. We don't have to care, we're Congress.
(S877: The Shut up and Eat Your spam act of 2003)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Write to BR14 allocated PSDS - Unitech ACR 3.3

2006-05-25 Thread Shmuel Metz (Seymour J.)
In [EMAIL PROTECTED], on 05/24/2006
   at 06:26 PM, Paul Gilmartin [EMAIL PROTECTED] said:

Would this have any adverse interaction with writing a physical EOF
at the beginning of a newly allocated extent?

No; the real kicker is the adverse interaction with the CI formatting.
 
-- 
 Shmuel (Seymour J.) Metz, SysProg and JOAT
 ISO position; see http://patriot.net/~shmuel/resume/brief.html 
We don't care. We don't have to care, we're Congress.
(S877: The Shut up and Eat Your spam act of 2003)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Write to BR14 allocated PSDS - Unitech ACR 3.3

2006-05-25 Thread Shmuel Metz (Seymour J.)
In [EMAIL PROTECTED], on 05/24/2006
   at 09:26 PM, Bruce Black [EMAIL PROTECTED] said:

An EOF In VSAM beyond the HURBA would probably be ignored,

Wouldn't it blow you out of the water when you tried writing new
records in that space? AFAIK the VSAM PUT logic expects the space to
be CI formatted.
 
-- 
 Shmuel (Seymour J.) Metz, SysProg and JOAT
 ISO position; see http://patriot.net/~shmuel/resume/brief.html 
We don't care. We don't have to care, we're Congress.
(S877: The Shut up and Eat Your spam act of 2003)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Fw: fewer/faster vs more/slower in same plex

2006-05-25 Thread Mark Zelden
On Wed, 24 May 2006 00:00:00 GMT, Ted MacNEIL
[EMAIL PROTECTED] wrote:


--Original Message--
To: Shane
Sent: May 24, 2006 19:22
Subject: Re: fewer/faster vs more/slower in same plex

I was actually talking about CICS trans level goals.
Just shows one shouldn't post prior to the first ingestion of caffeine of
the day.


Response time goals were available from the beginning of WLM, but
you had to be at CICS 4.1 or above. 

Again, I say since when?

At the time I implemented, we had to go to CICS transaction goals!
CICS 'region' goals were not an option.

So no one is confused by you choice of words (we had):  That was a
choice you made, not a requirement.  It never was and still isn't 
required.

Nor were they for IMS!


Ditto.

Regards,

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group
mailto: [EMAIL PROTECTED]
Systems Programming expert at http://expertanswercenter.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


PCF2 to ICSF Conversion

2006-05-25 Thread Mark Jacobs
Does anyone have a procedure to migrate Programmed Cryptographic
Facility(PCF) data encrypting keys into the ICSF database while
retaining the same single-des encryption key value.

 

Thanks.

 

Mark Jacobs

Time Customer Service Inc.

 


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Mark House
Is there command or a freeware utility that will allow me to scroll 
forward and backward through the output of a NETSTAT command entered via 
TSO COMMAND panel.  Thanks.

Mark House
(402) 778-1966
Technical Development Services
[EMAIL PROTECTED]

This e-mail message and any attachments may contain confidential, 
proprietary or non-public information.  This information is intended 
solely for the designated recipient(s).  If an addressing or transmission 
error has misdirected this e-mail, please notify the sender immediately 
and destroy this e-mail.  Any review, dissemination, use or reliance upon 
this information by unintended recipients is prohibited.  Any opinions 
expressed in this e-mail are those of the author personally.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Bob Shannon
Is there command or a freeware utility that will allow 
me to scroll forward and backward through the output 
of a NETSTAT command entered via TSO COMMAND panel

Set up a logon procedure that uses TSO Session manager.

Bob Shannon

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Need Suggestions - Best Way To Ship Secure Reports from Mainframe to Users

2006-05-25 Thread Kittendorf, Craig
I didn't think OS390 V2R10 supported FTP with SSl.

Craig

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Steve Bui
Sent: Wednesday, May 24, 2006 4:55 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Need Suggestions - Best Way To Ship Secure Reports from
Mainframe to Users

zOS supports FTP with SSL for secure connections.
We use Control-D to store output on zOS, and Control-D web access on the
unix side for user to sign on, and retrieve their output to either print
or save on their pc.  

SB

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Michael Wickman
David Alcock has a nice freeware netstat panel system on his web site of
planetmvs.com

 [EMAIL PROTECTED] 05/25/06 8:37 AM 
Is there command or a freeware utility that will allow me to scroll 
forward and backward through the output of a NETSTAT command entered
via 
TSO COMMAND panel.  Thanks.

Mark House
(402) 778-1966
Technical Development Services
[EMAIL PROTECTED]

This e-mail message and any attachments may contain confidential, 
proprietary or non-public information.  This information is intended 
solely for the designated recipient(s).  If an addressing or
transmission 
error has misdirected this e-mail, please notify the sender immediately

and destroy this e-mail.  Any review, dissemination, use or reliance
upon 
this information by unintended recipients is prohibited.  Any opinions

expressed in this e-mail are those of the author personally.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html




--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of Tom Schmidt
 
 On Thu, 25 May 2006 08:37:53 -0500, Mark House wrote:
 
 Is there command or a freeware utility that will allow me to scroll 
 forward and backward through the output of a NETSTAT command entered 
 via TSO COMMAND panel.  Thanks.
 
 There is the TSO Session Manager, standard with z/OS and TSO/E.  
  
 People often either love it or hate it, but I'm in the I can 
 do without but I understand some of the reasons people love 
 it crowd myself. 

Hmmm  By tso command PANEL (my emphasis) I interpret the OP as
asking relative to ISPF option 6, in which case I don't believe TSO
Session Mangler intercepts and manages the display (it doesn't work that
way here, though we may not have it configured to do so).

-jc-

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Bob Shannon
Hmmm  By tso command PANEL (my emphasis) I interpret the OP as
asking relative to ISPF option 6, in which case I don't believe TSO
Session Mangler intercepts and manages the display (it doesn't work that
way here, though we may not have it configured to do so)

ISPF needs to be configured to support session manager.

Bob Shannon

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


ISPF 3.4 question

2006-05-25 Thread Pommier, Rex R.
Hi.

I have what might be a silly question.  I've checked the help screens
and have seen nothing like this so I'll ask the list if I'm missing
something or if it doesn't exist.

For those of you who are familiar with the HCD panels, we can use
extended selection to select multiple lines to perform some action
against.  We do this by putting an open paren in front of the first item
we want to modify and a close paren to select the last one.  We can then
perform some kind of function against all lines between the parentheses.
Is there some similar function within ISPF 3.4?  

I need to uncatalog and recatalog about 1000 datasets and don't relish
the idea of doing these one at a time.

TIA.

Rex

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Write to BR14 allocated PSDS - Unitech ACR 3.3

2006-05-25 Thread Bruce Black


Wouldn't it blow you out of the water when you tried writing new
records in that space? AFAIK the VSAM PUT logic expects the space to
be CI formatted.
If allocation wrote the EOF into the VSAM cluster, then VSAM OPEN or EOV 
would immediately format the CA with CIs as soon as it is needed, 
disregarding any previous contents, including the EOF.   So the EOF 
would just be unnecessary work for a VSAM allocation.


--
Bruce A. Black
Senior Software Developer for FDR
Innovation Data Processing 973-890-7300
personal: [EMAIL PROTECTED]
sales info: [EMAIL PROTECTED]
tech support: [EMAIL PROTECTED]
web: www.innovationdp.fdr.com

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: SMP/E SMPWRK* vs. SDB

2006-05-25 Thread Kurt Quackenbush

3. If the BLKSIZE value is omitted or invalid, SMP/E uses a default of 3200.



I omitted that bullet deliberately.  I believe IBM has been known to
accept APARs on other products that similarly thwarted the operation
of SDB.  The Rexx interpreter comes to mind.


As a matter of fact, a recent SMP/E APAR (IO03920) did address the 
default blocksize of 3200 and SDB for SMPWRKn (and SYSUT1) data sets. 
Obviously the books have not been updated yet to reflect this change.


Also, and unfortunately, we're having a little trouble with this APAR 
and have opened another, IO04540, to fix a BLKSIZE=0 issue for SMPWRK1 
and SMPWRK2.  We're working on a fix as I type this note.


Kurt Quackenbush -- IBM, SMP/E Development

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT display REXX script attached

2006-05-25 Thread Mark House
Thanks to all who responded.  It turns out there is a REXX script that 
someone uses to allow scrollable display.  I have tested it and it works. 
Here is what I used.

/*  SHAREWARE   ??   t  
/* REXX to trap output from a given command and, instead of letting it  
/* REXX to trap output from a given command and, instead of letting it  
display once and be lost, copies it to a temporary dataset for browsing.   
 
This is useful in two cases:  1) When the output is rather long and it'd   
 
be nice to be able to browse up and down through it (for example as with   
 
HELP XMIT or LISTCAT HISTORY), and 2) when you want to be able to search   
 
through it for a particular string, or otherwise manipulate it with VIEW   
 
commands.  
  
To make the call, just insert DISP between TSO and the command; for  
example, instead of saying TSO HELP XMIT, say TSO DISP HELP XMIT. */  

arg cmd 
 
/* Turn any single quotes into triples */ 
pq=pos(',cmd); do while pq0 
  cmd=insert('',cmd,pq) 
  pq=pos(',cmd,pq+3); end 
 
rc=outtrap('op.'); interpret 'cmd'; rc=outtrap('OFF') 
if op.0=0 then say, 
  No output, or TRAP can't handle this type of output 
else do 
  vx=sysvar('SYSWTERM')  
  'ALLOCATE DDN(DISPTRAP) NEW REUSE LRECL('vx')'; call chkrc 'ALLOCATE' 
  'EXECIO * DISKW DISPTRAP (STEM OP. FINIS';  call chkrc 'EXECIO' 
  'ISPEXEC LMINIT DATAID(OP) DDNAME(DISPTRAP)';   call chkrc 'LMINIT' 
  'ISPEXEC VIEW DATAID('op')';call chkrc 'VIEW' 
  'FREE DDN(DISPTRAP)';   call chkrc 'FREE' 
  end 
exit 0 
 
chkrc: arg stm; 
  if rc=0 then return 
  if stm='LMINIT' then do 
say strip(zerrsm) '(help panel =' zerrhm')' 
say strip(zerrlm); end 
  msg=stm 'returns' rc; 
  if rc4  wordpos(stm,'ALLOCATE FREE')=0 then do 
'FREE DDN(DISPTRAP)'; call abend msg; end; 

 say '*  ' msg'!'; return  
 
abend: parse arg msg; say '***' msg; parse source . . self . 
  say '   ' self 'abending (RC=8)'; exit 8  
 



Mark House
(402) 778-1966
Technical Development Services
[EMAIL PROTECTED]

This e-mail message and any attachments may contain confidential, 
proprietary or non-public information.  This information is intended 
solely for the designated recipient(s).  If an addressing or transmission 
error has misdirected this e-mail, please notify the sender immediately 
and destroy this e-mail.  Any review, dissemination, use or reliance upon 
this information by unintended recipients is prohibited.  Any opinions 
expressed in this e-mail are those of the author personally.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Kittendorf, Craig
Can you use the REPORT parameter of NETSTAT and browse the resulting
dataset?

Craig


 [EMAIL PROTECTED] 05/25/06 8:37 AM 
Is there command or a freeware utility that will allow me to scroll 
forward and backward through the output of a NETSTAT command entered
via 
TSO COMMAND panel.  Thanks.

Mark House
(402) 778-1966
Technical Development Services
[EMAIL PROTECTED]

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Need Suggestions - Best Way To Ship Secure Reports from Mainframe to Users

2006-05-25 Thread John Mattson
Check out Data21 zip/390   www.data21.com 
You can zip files to be compatible with most zip packages such as PKzip, 
Winzip, gzip on Windows and Unix, and also encrypt.  User does have to 
have software that can unzip and/or decrypt. 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: SAP on The Mainframe

2006-05-25 Thread Timothy Sipples
We are a fairly large IMS shop and my company is investigating moving to 
SAP.  Looks like the move may be to UNIXAnyone running SAP DB2 on zos 

and SAP A/S on Linux on an IFL?  If so what were the key decision points. 
 
RAS or simply $$$?

It's both. It's one of those rare cases where you pay less and get more.

There are many, many happy references for SAP on mainframe Linux together 
with DB2 z/OS. It's an excellent, proven configuration. (I believe the 
first Linux platform for SAP was mainframe Linux, in fact.) Baldor 
Electric is one example:

ftp://ftp.software.ibm.com/software/solutions/pdfs/ODB-0129Baldor0324.pdf

Baldor is quite amazing because they manufacture electric generators in 
the United States. I think all of their competitors have not been as 
efficient and have been forced to move their production overseas. Mark 
presents at certain conferences, and it's well worth hearing his 
experiences.

Eberspaecher GmbH is another very good one:

ftp://submit.boulder.ibm.com/sales/ssi/rep_sp/9/GK123709/GK123709.PDF

Video here:

ftp://ftp.software.ibm.com/s390/audio/content/eberspacher.html

Eberspaecher runs their production plants 24x7x365, so RAS is critical. 
There are lots of other customers at the IBM and SAP Web site.

You may wish to ask IBM and SAP to schedule a joint executive briefing at 
the IBM Boeblingen labs. They do a very good job and provide excellent 
technical information -- and it's obviously convenient to meet SAP people 
before making such an investment. And the beer is not so bad.

- - - - -
Timothy F. Sipples
Consulting Enterprise Software Architect, z9/zSeries
IBM Japan, Ltd.
E-Mail: [EMAIL PROTECTED]

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Mark T. Regan, K8MTR
Send the output to a file and then browse the contents there. Example
 
NETSTAT GATE REPORT DSN 'T520.NETSTAT.SYC.GATE'


- Original Message 
From: Mark House [EMAIL PROTECTED]
To: IBM-MAIN@BAMA.UA.EDU
Sent: Thursday, May 25, 2006 9:37:53 AM
Subject: Scrolling NETSTAT displayed using TSO COMMAND panel


Is there command or a freeware utility that will allow me to scroll 
forward and backward through the output of a NETSTAT command entered via 
TSO COMMAND panel.  Thanks.

Mark House
(402) 778-1966
Technical Development Services
[EMAIL PROTECTED]

This e-mail message and any attachments may contain confidential, 
proprietary or non-public information.  This information is intended 
solely for the designated recipient(s).  If an addressing or transmission 
error has misdirected this e-mail, please notify the sender immediately 
and destroy this e-mail.  Any review, dissemination, use or reliance upon 
this information by unintended recipients is prohibited.  Any opinions 
expressed in this e-mail are those of the author personally.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ISPF 3.4 question

2006-05-25 Thread Mark Zelden
On Thu, 25 May 2006 09:05:11 -0500, Pommier, Rex R.
[EMAIL PROTECTED] wrote:

Hi.

I have what might be a silly question.  I've checked the help screens
and have seen nothing like this so I'll ask the list if I'm missing
something or if it doesn't exist.

For those of you who are familiar with the HCD panels, we can use
extended selection to select multiple lines to perform some action
against.  We do this by putting an open paren in front of the first item
we want to modify and a close paren to select the last one.  We can then
perform some kind of function against all lines between the parentheses.
Is there some similar function within ISPF 3.4?

I need to uncatalog and recatalog about 1000 datasets and don't relish
the idea of doing these one at a time.

TIA.



I use MCNVTCAT (CATCVTM) for stuff like this.  If you don't have an
old copy around you can get Alastair Gray's RCNVTCAT replacement
from CBT. 

Cheers,

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group
mailto: [EMAIL PROTECTED]
Systems Programming expert at http://expertanswercenter.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ISPF 3.4 question

2006-05-25 Thread O'Brien, David W. (NIH/CIT) [C]
Could you save the list  and then use the modified list as input into
Idcams? 

-Original Message-
From: Pommier, Rex R. [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 25, 2006 10:05 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: ISPF 3.4 question

Hi.

I have what might be a silly question.  I've checked the help screens
and have seen nothing like this so I'll ask the list if I'm missing
something or if it doesn't exist.

For those of you who are familiar with the HCD panels, we can use
extended selection to select multiple lines to perform some action
against.  We do this by putting an open paren in front of the first item
we want to modify and a close paren to select the last one.  We can then
perform some kind of function against all lines between the parentheses.
Is there some similar function within ISPF 3.4?  

I need to uncatalog and recatalog about 1000 datasets and don't relish
the idea of doing these one at a time.

TIA.

Rex

--
For IBM-MAIN subscribe / signoff / archive access instructions, send
email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search
the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ADR120E - DFDSS Error

2006-05-25 Thread John Dawes
Bruce,
   
  Thanks for your suggestion.  Can you tell me how would I code the following 
with this job:
   
  EXCLUDE(SYS1.VTOCIX.**-
  SYS1.VVDS.**)-
   
  I have to exclude the above entries.  However, I am not sure how to add this 
to the main body of the job.  Can you suggest something?  


Bruce Hewson [EMAIL PROTECTED] wrote:
  Hello John,

I believe a lot of confusion has been caused by the original formatting of 
your command:

 DUMP DATASET(INCLUDE(IST*.** -
 MED*.** -
 X*.** -
 Y*.** -
 Z*.** -
 SRT.** -
 SYS*.** -
 TEMP.** -
 *SYSUT*.**) -
 BY(CREDT,LT,*,-1,DSORG,NE,VSAM)) -
 LOGINDDNAME(DASD) -
 OUTDD(TAPE) OPT(4) ALLDATA(*) ALLEXCP -
 TOL(ENQF)


I would have coded these as:-

 DUMP DATASET(INCLUDE( - == changed
IST*.** - == changed
 MED*.** -
 X*.** -
 Y*.** -
 Z*.** -
 SRT.** -
 SYS*.** -
 TEMP.** -
 *SYSUT*.** - == changed
) - == changed - end INCLUDE
 BY(CREDT,LT,*,-1,DSORG,NE,VSAM) -
) - == changed - end DATASET
 LOGINDDNAME(DASD) -
 OUTDD(TAPE) OPT(4) ALLDATA(*) ALLEXCP -
 TOL(ENQF)

By formatting the end ) on separate lines, it makes it very easy to 
validate the parmaters and parentheses on the BY statement.

I believe you already have changed the BY statement to be

BY((CREDT,LT,(*,-1)),(DSORG,NE,(VSAM))) -

Regards
Bruce Hewson

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html



-
On Yahoo!7
  Socceroos Central: Latest news, schedule, blogs and videos.  

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ADR120E - DFDSS Error

2006-05-25 Thread McKown, John
 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:[EMAIL PROTECTED] On Behalf Of John Dawes
 Sent: Thursday, May 25, 2006 10:11 AM
 To: IBM-MAIN@BAMA.UA.EDU
 Subject: Re: ADR120E - DFDSS Error
 
 
 Bruce,

   Thanks for your suggestion.  Can you tell me how would I 
 code the following with this job:

   EXCLUDE(SYS1.VTOCIX.**-
   SYS1.VVDS.**)-

   I have to exclude the above entries.  However, I am not 
 sure how to add this to the main body of the job.  Can you 
 suggest something?  

DUMP -
  DATASET( -
INCLUDE ( A** -
  B** ) -
EXCLUDE ( SYS1.VVDS.** -
  SYS1.VTOCIX.** ) -
  ) 

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

This message (including any attachments) contains confidential
information intended for a specific individual and purpose, and its
content is protected by law.  If you are not the intended recipient, you
should delete this message and are hereby notified that any disclosure,
copying, or distribution of this transmission, or taking any action
based on it, is strictly prohibited. 
 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ISPF 3.4 question

2006-05-25 Thread Sam Bass
ON the command line in SPF 3.4 to this.

SAVE TEMP

This will create a dataset called   userid.TEMP.DATASETS  with a list of the 
datasets.

You can then edit this and make IDCAMS DELETE commands and run that in batch.

Sam Bass
McLane Company
Temple, TX  76503
254-771-7212

 -Original Message-
From:   IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED]  On Behalf Of 
Pommier, Rex R.
Sent:   Thursday, May 25, 2006 9:05 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject:ISPF 3.4 question

Hi.

I have what might be a silly question.  I've checked the help screens
and have seen nothing like this so I'll ask the list if I'm missing
something or if it doesn't exist.

For those of you who are familiar with the HCD panels, we can use
extended selection to select multiple lines to perform some action
against.  We do this by putting an open paren in front of the first item
we want to modify and a close paren to select the last one.  We can then
perform some kind of function against all lines between the parentheses.
Is there some similar function within ISPF 3.4?  

I need to uncatalog and recatalog about 1000 datasets and don't relish
the idea of doing these one at a time.

TIA.

Rex

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Fw: fewer/faster vs more/slower in same plex

2006-05-25 Thread Ted MacNEIL
So no one is confused by you choice of words (we had):  That was a
choice you made, not a requirement.  It never was and still isn't 
required.

IIRC, there was no option for goals of the region until 2.9 or 2.10.
I was at a CMG Canada conference where somebody mentioned that it was now 
available.
I seem to remember that prior to that only transaction based goals were 
available.
And, if you didn't specify any, you got the default you coded, or discretionary 
if you didn't.

This was a stumbling block for us in January 1999.

(But, I have been wrong before. And, a lot has happend in 7.5 years).

-
-teD

300,000 Kilometres per Second
Not only is it a good idea!
It's the LAW!!!  

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


MIH at VSE

2006-05-25 Thread Rugel José
Hi friends ;
 
At  z/OS  we can  get  mih  from  command D IOS,MIH,DEV=656B
  IOS086I 
13.50.12 MIH DEVICE TIMES 801656B=03:00   (   3  MINUTES ).
 
Is there  any similar command  to  do  at  VSE/ESA ?  or  it can be  obtained  
only  from an EREP ?.
 
 
 
TIA.
 
J. Rugel 
Phone: +593 4 2 566010 

 
***
La informacion contenida en este e-mail es confidencial y solo puede ser 
utilizada por la persona o la 
Institucion a la cual esta dirigido. Cualquier retencion, difusion, 
distribucion o copia de este mensaje esta 
prohibida. La Institucion no asume responsabilidad sobre informacion, opiniones 
o criterios contenidos en 
este mail que no este relacionada con negocios oficiales de nuestra 
Institucion. Si Usted recibio este 
mensaje por error notifique al Administrador o a quien le envio inmediatamente, 
eliminelo sin hacer copias. --- 
BANCO DEL PACIFICO S.A.--- 
*
(Las tildes han sido omitidas intencionalmente para evitar problemas de 
lectura).
*

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Bruno Sugliani
On Thu, 25 May 2006 08:37:53 -0500, Mark House [EMAIL PROTECTED] wrote:

Is there command or a freeware utility that will allow me to scroll
forward and backward through the output of a NETSTAT command entered via
TSO COMMAND panel.  Thanks.

What about sending your command through sdsf and browse it on your ulog ?
example :
D TCPIP,,netstat,vdpt
or 
D TCPIP,,netstat,arp 
etc ... 

Bruno
Bruno(dot)sugliani(at)groupemornay(dot)asso(dot)fr

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Smith, Sean M
My favorite method is something that was written up in the TSO Times
called GLUREXX.  It provides a panel to allow you to issue any TSO
command and it will trap the output in a temporary file for you.

http://www.tsotimes.com/articles/archive/fall03/tsocommandtrappersc.html

Sean Smith
Bank of America

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Mark House
Sent: Thursday, May 25, 2006 6:38 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Scrolling NETSTAT displayed using TSO COMMAND panel

Is there command or a freeware utility that will allow me to scroll 
forward and backward through the output of a NETSTAT command entered via

TSO COMMAND panel.  Thanks.

Mark House
(402) 778-1966
Technical Development Services
[EMAIL PROTECTED]

This e-mail message and any attachments may contain confidential, 
proprietary or non-public information.  This information is intended 
solely for the designated recipient(s).  If an addressing or
transmission 
error has misdirected this e-mail, please notify the sender immediately 
and destroy this e-mail.  Any review, dissemination, use or reliance
upon 
this information by unintended recipients is prohibited.  Any opinions 
expressed in this e-mail are those of the author personally.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Richards.Bob
I like Sean's reply better, but here is a simple exec that can do it:

/* REXX program to trap TSO cmd output */  
   
ADDRESS TSO
  Arg cmd  
   
  x = OUTTRAP(cmd.)
 'ALLOC DD(LIST) UNIT(VIO) SPACE(1) CYLINDERS REUSE
RECFM (F B) LRECL (80) BLKSIZE (0)'
 ''cmd''   
 'EXECIO * DISKW LIST (STEM cmd. FINIS)'   
  x = OUTTRAP('OFF')   
ADDRESS ISPEXEC
 'LMINIT DATAID(LASTID) DDNAME(LIST)'  
 'BROWSE DATAID('lastid')' 
 'LMFREE DATAID('lastid')' 
ADDRESS TSO
 'FREE DD(LIST)' 
  
  
  
LEGAL DISCLAIMER 
The information transmitted is intended solely for the individual or entity to 
which it is addressed and may contain confidential and/or privileged material. 
Any review, retransmission, dissemination or other use of or taking action in 
reliance upon this information by persons or entities other than the intended 
recipient is prohibited. If you have received this email in error please 
contact the sender and delete the material from any computer. 
  
Seeing Beyond Money is a service mark of SunTrust Banks, Inc. 
[ST:XCL] 
 
 
 
 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Fw: fewer/faster vs more/slower in same plex

2006-05-25 Thread Mark Zelden
On Thu, 25 May 2006 00:00:00 GMT, Ted MacNEIL
[EMAIL PROTECTED] wrote:

So no one is confused by you choice of words (we had):  That was a
choice you made, not a requirement.  It never was and still isn't
required.

IIRC, there was no option for goals of the region until 2.9 or 2.10.
I was at a CMG Canada conference where somebody mentioned that it was now
available.
I seem to remember that prior to that only transaction based goals were
available.
And, if you didn't specify any, you got the default you coded, or
discretionary if you didn't.

This was a stumbling block for us in January 1999.

(But, I have been wrong before. And, a lot has happend in 7.5 years).

-

OS/390 2.10.  You are confusing the ability to have some CICS regions
(usually test) managed by velocity goals and some by response
goals.  Prior to that it was all or none by response goals. Since
that time you can have all, some, or none managed by velocity goals.
Response goals have some extra overhead because of how often WLM
samples CICS PBs (performance blocks). MAXTASKS being too high will
just aggrevate this issue.  

Regards,

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group
mailto: [EMAIL PROTECTED]
Systems Programming expert at http://expertanswercenter.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Roy Hewitt

Mark,

There's something called EZANS, written by an IBMer (Alfred 
Christensen). It is a rexx and panels that issues Netstat commands and 
then browses the output. you can filter on various parameters, very useful.


I'm not sure where you can download it. I think it might be from a 
redbook, and be somewhere on the Redbooks Additional Materials site..


(I've googled but cant find any reference to it)

Regards

Roy


Mark House wrote:
Is there command or a freeware utility that will allow me to scroll 
forward and backward through the output of a NETSTAT command entered via 
TSO COMMAND panel.  Thanks.


Mark House
(402) 778-1966
Technical Development Services
[EMAIL PROTECTED]

This e-mail message and any attachments may contain confidential, 
proprietary or non-public information.  This information is intended 
solely for the designated recipient(s).  If an addressing or transmission 
error has misdirected this e-mail, please notify the sender immediately 
and destroy this e-mail.  Any review, dissemination, use or reliance upon 
this information by unintended recipients is prohibited.  Any opinions 
expressed in this e-mail are those of the author personally.



--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html



--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Harry Riedel
I can give you two options.

one is the freeware available at this link:
http://www.planetmvs.com/freeware/tcpipm.html

The other is to go into sdsf if you have it and issue D TCPIP commands when
in the ULOG panel. Use can then scroll through your user log.

Regards,

Harry Riedel
The Pep Boys - Manny, Moe  Jack





Mark House wrote:
 Is there command or a freeware utility that will allow me to scroll
 forward and backward through the output of a NETSTAT command entered via
 TSO COMMAND panel.  Thanks.

 Mark House
 (402) 778-1966
 Technical Development Services
 [EMAIL PROTECTED]

 This e-mail message and any attachments may contain confidential,
 proprietary or non-public information.  This information is intended
 solely for the designated recipient(s).  If an addressing or transmission

 error has misdirected this e-mail, please notify the sender immediately
 and destroy this e-mail.  Any review, dissemination, use or reliance upon

 this information by unintended recipients is prohibited.  Any opinions
 expressed in this e-mail are those of the author personally.


 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html



Disclaimer: The information contained in this communication is confidential and 
only for the use of the intended addressee(s).  If you have received this 
communication in error, any disclosure or use of such information is strictly 
prohibited.  Please notify the sender immediately and destroy all copies.  
Thank you.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Some SYSPLEX doubts

2006-05-25 Thread R.S.

There is a plan to add ICF to single system.
Since both  MVS and ICF LPARs reside on the same CPC, no ETR is needed, 
as well as physical channels. ICPs can be used.


Q1. Can I use CF with PLEXCFG=MONOPLEX ?

Next questions assume PLEXCFG=MULTISYSTEM, but number of systems remains 1.
Q2. Do I have to define paths ? Of course I can do it using IXCnnn 
structure, but see no reason to.


Q3. GRS. I cannot stay with GRS=NONE. However is there any advantage of 
using STAR mode in such (single system) scenario ?


In fact, I did quick test, IPLed system in MULTISYSTEM mode, with 
GRS=RING, and no paths defined (because I forgot). I observed noticeable 
delays. Then I quickly defined ISGLOCK and switched to STAR mode. Delays 
disappeared, but GRS task CPU consumpion increased.

I must confess: It is shared CPU. Two CF LPARs shared single ICF engine.
The problem with GRS CPU disappeared when I assigned 90% of ICF CPU (was 
10%). DYNDISP is off (active wait is on).

Any comments, advices are welcome ?

Regards
--
Radoslaw Skorupka
Lodz, Poland

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ADR120E - DFDSS Error

2006-05-25 Thread John Dawes
Thanks to all who helped.  It works.  
   
  Donald, regarding the HILITE function, I did what you suggested and I chose 
JCL and Parenthesis matching,  but I didn't get any message or anything else.  
Should I expect any type of informational or error message?  As a test I 
removed one of the parenthesis but nothing was flagged.

Imbriale, Donald (Exchange) [EMAIL PROTECTED] wrote:
  The nature of the syntax of the control statements results in many
parentheses. In fact, it seems that parentheses (or lack thereof)
contributed to the problems encountered. One way to help deal with that
is to use ISPF edit's HILITE function. This works best if the control
cards are in a separate member or data set. Once in edit, enter HI on
the command line, select Other for Language and be sure Parentheses
Matching is selected. Once you return to the edit session, you should
be able to tell if there are any unbalanced parentheses.

Don Imbriale



-
  The LOST Ninja blog: Exclusive clues, clips and gossip.  

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ADR120E - DFDSS Error

2006-05-25 Thread Schwarz, Barry A
Highlighting doesn't generate any messages in this situation.  All it
does is color code the parentheses so you can visually determine which
pair are a matched set.

-Original Message-
From: John Dawes [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 25, 2006 11:10 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: ADR120E - DFDSS Error

Thanks to all who helped.  It works.  
   
  Donald, regarding the HILITE function, I did what you suggested and I
chose JCL and Parenthesis matching,  but I didn't get any message or
anything else.  Should I expect any type of informational or error
message?  As a test I removed one of the parenthesis but nothing was
flagged.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Determine what is running on system

2006-05-25 Thread Carl Edwards
Is anyone aware of a means by which I can determine if
a
specific 'process' is running. For example, I would
like to determine, in a program,  if DB2 is active, or
any other process for that matter. 
TIA

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


sshd ported tools logging

2006-05-25 Thread Rugen, Len
I don't seem to have any /var/log files on z/OS 1.4.  Does sshd log on
z/os or have I missed something?  I'm interested in failed login
attempts just to see if brute force login attempts are being made.  

 

Thanks


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: MIH at VSE

2006-05-25 Thread Horst Sinram
On Thu, 25 May 2006 11:04:16 -0500, Rugel José [EMAIL PROTECTED] wrote:

At  z/OS  we can  get  mih  from  command D IOS,MIH,DEV=656B
  IOS086I
13.50.12 MIH DEVICE TIMES 801656B=03:00   (   3  MINUTES ).
 
Is there  any similar command  to  do  at  VSE/ESA ?  

SIR MIH 

-- 
Horst Sinram 
IBM zSeries Systems Management Development - z/OS Workload Manager

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: MIH at VSE

2006-05-25 Thread Clark, Kevin D, HRC-Alexandria/EDS
Are you under VM. If so there is MIH  issue  Q MIH 

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Horst Sinram
Sent: Thursday, May 25, 2006 2:38 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: MIH at VSE


On Thu, 25 May 2006 11:04:16 -0500, Rugel José [EMAIL PROTECTED]
wrote:

At  z/OS  we can  get  mih  from  command D IOS,MIH,DEV=656B
  
IOS086I
13.50.12 MIH DEVICE TIMES 801656B=03:00   (   3  MINUTES ).
 
Is there  any similar command  to  do  at  VSE/ESA ?

SIR MIH 

-- 
Horst Sinram 
IBM zSeries Systems Management Development - z/OS Workload Manager

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email
to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the
archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ADR120E - DFDSS Error

2006-05-25 Thread Imbriale, Donald (Exchange)
There are no messages.  

Matched pairs of parentheses will be shown in the same color.  Nested
parens are supported; the outermost pair will be in white, then next
inner pair would be red, etc.  Any unmatched parens should show up as
highlighted pink/purple.

Don Imbriale

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf
Of John Dawes
Sent: Thursday, May 25, 2006 2:10 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: ADR120E - DFDSS Error

Thanks to all who helped.  It works.

  Donald, regarding the HILITE function, I did what you suggested and I
chose JCL
and Parenthesis matching,  but I didn't get any message or anything
else.  Should I
expect any type of informational or error message?  As a test I removed
one of the
parenthesis but nothing was flagged.

Imbriale, Donald (Exchange) [EMAIL PROTECTED] wrote:
  The nature of the syntax of the control statements results in many
parentheses. In fact, it seems that parentheses (or lack thereof)
contributed to the problems encountered. One way to help deal with that
is to use ISPF edit's HILITE function. This works best if the control
cards are in a separate member or data set. Once in edit, enter HI on
the command line, select Other for Language and be sure Parentheses
Matching is selected. Once you return to the edit session, you should
be able to tell if there are any unbalanced parentheses.

Don Imbriale



-
  The LOST Ninja blog: Exclusive clues, clips and gossip.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


***
Bear Stearns is not responsible for any recommendation, solicitation, 
offer or agreement or any information about any transaction, customer 
account or account activity contained in this communication.
***

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Scrolling NETSTAT displayed using TSO COMMAND panel

2006-05-25 Thread Aaron Walker
You could go into OMVS and issue the (appropriate) onetstat command there.

Aaron


On Thu, 25 May 2006 08:37:53 -0500, Mark House [EMAIL PROTECTED] wrote:

Is there command or a freeware utility that will allow me to scroll
forward and backward through the output of a NETSTAT command entered via
TSO COMMAND panel.  Thanks.

Mark House
(402) 778-1966
Technical Development Services
[EMAIL PROTECTED]

This e-mail message and any attachments may contain confidential,
proprietary or non-public information.  This information is intended
solely for the designated recipient(s).  If an addressing or transmission
error has misdirected this e-mail, please notify the sender immediately
and destroy this e-mail.  Any review, dissemination, use or reliance upon
this information by unintended recipients is prohibited.  Any opinions
expressed in this e-mail are those of the author personally.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html
=

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Console Names

2006-05-25 Thread Neubert, Kevin (DIS)
...except for the system console.  From MVS Initialization and Tuning
Reference (SA22-7592-10):

Summary of changes
for SA22-7592-06
z/OS Version 1 Release 4
as updated December 2003

CONSOLxx is changed to reflect the requirement that all consoles be
named, except for the system console.

Regards,

Kevin

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Kittendorf, Craig
Sent: Thursday, May 25, 2006 11:20 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Console Names

Someone can correct me if I'm wrong, but I think names are required
after v1.4.

Craig

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Write to BR14 allocated PSDS - Unitech ACR 3.3

2006-05-25 Thread Paul Gilmartin
In a recent note, Shmuel Metz (Seymour J.) said:

 Date: Thu, 25 May 2006 08:30:54 -0300
 
 More to the point, you really don't want an EOF at the beginning of an
 extent that is supposed to be CI formatted.
 
Why?  I thought it was possible to write over an EOF.  Doesn't
DISP=MOD do that regularly?

-- gil
-- 
StorageTek
INFORMATION made POWERFUL

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Write to BR14 allocated PSDS - Unitech ACR 3.3

2006-05-25 Thread Paul Gilmartin
In a recent note, Bruce Black said:

 Date: Thu, 25 May 2006 10:10:26 -0400
 
  Wouldn't it blow you out of the water when you tried writing new
  records in that space? AFAIK the VSAM PUT logic expects the space to
  be CI formatted.
 If allocation wrote the EOF into the VSAM cluster, then VSAM OPEN or EOV
 would immediately format the CA with CIs as soon as it is needed,
 disregarding any previous contents, including the EOF.   So the EOF
 would just be unnecessary work for a VSAM allocation.
 
Finally, some good sense in this thread.  I was dismayed by the
presumption of some readers that the design would put the operations
in the wrong order -- first CI format, then write the EOF; naturally
it works better the other way around.

My guiding rationale here is that when a new extent is allocated,
the component (DADSM?) pays little attention to the former use
or content of the space allocated.  If, by happenstance, the
first track in the extent contains an EOF, I'd expect other
components to be prepared to deal with it.  Empirically, this
appears so -- I've never heard of a software failure because
an unitialized extent contained an unexpected EOF.

-- gil
-- 
StorageTek
INFORMATION made POWERFUL

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Determine what is running on system

2006-05-25 Thread Knutson, Sam
There are a number of programs and even REXX execs that have been
written to do this but the first one that I find handy is Roland's
STCCHECK in CBT Tape file 321.

File # 321 COBOL Analyzer from Roland Schiradin  post processor 

http://www.cbttape.org/ftp/cbt/CBT321.zip

http://www.cbttape.org

 STCCHECK  This program check if a started Task is already 
  active. This avoid abend U1800 if a operator 
  start the same CICS again. Please note this works
  only on the same MVS-image, I'll add sometimes
  code to check the SYSPLEX.   
   
  //***  EXECUTE CICS  
  //*  
  //STCCHECK EXEC PGM=STCCHECK,PARM='DCCA201'  
  //SYSPRINT  DD SYSOUT=*  
  //SYSUDUMP  DD SYSOUT=D  
  //*  
  //DCCSTRT IF (STCCHECK.RC = 0) THEN  
  //DCCA201 EXEC PROC=DCICSA   
  //EDCCSTRT ENDIF 
 
 rc = 0   DCCA201 is not active   
 rc not 0 DCCA201 is active  

Best Regards, 

Sam Knutson, GEICO 
Performance and Availability Management 
mailto:[EMAIL PROTECTED] 
(office)  301.986.3574 

Agnes' Law: Almost everything in life is easier to get into than out of.

   

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Carl Edwards
Sent: Thursday, May 25, 2006 2:32 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Determine what is running on system

Is anyone aware of a means by which I can determine if a specific
'process' is running. For example, I would like to determine, in a
program,  if DB2 is active, or any other process for that matter. 
TIA

This email/fax message is for the sole use of the intended
recipient(s) and may contain confidential and privileged information.
Any unauthorized review, use, disclosure or distribution of this
email/fax is prohibited. If you are not the intended recipient, please
destroy all paper and electronic copies of the original message.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Determine what is running on system

2006-05-25 Thread Knutson, Sam
Strike that reverse it...  You actually want the reverse of STCCHECK and
it wouldn't be hard to adapt it but I also notice you might need to
remove a restriction in it that forces a minimum parm length that is
probably site specific.  Making these small checks to STCHECK would be
fun and easy but you want something off the rack I expect.

Instead the REXX exec I was thinking of before but didn't have handy I
dug up and it is Mark's JOBCHECK.

http://home.flash.net/~mzelden/mvsutil.html

http://home.flash.net/~mzelden/mvsfiles/jobcheck.txt
http://home.flash.net/~mzelden/mvsfiles/jobchkrx.txt

Also in CBT File 434 

File # 434 Mark Zelden collection of Utilities and execs NEW

http://www.cbttape.org/ftp/updates/CBT434.zip

http://www.cbttape.org

Best Regards, 

Sam Knutson, GEICO 
Performance and Availability Management 
mailto:[EMAIL PROTECTED] 
(office)  301.986.3574 

When I am right, no one remembers. When I am wrong, no one forgets,
Doug Harvey, a professional baseball umpire, once lamented.
   

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Carl Edwards
Sent: Thursday, May 25, 2006 2:32 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Determine what is running on system

Is anyone aware of a means by which I can determine if a specific
'process' is running. For example, I would like to determine, in a
program,  if DB2 is active, or any other process for that matter. 
TIA

This email/fax message is for the sole use of the intended
recipient(s) and may contain confidential and privileged information.
Any unauthorized review, use, disclosure or distribution of this
email/fax is prohibited. If you are not the intended recipient, please
destroy all paper and electronic copies of the original message.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Determine what is running on system

2006-05-25 Thread Carl Edwards
Sam
Thanks;
This looks like it will do the trick

--- Knutson, Sam [EMAIL PROTECTED] wrote:

 Strike that reverse it...  You actually want the
 reverse of STCCHECK and
 it wouldn't be hard to adapt it but I also notice
 you might need to
 remove a restriction in it that forces a minimum
 parm length that is
 probably site specific.  Making these small checks
 to STCHECK would be
 fun and easy but you want something off the rack I
 expect.
 
 Instead the REXX exec I was thinking of before but
 didn't have handy I
 dug up and it is Mark's JOBCHECK.
 
 http://home.flash.net/~mzelden/mvsutil.html
 
 http://home.flash.net/~mzelden/mvsfiles/jobcheck.txt
 http://home.flash.net/~mzelden/mvsfiles/jobchkrx.txt
 
 Also in CBT File 434 
 
 File # 434 Mark Zelden collection of Utilities and
 execs NEW
 
 http://www.cbttape.org/ftp/updates/CBT434.zip
 
 http://www.cbttape.org
 
 Best Regards, 
 
 Sam Knutson, GEICO 
 Performance and Availability
 Management 
 mailto:[EMAIL PROTECTED] 
 (office)  301.986.3574 
 
 When I am right, no one remembers. When I am wrong,
 no one forgets,
 Doug Harvey, a professional baseball umpire, once
 lamented.

 
 -Original Message-
 From: IBM Mainframe Discussion List
 [mailto:[EMAIL PROTECTED] On
 Behalf Of Carl Edwards
 Sent: Thursday, May 25, 2006 2:32 PM
 To: IBM-MAIN@BAMA.UA.EDU
 Subject: Determine what is running on system
 
 Is anyone aware of a means by which I can determine
 if a specific
 'process' is running. For example, I would like to
 determine, in a
 program,  if DB2 is active, or any other process for
 that matter. 
 TIA
 
 This email/fax message is for the sole use of the
 intended
 recipient(s) and may contain confidential and
 privileged information.
 Any unauthorized review, use, disclosure or
 distribution of this
 email/fax is prohibited. If you are not the intended
 recipient, please
 destroy all paper and electronic copies of the
 original message.
 

--
 For IBM-MAIN subscribe / signoff / archive access
 instructions,
 send email to [EMAIL PROTECTED] with the message:
 GET IBM-MAIN INFO
 Search the archives at
 http://bama.ua.edu/archives/ibm-main.html
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Determine what is running on system

2006-05-25 Thread Mark Zelden
On Thu, 25 May 2006 11:32:24 -0700, Carl Edwards [EMAIL PROTECTED] wrote:

Is anyone aware of a means by which I can determine if
a
specific 'process' is running. For example, I would
like to determine, in a program,  if DB2 is active, or
any other process for that matter.
TIA


If you change the word process to JOBNAME/STC/TSU etc., then I have
to programs on my web site / CBT file 434.  Both have the same function
but one is assembler and the other is REXX  - no assembly reqired. :-).  

Look for JOBCHECK. URL below. The CBT also contains other similar programs.

Cheers,

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group
mailto: [EMAIL PROTECTED]
Systems Programming expert at http://expertanswercenter.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Sam the man! (was Re: Determine what is running on system)

2006-05-25 Thread Mark Zelden
Knutson, Sam [EMAIL PROTECTED] wrote:

There are a number of programs and even REXX execs that have been
written to do this but the first one that I find handy is Roland's
STCCHECK in CBT Tape file 321.

Instead the REXX exec I was thinking of before but didn't have handy I
dug up and it is Mark's JOBCHECK.

Also in CBT File 434

File # 434 Mark Zelden collection of Utilities and execs NEW


Sam, you are like a walking encyclopedia of the CBT!  Just proves
what a great resource you and the CBT are.   How many times have you or 
someone else replied to a query with see CBT file xxx.

I just want to publicly acknowledge / thank you and Sam Golob for
all the work you do on the CBT for the user community.

I'll buy ya a beer or 2 in Baltimore!  :-)

Best regards,

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group
mailto: [EMAIL PROTECTED]
Systems Programming expert at http://expertanswercenter.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Sam the man! (was Re: Determine what is running on system)

2006-05-25 Thread John P Kalinich
Mark Zelden wrote:

I just want to publicly acknowledge / thank you (Sam Knutson) and Sam 
Golob for
all the work you do on the CBT for the user community.

I'll buy ya a beer or 2 in Baltimore!  :-)

I second that!

Regards,
John Kalinich
Computer Sciences Corp

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: sshd ported tools logging

2006-05-25 Thread Joel Ivey
Is that different from /tmp/sshd.stderr ??


On Thu, 25 May 2006 13:32:39 -0500, Rugen, Len [EMAIL PROTECTED] wrote:

I don't seem to have any /var/log files on z/OS 1.4.  Does sshd log on
z/os or have I missed something?  I'm interested in failed login
attempts just to see if brute force login attempts are being made.  

 

Thanks


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: sshd ported tools logging

2006-05-25 Thread Rugen, Len
That file is null after both invalid users, invalid password and
successful login.  I think there is a RACF failure record, but that is
nearly post-mortem when you have an active attack.  



-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Joel Ivey
Sent: Thursday, May 25, 2006 3:07 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: sshd ported tools logging

Is that different from /tmp/sshd.stderr ??


On Thu, 25 May 2006 13:32:39 -0500, Rugen, Len [EMAIL PROTECTED]
wrote:

I don't seem to have any /var/log files on z/OS 1.4.  Does sshd log on
z/os or have I missed something?  I'm interested in failed login
attempts just to see if brute force login attempts are being made.  

 

Thanks


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html
===
=

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: sshd ported tools logging

2006-05-25 Thread Joel Ivey
It's been awhile since I've played with it, but have you reviewed LogLevel
and SyslogFacility in the sshd_config section of the manual, and also IP
conifg manual?You can set up logging to the syslogd process.HTH

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Sam the man! (was Re: Determine what is running on system)

2006-05-25 Thread Ed Finnell
 
In a message dated 5/25/2006 2:59:44 P.M. Central Standard Time,  
[EMAIL PROTECTED] writes:

I just  want to publicly acknowledge / thank you and Sam Golob for
all the work you  do on the CBT for the user community.





With a wink and nod to Arnie Cashingino and Connecticut Bank for
indulging us for so many years. Ever wonder why IBM never jumped on this  bad 
wagon? Maybe Phil's legal buddies couldn't come up with suitable  disclaimer. 
Surely they've stumbled across many of the same issues and  deficiencies...oh 
well. Nice long SAFE Holiday weekend for  everyone.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


SMP CSI Out Of Space.

2006-05-25 Thread Howard Rifkind
The SMP CSI run out of space and I repro'ed it out to a flat dataset which took 
about 340 cylinders on a 3390-3.
   
  The original allocation of the CSI was 25 cylnders primary and 2 secondary.
   
  Will the 340 cylinders of flat file space translate in to how many I will 
need when I rebuild and load the new CSI vsam cluster?  Or will it be more or 
less.  
   
  Any ideas regarding this will be appreciated.
   
  Thanks.


-
How low will we go? Check out Yahoo! Messenger’s low  PC-to-Phone call rates.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Fw: fewer/faster vs more/slower in same plex

2006-05-25 Thread Ted MacNEIL
OS/390 2.10.  You are confusing the ability to have some CICS regions (usually 
test) managed by velocity goals and some by response goals. 

I knew in the back of what passes for my mind, that I didn't have it quite 
right.

But, that's where the no choice came from.
We had to have response goals for production CICS because of the differences in 
processor speeds.
And, at the time, we couldn't use I/O as part of the velocity equation.
Disconnect time still counted as part of using!

-
-teD

300,000 Kilometres per Second
Not only is it a good idea!
It's the LAW!!!  

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IGGPRE00

2006-05-25 Thread Ruegsegger, Jeff
Sam,
Does an MLPA mod get control over a module in PLPA(ie sys1.lpalib) ?

Jeff Ruegsegger


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Knutson, Sam
Sent: Tuesday, May 23, 2006 5:13 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: IGGPRE00

Hi Jeff,

See if perhaps you are loading your IGGPRE00 into MLPA.  In
SYS1.PARMLIB(IEALPA00) you might have something like this 
   
INCLUDE LIBRARY(my.LINKLIB) MODULES(IGGPRE00) 

Best Regards, 

Sam Knutson, GEICO 
Performance and Availability Management 
mailto:[EMAIL PROTECTED] 
(office)  301.986.3574 

The most likely way for the world to be destroyed, most experts agree,
is by accident. That's where we come in; we're computer professionals.
We cause accidents. - Nathaniel Borenstein   



We use IGGPRE00 to control allocations not managed by SMS.  My
sys1.lpalib contains a dummy IGGPRE00 as shipped by IBM.  One of my
linklisted libraries contains my modified IGGPRE00 code and is specified
in 
IEALPAxx.   In reading the DFSMS Installations exit manual, it states
that 
IGGPRE00 should reside in SYS1.LPALIB or be Link-edited into linklib.
Can someone explain how/why my IGGPRE00 is even getting picked up during
DADSM processing?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: SMP CSI Out Of Space.

2006-05-25 Thread Pommier, Rex R.
How many cylinders is/was the full CSI?  I would use that as a starting
point for allocating the new one instead of the size of the flat file
offload.  Do you expect to see a lot of new software being installed
which would cause the CSI to grow quickly or do you see it as relatively
static?  I would build the new CSI with a primary extent roughly the
size of the full CSI tweaking the size based on the freespace parameters
you have defined.  Set some reasonable subset of the primary size for
the secondary allocations.

Rex

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Howard Rifkind
Sent: Thursday, May 25, 2006 4:02 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: SMP CSI Out Of Space.


The SMP CSI run out of space and I repro'ed it out to a flat dataset
which took about 340 cylinders on a 3390-3.
   
  The original allocation of the CSI was 25 cylnders primary and 2
secondary.
   
  Will the 340 cylinders of flat file space translate in to how many I
will need when I rebuild and load the new CSI vsam cluster?  Or will it
be more or less.  
   
  Any ideas regarding this will be appreciated.
   
  Thanks.



--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IGGPRE00

2006-05-25 Thread Pommier, Rex R.
I'm not Sam, but yes, modules in the MLPA get used instead of a
same-named module in the LPA.  The LPA search order is FLPA, MLPA, and
finally LPA.

Rex

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Ruegsegger, Jeff
Sent: Thursday, May 25, 2006 4:48 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: IGGPRE00


Sam,
Does an MLPA mod get control over a module in PLPA(ie sys1.lpalib) ?

Jeff Ruegsegger


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Knutson, Sam
Sent: Tuesday, May 23, 2006 5:13 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: IGGPRE00

Hi Jeff,

See if perhaps you are loading your IGGPRE00 into MLPA.  In
SYS1.PARMLIB(IEALPA00) you might have something like this 
   
INCLUDE LIBRARY(my.LINKLIB) MODULES(IGGPRE00) 

Best Regards, 

Sam Knutson, GEICO 
Performance and Availability Management 
mailto:[EMAIL PROTECTED] 
(office)  301.986.3574 

The most likely way for the world to be destroyed, most experts agree,
is by accident. That's where we come in; we're computer professionals.
We cause accidents. - Nathaniel Borenstein   



We use IGGPRE00 to control allocations not managed by SMS.  My
sys1.lpalib contains a dummy IGGPRE00 as shipped by IBM.  One of my
linklisted libraries contains my modified IGGPRE00 code and is specified
in 
IEALPAxx.   In reading the DFSMS Installations exit manual, it states
that 
IGGPRE00 should reside in SYS1.LPALIB or be Link-edited into linklib.
Can someone explain how/why my IGGPRE00 is even getting picked up during
DADSM processing?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IGGPRE00

2006-05-25 Thread Imbriale, Donald (Exchange)
LPA is searched in this order:

a.  Dynamic LPA modules, as specified in PROGxx members 
b.  Fixed LPA (FLPA) modules, as specified in IEAFIXxx members 
c.  Modified LPA (MLPA) modules, as specified in IEALPAxx members 
d.  Pageable LPA (PLPA) modules, loaded from libraries specified in
LPALSTxx or PROGxx

From Init  Tuning Reference. 

Don Imbriale

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf
Of Ruegsegger, Jeff
Sent: Thursday, May 25, 2006 5:48 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: IGGPRE00

Sam,
Does an MLPA mod get control over a module in PLPA(ie sys1.lpalib) ?

Jeff Ruegsegger




***
Bear Stearns is not responsible for any recommendation, solicitation, 
offer or agreement or any information about any transaction, customer 
account or account activity contained in this communication.
***

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IGGPRE00

2006-05-25 Thread Ruegsegger, Jeff
Don,
Many Thanks sir.  I forgot to look in inittuning ref.   Have you ever
used ISRFIND to locate LPA modules?  I use it regularly to locate where
mods are executed from and normally when a module is in MLPA,  ISRFIND,
sees/finds it.  In this case however I do not see the MLPA module...only
the PLPA version.  Perhaps ISRFIND is quirky.  What do you use to locate
MLPA modules, simply rely on IEALPAxx?

Regards,
Jeff
Jeff Ruegsegger


LPA is searched in this order:

a.  Dynamic LPA modules, as specified in PROGxx members 
b.  Fixed LPA (FLPA) modules, as specified in IEAFIXxx members 
c.  Modified LPA (MLPA) modules, as specified in IEALPAxx members 
d.  Pageable LPA (PLPA) modules, loaded from libraries specified in
LPALSTxx or PROGxx

From Init  Tuning Reference. 

Don Imbriale

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf
Of Ruegsegger, Jeff
Sent: Thursday, May 25, 2006 5:48 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: IGGPRE00

Sam,
Does an MLPA mod get control over a module in PLPA(ie sys1.lpalib) ?

Jeff Ruegsegger




***
Bear Stearns is not responsible for any recommendation, solicitation, 
offer or agreement or any information about any transaction, customer 
account or account activity contained in this communication.
***

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IGGPRE00

2006-05-25 Thread Ruegsegger, Jeff
Already got that info from another post.
Thanks Rex!
Regards, 
Jeff



-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Pommier, Rex R.
Sent: Thursday, May 25, 2006 2:56 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: IGGPRE00

I'm not Sam, but yes, modules in the MLPA get used instead of a
same-named module in the LPA.  The LPA search order is FLPA, MLPA, and
finally LPA.

Rex


Sam,
Does an MLPA mod get control over a module in PLPA(ie sys1.lpalib) ?

Jeff Ruegsegger


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Knutson, Sam
Sent: Tuesday, May 23, 2006 5:13 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: IGGPRE00

Hi Jeff,

See if perhaps you are loading your IGGPRE00 into MLPA.  In
SYS1.PARMLIB(IEALPA00) you might have something like this 
   
INCLUDE LIBRARY(my.LINKLIB) MODULES(IGGPRE00) 

Best Regards, 

Sam Knutson, GEICO 
Performance and Availability Management 
mailto:[EMAIL PROTECTED] 
(office)  301.986.3574 

The most likely way for the world to be destroyed, most experts agree,
is by accident. That's where we come in; we're computer professionals.
We cause accidents. - Nathaniel Borenstein   



We use IGGPRE00 to control allocations not managed by SMS.  My
sys1.lpalib contains a dummy IGGPRE00 as shipped by IBM.  One of my
linklisted libraries contains my modified IGGPRE00 code and is specified
in 
IEALPAxx.   In reading the DFSMS Installations exit manual, it states
that 
IGGPRE00 should reside in SYS1.LPALIB or be Link-edited into linklib.
Can someone explain how/why my IGGPRE00 is even getting picked up during
DADSM processing?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IGGPRE00

2006-05-25 Thread Edward Jaffe

Ruegsegger, Jeff wrote:

... What do you use to locate
MLPA modules, simply rely on IEALPAxx?
  


I believe the official interface is AMBLIST: 
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/iea2v161/15.1.7


--
Edward E Jaffe
Phoenix Software International, Inc
5200 W Century Blvd, Suite 800
Los Angeles, CA 90045
310-338-0400 x318
[EMAIL PROTECTED]
http://www.phoenixsoftware.com/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: A little more insight on the Java strangeness I'm encountering

2006-05-25 Thread Hunkeler Peter (KIUB 34)
shell should NOT even attempt to run the file, what is with 
that? That is WRONG, WRONG, WRONG!

Here is what I get on z/OS V1.7. I can't get the shell to
execute the java class nor the source file when the X bit is not
set:

A @ S1(z/OS V17) CH.IBM-1148: /u/a $ ls -l Hello*
-rw-r--r--   1 A  OMVSGRP1 425 Mai 24 08:30 HelloWorld.class
-rw-r--r--   1 A  OMVSGRP1 112 Mai 24 08:30 HelloWorld.java

A @ S1(z/OS V17) CH.IBM-1148: /u/a $ HelloWorld.java
HelloWorld.java: cannot execute

A @ S1(z/OS V17) CH.IBM-1148: /u/a $ HelloWorld.class
HelloWorld.class: cannot execute

A @ S1(z/OS V17) CH.IBM-1148: /u/a $ HelloWorld
HelloWorld: FSUM7351 not found

A @ S1(z/OS V17) CH.IBM-1148: /u/a $ ./HelloWorld
./HelloWorld: FSUM7351 not found

A @ S1(z/OS V17) CH.IBM-1148: /u/a $ ./HelloWorld.class
./HelloWorld.class: FSUM9209 cannot execute: reason code = 5b4c0002:
EDC5111I Permission denied.

A @ S1(z/OS V17) CH.IBM-1148: /u/a $ ./HelloWorld.java
./HelloWorld.java: FSUM9209 cannot execute: reason code = 5b4c0002:
EDC5111I Permission denied. 


On what release do you see the wrong behaviour?

Peter Hunkeler
CREDIT SUISSE

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html