IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Timothy Sipples
IBM has a significant System z-related announcement to make on October 21,
2008. Here's the meat of the information (and Webcast link):

New IBM System z Technology: Smart, Cool  Affordable

Webcast on Tuesday, October 21, 2008
at 11:00 a.m. New York time

Register at: http://www.on24.com/clients/ibm/117767

There is new System z technology on the horizon that could change the way
your organization thinks about mainframes. Technology that delivers the
granular scalability, flexibility, and resiliency you need -- at the lower
capacity entry point you want. Its advanced technology fights old myths and
perceptions – it’s not just for banks and insurance companies

- - - - -
Timothy Sipples
IBM Consulting Enterprise Software Architect
Based in Tokyo, Serving IBM Japan / Asia-Pacific
E-Mail: [EMAIL PROTECTED]

Re: A Security SubSystem question

2008-10-16 Thread Binyamin Dissen
On Wed, 15 Oct 2008 00:14:44 -0400 Tony Harminc [EMAIL PROTECTED] wrote:

:2008/10/14 Scott Ford [EMAIL PROTECTED]:

: I am in the process of writing an Assembler routine to see if RACF, ACF2 or 
Top-Secret are
: running on z/OS. I am confused about where I should find the information. I 
have tried looking at
: the RCVT ( desct = ichprcvt ) because I have noticed that on RACF the 1st 
four bytes are set to
: RCVT and on ACF2 and Top-Secret it is different.

:  USING   RCVT, R9
:  L   R4,RCVTID
:  CLC  0(4,R4),=C'RCVT'
:  BE   FOUND

:This is fine, if what you want is to determine the primary security
:system. But both TSS and ACF2 have compatibility modes, and you could
:find yourself in a situation where RACF *and* one of the other systems
:are running, and willing to accept calls using that security system's
:own interface, rather than SAF.

1. Actually, it isn't fine, since RCVTID does not contain a pointer - it
contains a EBCDIC value.

2. Do either acf2 or Top Secret work with RACF active?

:In that case, ACF2 (and I *think* TSS) has its own macro for finding
:the security system's anchor, even if the RCVT says RCVT.

Bigger issue is why do you care which product is running? All should be SAF
compliant.

--
Binyamin Dissen [EMAIL PROTECTED]
http://www.dissensoftware.com

Director, Dissen Software, Bar  Grill - Israel


Should you use the mailblocks package and expect a response from me,
you should preauthorize the dissensoftware.com domain.

I very rarely bother responding to challenge/response systems,
especially those from irresponsible companies.

--
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: D/T2098 PROCESSOR ?

2008-10-16 Thread Roger Bowler
Mark Zelden wrote:
APAR Identifier .. IO09096  Last Changed  08/10/13
EREP SUPPORT NEW FUNCTION
EREP NEEDS TO SUPPORT NEW EREP RECORD FOR D/T2098 PROCESSOR.
 
John Chase wrote:
Perhaps the z10-BC is about to be born?

In another thread, Timothy Sipples wrote:
IBM has a significant System z-related announcement to make on October 21
Register at: http://www.on24.com/clients/ibm/117767
There is new System z technology on the horizon that could change the 
way your organization thinks about mainframes. Technology that delivers
the granular scalability, flexibility, and resiliency you need -- at the lower
capacity entry point you want.

It sounds like the z10 BC is imminent.

Regards,
Roger Bowler

--
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: question about Oracle on the mainframe

2008-10-16 Thread R.S.

David Crayford wrote:
[...]
SAP Business Suite is the same, no longer being ported to z/OS. It seems 
that z/Linux is becoming a very strategic platform for both vendors and 
IBM.


Or mainframe is less strategic for both...
(justification: it seems to be cheaper to use AIX on pSeries)

--
Radoslaw Skorupka
Lodz, Poland


--
BRE Bank SA
ul. Senatorska 18
00-950 Warszawa
www.brebank.pl

Sd Rejonowy dla m. st. Warszawy 
XII Wydzia Gospodarczy Krajowego Rejestru Sdowego, 
nr rejestru przedsibiorców KRS 025237

NIP: 526-021-50-88
Wedug stanu na dzie 01.01.2008 r. kapita zakadowy BRE Banku SA  wynosi 
118.642.672 zote i zosta w caoci wpacony.

--
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



How to insert records using EXECIO

2008-10-16 Thread P.Sabarish Kannan
Hi

 I have a requirement to insert some records in the beginning of a file where 
already some lines are existing . i tried using DISKW using MOD , but they are 
appending to the end. How do we insert in the beginning? I am using REXX for 
this program.

Thanks in advance

Sabarish

--
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: How to insert records using EXECIO

2008-10-16 Thread Veilleux, Jon L
You can read the whole file into a stem variable, put the lines you want
to insert into a stack, and then loop though the first stem variable to
append the values to the stack and then write the file back.

/* rexx */   
 
ADDRESS TSO  
ALLOC FI(TEMPNAME) DSN(your_file_name) SHR   
'EXECIO * DISKR TEMPNAME (STEM CARD.   FINIS'
Do y=1 to 3  
outcard.y = your_new_records

End  
Do x = 1 to card.0   
Y=y+1
outcard.y=card.x 
End  
Push ''  
'EXECIO 'y' DISKW TEMPNAME (stem outcard. FINIS' 

Jon L. Veilleux 
[EMAIL PROTECTED] 
(860) 636-2683 


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of P.Sabarish Kannan
Sent: Thursday, October 16, 2008 7:22 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: How to insert records using EXECIO

Hi

 I have a requirement to insert some records in the beginning of a file
where already some lines are existing . i tried using DISKW using MOD ,
but they are appending to the end. How do we insert in the beginning? I
am using REXX for this program.

Thanks in advance

Sabarish

--
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

This e-mail may contain confidential or privileged information. If
you think you have received this e-mail in error, please advise the
sender by reply e-mail and then delete this e-mail immediately.
Thank you. Aetna   

--
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: How to insert records using EXECIO

2008-10-16 Thread Walt Farrell
On Thu, 16 Oct 2008 06:22:27 -0500, P.Sabarish Kannan
[EMAIL PROTECTED] wrote:

 I have a requirement to insert some records in the beginning of a file where
already some lines are existing . i tried using DISKW using MOD , but they are
appending to the end. How do we insert in the beginning? I am using REXX for
this program.

As far as I know you can not insert records into an existing file using
EXECIO.  You can append to the end, as you noticed.

I would write the new records into a new file and then copy the existing
file and append its records to that new file.   After that, the exec could
then delete the existing file and rename the new one to the old name if needed.

There is an unsafe alternative: you could read all of the existing data into
REXX variables, then write the new records to the beginning of the existing
file, and then write the data from the variables after that new data. 
However, if an error occurs before you finish the writing then you will have
lost the data in your file.

-- 
  Walt Farrell

--
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: How to insert records using EXECIO

2008-10-16 Thread Hunkeler Peter (KIUK 3)
I have a requirement to insert some records in the beginning of a file 
where already some lines are existing . i tried using DISKW using MOD, 
but they are appending to the end. How do we insert in the beginning? 
I am using REXX for this program.

There is no direct way to insert data into a sequential data set,
neither
at the beginning nor inbetween. You need to re-write the dataset with
all 
the new and current records in the desired sequence.

If the dataset is not too big, you can read it into storage using EXECIO
then write everything back out with multiple EXEXIOs. You can also use
one of various ways to concatenate the input datasets and copy them
into a new output dataset.

-- 
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



Re: question about Oracle on the mainframe

2008-10-16 Thread John P Kalinich
The reason I heard why Oracle 10g was the last release supported on z/OS
was that IBM did not have any plans to update their clandestine Media
Manager to 64-bit addressing.

Regards,
John K

Bret Hoesly of the IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU
wrote on 10/15/2008 03:37:07 PM:

 Yes, Oracle 10g is the last release that will run under z/OS on a
 mainframe.  We just recently upgraded to v10.2.0.3.0 and are running
 it under z/OS v1.9.  Oracle v10.2 is the terminal release for z/OS
 and premier support for it ends in July 2012, although extended
 support after that indefinitely for a price.  If you ever want to go
 to v11, it can't be done on the mainframe unless you run it, as
 others have mentioned, under a z/linux-z/VM partition (which I'm
 hoping we'll get to try out sometime).

 HTH,
 Bret Hoesly

 -Original Message-
 From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
 Behalf Of John McKown
 Sent: Wednesday, October 15, 2008 3:11 PM
 To: IBM-MAIN@BAMA.UA.EDU
 Subject: Re: question about Oracle on the mainframe

 On Wed, 15 Oct 2008 13:08:12 -0700, Kurt Eastwood [EMAIL PROTECTED]
wrote:

 Rich and John and anyone else who wants to respond,
 
 Are you saying:
 
 Oracle up to release 10 will run under z/OS but Oracle about release 10
 will not run under z/OS but will run under z/Linux running under z/OS?
 
 Kurt

 That is my understanding. z/OS goes up to rel 10 only. z/Linux is still
 fully supported by the newer releases as are the other UNIX type boxes. I
 guess z/OS UNIX is just different enough to require too much porting for
the
 demand.

 --
 John

--
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: question about Oracle on the mainframe

2008-10-16 Thread Jim Marshall
Oracle on the mainframe. Here are a few highlights done here

1. Have Oracle DB on z/OS but it is functionally stablized in the 31 bit mode.

2. Have z/VM LPAR  Virtual Linux systems:
a. Oracle DB in 64 bit mode which use Websphere Application Server 
running on another Virtual Linux.
b. Oracle DB in 64 bit mode and Oracle Application Server
c. DB2 in 64 bit mode with Websphere Application Server  
  
3. Another variation has Oracle DB in 64 bit mode in a Virtual Linux Server on 
the z/VM LPAR with the application running in Websphere in a z/OS Parallel 
Sysplex. 

4. Consider Oracle licenses are the same for a 2-Core Server (or laptop) 
equates to 1-IFL (0.50 Intel Core = 1-IFL) on 
z800/890/900/990/z9BC/z9EC/z10.  If you are talking about AIX/UNIX, then it 
is 0.75 Core = 1-IFL.

You should get onto a z/VM talklist where they have adopted zLinux under 
z/VM with a passion. You can contact me offlist for some material I have 
written over the last few years concerning what you would need and the 
choices for support, etc. QUITE reasonable in cost when you factor in what 
an IFL can do with all those Virtual Penguins running things like Oracle, DB2, 
Websphere, Firewalls (free), Routers (free) , z/VM VLANs (free), Switches 
(free) and miles and miles of FAST free virtual cabling not to mention all 
those 
virtual twist-ties to organize things. 

jim  

--
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: question about Oracle on the mainframe

2008-10-16 Thread David Crayford

R.S. wrote:

David Crayford wrote:
[...]
SAP Business Suite is the same, no longer being ported to z/OS. It 
seems that z/Linux is becoming a very strategic platform for both 
vendors and IBM.


Or mainframe is less strategic for both...
(justification: it seems to be cheaper to use AIX on pSeries)



Maybe, but if you're already running SAP on z/OS and have legacy apps 
running DB2 then z/Linux maybe the right choice for QOS. I'm not sure, 
but you make a good point. The high end *nix boxes have the grunt and 
price points to be very attractive to companies running ERP...


15 years ago I worked on one of the first mainframe DB2 data warehouse 
systems in the UK. We used SP2 AIX boxes for the mining, and they were 
very quick back then. I suppose it all depends on the z10 and how IBM 
prices them... They seem to be making an effort to bring to TCO down.


--
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: D/T2098 PROCESSOR ?

2008-10-16 Thread John McKown
On Thu, 16 Oct 2008 03:46:20 -0500, Roger Bowler [EMAIL PROTECTED] wrote:

Mark Zelden wrote:
APAR Identifier .. IO09096  Last Changed  08/10/13
EREP SUPPORT NEW FUNCTION
EREP NEEDS TO SUPPORT NEW EREP RECORD FOR D/T2098 PROCESSOR.

John Chase wrote:
Perhaps the z10-BC is about to be born?

In another thread, Timothy Sipples wrote:
IBM has a significant System z-related announcement to make on October 21
Register at: http://www.on24.com/clients/ibm/117767
There is new System z technology on the horizon that could change the
way your organization thinks about mainframes. Technology that delivers
the granular scalability, flexibility, and resiliency you need -- at the lower
capacity entry point you want.

It sounds like the z10 BC is imminent.

Regards,
Roger Bowler


Perhaps something to go into the niche which was supported by the Flex-ES
system? In that case, some sort of internal DASD would be a requirement.

--
John

--
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



TSSO Error TSSA305E

2008-10-16 Thread Morris, Carey
I'm trying to utilize the TSSO AOF table to kick off a TSSO clist when we get 
the IKT005I TCAS IS INITIALIZED during TSO initialization.  The AOF table 
entry looks something like this:

TABENTRY MSG=IKT005I,ACTION=OSCMD,ECHO=YES,TEXT='#TSOUP'

TSSO recognizes the message but instead of executing the clist it issues the 
message TSSA305E TSSO COMMANDS MAY NOT BE ISSUED FROM THIS ENVIRONMENT.  I 
thought this might have something to do with the console changes in z/OS 1.9 so 
I tried it on our old z/OS 1.7 rescue system with the same results.  I was able 
to get around the problem by branching around a test for the contents of 
SSCMCNID in module TSSOSS10:

CLC   SSCMCNID,=F'0'
BNE   STAT4

I'm not familiar with the rules concerning when SSCMCNID should be non-zero so 
I don't know if this is a legitimate fix in TSSOSS10 or if I'm doing something 
else wrong in setting up TSSO.

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: Tiered storage and FATA drives

2008-10-16 Thread R.S.

Marc Van Hoof wrote:

The 16K blocksize is an HSM limitation on writing data to a tapedrive.
We do have drives (STK 9840C) that can transfer 30 (uncompressed) 
to 70 Mb/s (compressed).

In practice we see HSM putting  500 I/0’s sec / 7,8MB/sec on a drive.
Remote over an distance of 40 Km over DWDM it is less 360 I/O’s sec / 
5,6MB/sec.


16k is *not* a limitation in HSM. HSM uses DSS under the cover, which 
uses blocksize up to 64kB.
From the other hand maximum transfer depends on compression ratio. 
However in real life you cannot choose it.


--
Radoslaw Skorupka
Lodz, Poland


--
BRE Bank SA
ul. Senatorska 18
00-950 Warszawa
www.brebank.pl

Sd Rejonowy dla m. st. Warszawy 
XII Wydzia Gospodarczy Krajowego Rejestru Sdowego, 
nr rejestru przedsibiorców KRS 025237

NIP: 526-021-50-88
Wedug stanu na dzie 01.01.2008 r. kapita zakadowy BRE Banku SA  wynosi 
118.642.672 zote i zosta w caoci wpacony.

--
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: Minimum Available Central Storage Frames (Average %) Question

2008-10-16 Thread Ron Hawkins
Mohd,

The simple answer is that unreferenced pages will be stolen so that the
available frame queue does not go to zero. However the ways and means with
which pages chosen to be moved to and from the Page datasets is rather more
complex than that statement. 

I suggest you read the Initialization and Tuning guide to get an
understanding of how processor resources are managed.

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/iea2e151/CONTENTS
?SHELF=EZ2ZO10L.bksDT=20080119071214#3.4.2.4

You may also want to look at conference proceedings from CMG and Share for
information. Memory management is one area where z/OS is by far the
consummate Operating System, and it would be good for you to understand why.

Ron



 -Original Message-
 From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
 Behalf Of Mohd Shahrifuddin

snip

 
 Any other suggestion is much appreciated
 
 Thanks in advance for all reply.
 
 --
 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: question about Oracle on the mainframe

2008-10-16 Thread R.S.

David Crayford wrote:
[...]
15 years ago I worked on one of the first mainframe DB2 data warehouse 
systems in the UK. We used SP2 AIX boxes for the mining, and they were 
very quick back then. I suppose it all depends on the z10 and how IBM 
prices them... 



They seem to be making an effort to bring to TCO down.

Well, at risk of going to new war I disagree. g
I don't see too much effort.
0.9 MSU is good thing to compete with second hand market.

The only thing I could consider as the effort are software tools, 
especially must have ones. IBM develops (or buys) many various tools 
IMHO not only to compete with large ISVs, but also to give customers 
real choice. Is CA-1 too expensive? Then choose RMM. Competition means 
lower prices even for those who stay with CA, BMC, others products.


We went far off original topic (but still about mainframes)
--
Radoslaw Skorupka
Lodz, Poland


--
BRE Bank SA
ul. Senatorska 18
00-950 Warszawa
www.brebank.pl

Sd Rejonowy dla m. st. Warszawy 
XII Wydzia Gospodarczy Krajowego Rejestru Sdowego, 
nr rejestru przedsibiorców KRS 025237

NIP: 526-021-50-88
Wedug stanu na dzie 01.01.2008 r. kapita zakadowy BRE Banku SA  wynosi 
118.642.672 zote i zosta w caoci wpacony.

--
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: How to insert records using EXECIO

2008-10-16 Thread Paul Gilmartin
On Thu, 16 Oct 2008 07:49:45 -0400, Veilleux, Jon L wrote:

You can read the whole file into a stem variable, ...

I feel old.

You really ought to have a fallback mechanism in case
can fails.

-- gil

--
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: How to insert records using EXECIO

2008-10-16 Thread Veilleux, Jon L
Actually, I remember installing Amdahl SP Assist so that our machines
could have more than 16MB of real storage. Times have changed..


Jon L. Veilleux 
[EMAIL PROTECTED] 
(860) 636-2683 


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Paul Gilmartin
Sent: Thursday, October 16, 2008 9:19 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: How to insert records using EXECIO

On Thu, 16 Oct 2008 07:49:45 -0400, Veilleux, Jon L wrote:

You can read the whole file into a stem variable, ...

I feel old.

You really ought to have a fallback mechanism in case can fails.

-- gil

--
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

This e-mail may contain confidential or privileged information. If
you think you have received this e-mail in error, please advise the
sender by reply e-mail and then delete this e-mail immediately.
Thank you. Aetna   

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread John McKown
Looks nice. Right now, from my perspective, the war is between the z and
Intel based servers. A less expensive z server might be nice. One problem
I've noticed is the lower cost of entry for Intel. Granted, once we are
comparing equally sized environments, the z come in well. But, too often,
the comparison is one z versus one Intel server. The z loses in this case.

Of course, this still does not address the horrendous cost of software for
the z, especially z/OS.

Comparing a z penguin farm (Linux) to an Intel penguin farm, the z would
almost always win. The only case where I can think of Intel beating z would
be in a compute intensive application. Also, z/VM still makes VMWare look
sick and immature.

--
John

--
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: Accessing LDAP data on other servers from z/OS

2008-10-16 Thread Andy Robertson
We got what we needed (which is not a lot) by adding SGLDEXEC to our
SYSPROC concatenation and using exec LDAPSRCH under ordinary TSO

Thanks to all for hints

**
This email is confidential and may contain copyright material of the John Lewis 
Partnership. 
If you are not the intended recipient, please notify us immediately and delete 
all copies of this message. 
(Please note that it is your responsibility to scan this message for viruses). 
Email to and from the
John Lewis Partnership is automatically monitored for operational and lawful 
business reasons.
**

John Lewis plc
Registered in England 233462
Registered office 171 Victoria Street London SW1E 5NN
 
Websites: http://www.johnlewis.com 
http://www.waitrose.com 
http://www.greenbee.com
http://www.johnlewispartnership.co.uk
 
**

--
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: Finding the correct IEASYSxx member

2008-10-16 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of Robert A. Rosenberg
 
 At 15:57 -0500 on 10/15/2008, Mark Zelden wrote about Re: Finding the
 correct IEASYSxx member:
 
 If you looked at the chapter on IEASYSxx (a logical place to start):
 
 http://publibz.boulder.ibm.com/cgi-
 bin/bookmgr_OS390/BOOKS/IEA2E290/49.0?SHELF=IEA2BK90DT=20080618072559
 
 You see things like:
 
 You can place system parameters in the IEASYS00 member or in one or
 more alternate system parameter lists
 
  (key word being OR)
 
 You can do one of the following to specify a  parameter list other
 than
 IEASYS00 for an IPL:
 
  (key phrase - other than IEASYS00)
 
 Specify one or more suffixes of alternate IEASYSxx members
 
  (alternate means - in place of - not in addition to)
 
 What part of unless you read all of it in my OP wasn't clear? g
 
 I think the problem is that there is no EXPLICATE statement that the
 Parameters in IEASYS00 are always used but if the Parameter is listed
 in another IEASYSxx that will OVERIDE the IEASYS00 version. Thus if
 IEASYS00 has 7 parms supplied and I request the use of IEASYS05
 (which has one parm which is also listed in IEASYS00 but with a
 different suffix) the final set of parms are the 6 non-overridden
 IEASYS00 suffixes and the one suffix from IEASYS05.

Though it appears mandatory that IEASYS00 exist, I cannot find it mandated 
anywhere that it must contain anything beyond, perhaps, a single asterisk in 
column 1 of its first, and perhaps only, record (i.e., a comment).  Every 
parm required for an IPL can be specified in an alternate IEASYSxx, right?

-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: How to insert records using EXECIO

2008-10-16 Thread Paul Gilmartin
On Thu, 16 Oct 2008 06:53:15 -0500, Walt Farrell wrote:

I would write the new records into a new file and then copy the existing
file and append its records to that new file.   After that, the exec could
then delete the existing file and rename the new one to the old name if needed.

And I'll recommend z/OS Unix files.  You can omit the delete, and the
POSIX rename guarantees that no other process will observe a window
during which the file doesn't exist, and there's no need for an ENQ
with the possible lockout.  (Might the same be true with PDSE members?)

There is an unsafe alternative: you could read all of the existing data into
REXX variables, then write the new records to the beginning of the existing
file, and then write the data from the variables after that new data.
However, if an error occurs before you finish the writing then you will have
lost the data in your file.

And it might actually be poorer performance.  Note that this is
effectively copying the original file to the page data set, then
the page data set back to the new file -- twice the disk I/O.

-- gil

--
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: Finding the correct IEASYSxx member

2008-10-16 Thread Mark Zelden
On Thu, 16 Oct 2008 08:29:55 -0500, Chase, John [EMAIL PROTECTED] wrote:

snip

Though it appears mandatory that IEASYS00 exist, I cannot find it mandated
anywhere that it must contain anything beyond, perhaps, a single asterisk in
column 1 of its first, and perhaps only, record (i.e., a comment).  Every
parm required for an IPL can be specified in an alternate IEASYSxx, right?


It can't just be a comment.  It must contain at least one blank line.  You 
might want just a CLPA in it (unless you use ckpt restart) as the only 
record.

Here is what mine looks like:

BROWSESYS1.PARMLIB(IEASYS00) - 01.00
 Command ===   
+1+2+3+4+5+6+---
* Top of Data **

 /* LIB: SYS1.PARMLIB(IEASYS00)   */
 /* DOC: DO NOT DELETE THIS MEMBER! IEASYS00 MUST BE PRESENT  */
 /*  SOMEWHERE IN THE LOGICAL PARMLIB CONCATENATION.  */
 /*  NOTE: DO NOT DELETE THE BLANK LINE AT THE TOP OF THIS MBR!   */
 /*   */
 /* IF IEASYS00 IS NOT PRESENT YOU WILL SEE THESE MESSAGE */
 /* EVEN IF YOU PROMPT THE OPERATOR AT IPL TIME WITH  */
 /*   IEA101A SPECIFY SYSTEM PARAMETERS FOR ..*/
 /*   */
 /*   IEA301I IEASYS00 NOT FOUND IN PARMLIB   */
 /*   IEA324I SYSP INPUT TERMINATED IN IEASYS00   */
 /*   IEA336A RESPECIFY PARAMETERS OR PRESS ENTER TO CANCEL   */
 /*   */
 /* YOU MAY RESPOND WITH SYSP=XX AT THIS POINT  */
 /*   */
 Bottom of Data 

--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
z/OS Systems Programming expert at http://expertanswercenter.techtarget.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: How to insert records using EXECIO

2008-10-16 Thread Paul Gilmartin
On Thu, 16 Oct 2008 09:25:51 -0400, Veilleux, Jon L wrote:

Actually, I remember installing Amdahl SP Assist so that our machines
could have more than 16MB of real storage. Times have changed..

Can Rexx keep stem variables above the bar nowadays?

-- gil

--
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: Finding the correct IEASYSxx member

2008-10-16 Thread Tom Marchant
On Wed, 15 Oct 2008 15:57:12 -0500, Mark Zelden wrote:

On Wed, 15 Oct 2008 15:26:00 -0500, Tom Marchant [EMAIL PROTECTED]
wrote:

On Wed, 15 Oct 2008 14:58:56 -0500, Mark Zelden wrote:

Yes, but don't be fooled by the IEASYS list specifying only 1 suffix if it
isn't 00.   The last time I checked, IEASYS00 was still required to be
somewhere in the concatenation  - even if you prompt with
IEA101A SPECIFY SYSTEM PARAMETERS FOR ...

Right.

The doc isn't completely clear on this unless you read all of it.

Seems clear to me.  For example,

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2E290/2.3.2?SHELF=IEA2BK90DT=20080618072559#HDRPSPPLX

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2E290/1.2.2?SHELF=IEA2BK90DT=20080618072559CASE=

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2E290/1.2.3?SHELF=IEA2BK90DT=20080618072559CASE=

There are other places in the manual where it is documented.




If you looked at the chapter on IEASYSxx (a logical place to start):

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2E290/49.0?SHELF=IEA2BK90DT=20080618072559

I did look there.  It is a logical place to start.  Another logical place to
look is the description of the LOADxx and IEASYMxx members, where the
IEASYSxx members are specified, or in the system commands manual, where the
SYSP reply at IPL time is documented.


You see things like:

You can place system parameters in the IEASYS00 member or in one or
more alternate system parameter lists

(key word being OR)

Well, you CAN place system parameters in IEASYS00 or an alternate.  Five
sentences later, it reads, Because IEASYS00 is read automatically 
When I read that it prompts me to look further for more information.


You can do one of the following to specify a  parameter list other than
IEASYS00 for an IPL:

(key phrase - other than IEASYS00)

Right.  If you don't specify another, the system reads *only* IEASYS00.


Specify one or more suffixes of alternate IEASYSxx members

You skipped one: Have the operator specify the suffix of an alternate
IEASYSxx member by replying SYSP=xx in response to the SPECIFY SYSTEM
PARAMETERS message (see SYSP in topic 49.1 for more information).

If you had followed the link to topic 49.1, you would see:

Specifies one or more alternate system parameter lists (IEASYSxx) that are
to be read by NIP in addition to IEASYS00.

And the next sentence after the one you quoted reads,

For further information about IEASYSxx parmlib members and system
initialization, see Step 2. Determine where to specify system parameters
in topic 2.3.2.

If you followed that link, you would see,

IEASYS00 is the default member; you can specify additional IEASYSxx members
as needed.

You would also see Table 7, which says clearly that no matter where you
specify IEASYSxx members, IEASYS00 is always used.


(alternate means - in place of - not in addition to)

Not necessarily.  Here it refers to an alternate place to specify system
parameters, which is correct.  It does not mean an alternate place



What part of unless you read all of it in my OP wasn't clear?  :-)

It was clear.  I think that the fact that IEASYS00 is always read is quite
clear even if you read considerably less than all of the doc.  Perhaps you
should submit a RCF.

-- 
Tom Marchant

--
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



Observations and Questions About Our Platform

2008-10-16 Thread Eric Bielefeld
Something hit me today after I called the IBM Support Center today.  If I 
remember correctly, the first question is: is this a Lenova product or 
something else.  Then they give a whole bunch of options, none of which is 
their bread and butter product - z/OS.  Finally, you reply all other requests, 
or some such thing.

Why does IBM have their first question for Lenova, when they don't even own the 
PC line anymore.  I'm not quite sure what IBM's relationship is with Lenova.  I 
gather they still market their products.  Also, why not a choice on the 1st or 
2nd menu for z/OS software, from what I understand still one of IBM's biggest 
moneymakers.  

This just struck me as odd considering the recent thread about Oracle and SAP 
software being stabilized for the mainframe, and not having any new releases of 
them.  What is happening?  When two major software players indicate they are 
getting out of the mainframe, this can't be good for our livelyhoods.  

In the last 2 and 1/2  years when I've been unemployed about half the time, I 
often thought about looking for some other type of employment.  Then, I think 
of having only half or less the income I can make as a sysprog, so I keep 
looking for sysprog jobs.  Fortuneatly, my current  job is very interesting, 
and there is a good chance I'll get hired permanently.  Then I won't have to 
worry about the employment thing anymore.  Also, if IBM is giving up on the 
mainframe, I'm close enough to retirement that it won't matter.  I'm sure it 
will carry on for 5 to 10 years or more even if IBM gives up on it.  

I really don't think IBM is giving up on the mainframe, but I wonder.  I've 
gone on too long already.

Eric

--
Eric Bielefeld
Systems Programmer
Washington University
St Louis, Missouri
314-935-3418

--
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: Finding the correct IEASYSxx member

2008-10-16 Thread Tom Marchant
On Wed, 15 Oct 2008 23:51:40 -0400, Robert A. Rosenberg wrote:

I think the problem is that there is no EXPLICATE statement that the
Parameters in IEASYS00 are always used but if the Parameter is listed
in another IEASYSxx that will OVERIDE the IEASYS00 version.

Perhaps you didn't see

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2E290/1.2.2?SHELF=IEA2BK90DT=20080618072559CASE=

Where it says,

The system always processes the IEASYS00 member first, regardless of where
you specify IEASYSxx suffixes. If the same parameter appears in both
IEASYS00 and a specified alternate IEASYSxx list, the value in the alternate
list overrides the value in IEASYS00.

-- 
Tom Marchant

--
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: Acessing LDAP data on other servers from z/OS

2008-10-16 Thread Bryan Klimek
Here is a simple rexx program using the GLDSRCH command. This of course 
assumes that the RACFID is part of the LDAP structure you wish to query.

/* Rexx */  

/***/
   
/* Sample Rexx program to read an LDAP directory by RACFID */   
/* and return all values.  */   
/***/
   

Arg id .
If id = '' Then id = Userid()   

base = 'o=Yourbase,c=us'/* This is the ldap base */ 
host = 'ldap.company.com'   /* This is the ldap host */ 

/* Generate a random DDNAME and alloc a temporary file. */  
/* The output of the LDAP search will be directed to this file. */  

dd = 'LDAP' || Random(999)  
Alloc f(dd) ds(Userid().dd.LIST) new delete delete spa(90,90) tr

/* Invoke LDAP to search by RACFID and return all values.*/
/* Re-direct the output (which normally goes to the terminal) to */
/* our temporary file that we allocated above.   */
   
'GLDSRCH /' -b base -h host ,  
 (racfid=id) DD:dd  
   
Execio * diskr dd  (finis stem ldap.  /* Read the file and */  
Free f(dd)/* free the DD.  */  
   
/* Now parse out the data that was outputed from the LDAP query. */
/* Here is where you put your business logic.*/

Do i=1 for ldap.0   
   Parse Var ldap.i varname '=' varvalue
   Select   
  When varname = 'cn' Then say varvalue 
  When varname = 'postalCode' Then say varvalue 
  When varname = 'telephoneNumber' Then say varvalue
  When varname = 'pager' Then say varvalue  
  When varname = 'title' Then say varvalue  
  Otherwise Nop 
   End  
End 

Exit

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread R.S.

John McKown wrote:
[...]

Of course, this still does not address the horrendous cost of software for
the z, especially z/OS.

Yes :-(


Comparing a z penguin farm (Linux) to an Intel penguin farm, the z would
almost always win.  [...]
No. BTDT. It depends on requirements for HW quality. Intel penguin farm 
could mean high-end xSeries or blades, or simply bunch of regular PCs 
(see Google). I really don't care about memory overallocation in PC, 
because 1GB costs less than $100 (compared to $8k in z), I don't care 
about CP overallocation, because Intel/AMD CP is $300 (compared to $125k 
for IFL in z). Disks could be the same or I can choose much cheaper 
disks for PC.
Floor space, HVAC, energy bills - still no significant savings here. 
Ecology - well I like green, but I won't plug out my fridge, my boss 
won't pay many thousands $$$ for being greener a little bit.

...and VM is not free.
Last but not least: each of PCs in a flock can run Linux or Microsoft 
Windows as well.


--
Radoslaw Skorupka
Lodz, Poland


--
BRE Bank SA
ul. Senatorska 18
00-950 Warszawa
www.brebank.pl

Sd Rejonowy dla m. st. Warszawy 
XII Wydzia Gospodarczy Krajowego Rejestru Sdowego, 
nr rejestru przedsibiorców KRS 025237

NIP: 526-021-50-88
Wedug stanu na dzie 01.01.2008 r. kapita zakadowy BRE Banku SA  wynosi 
118.642.672 zote i zosta w caoci wpacony.

--
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: question about Oracle on the mainframe

2008-10-16 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of R.S.
 
 David Crayford wrote:
 [...]
  15 years ago I worked on one of the first mainframe DB2 data
warehouse
  systems in the UK. We used SP2 AIX boxes for the mining, and they
were
  very quick back then. I suppose it all depends on the z10 and how
IBM
  prices them...
 
  They seem to be making an effort to bring to TCO down.
 Well, at risk of going to new war I disagree. g
 I don't see too much effort.
 0.9 MSU is good thing to compete with second hand market.
 
 The only thing I could consider as the effort are software tools,
 especially must have ones. IBM develops (or buys) many various tools
 IMHO not only to compete with large ISVs, but also to give customers
 real choice. Is CA-1 too expensive? Then choose RMM. Competition means
 lower prices even for those who stay with CA, BMC, others products.

And competition fosters improvements in the products themselves.  For
example, would DFSORT have its present capabilities and features, had
Syncsort (et al) not existed?  Indeed, would Syncsort have advanced to
its current state, had DFSORT not decided to play leapfrog with them?

Prospective loss of market share can be a powerful motivator.  :-)

-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



Shared PARMLIB placement

2008-10-16 Thread Chase, John
Hi, All,

Are there any compelling reasons to place a shared PARMLIB on a volume
that holds a sysplex couple dataset?

Are there any compelling reasons NOT to place it there?

Please expound a little for answers other than No.

TIA,

-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: question about Oracle on the mainframe

2008-10-16 Thread David Crayford

John McKown wrote:


Are you aware that Oracle on z/OS is functionally stabilized at release
10? I.e. the newer Oracle releases will not be ported to run under z/OS at
all. As of right now, release 10 remains supported on z/OS.

As another said, I've read of a number of z/Linux users using Oracle quite
happily.



SAP Business Suite is the same, no longer being ported to z/OS. It seems 
that z/Linux is becoming a very strategic platform for both vendors and IBM.


--
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: D/T2098 PROCESSOR ?

2008-10-16 Thread Tom Marchant
On Thu, 16 Oct 2008 07:57:58 -0500, John McKown wrote:

On Thu, 16 Oct 2008 03:46:20 -0500, Roger Bowler [EMAIL PROTECTED] wrote:

Mark Zelden wrote:
APAR Identifier .. IO09096  Last Changed  08/10/13
EREP SUPPORT NEW FUNCTION
EREP NEEDS TO SUPPORT NEW EREP RECORD FOR D/T2098 PROCESSOR.

John Chase wrote:
Perhaps the z10-BC is about to be born?

In another thread, Timothy Sipples wrote:
IBM has a significant System z-related announcement to make on October 21
Register at: http://www.on24.com/clients/ibm/117767
There is new System z technology on the horizon that could change the
way your organization thinks about mainframes. Technology that delivers
the granular scalability, flexibility, and resiliency you need -- at the
lower
capacity entry point you want.

It sounds like the z10 BC is imminent.

Regards,
Roger Bowler


Perhaps something to go into the niche which was supported by the Flex-ES
system? In that case, some sort of internal DASD would be a requirement.

PSI?

-- 
Tom Marchant

--
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: How to insert records using EXECIO

2008-10-16 Thread Veilleux, Jon L
You are right. You should always have a back up plan. I was answering
his basic question not thinking about preventing disasters. 
That being said, if you really need to protect the file maybe REXX
EXECIO isn't the best solution
Jon 


Jon L. Veilleux 
[EMAIL PROTECTED] 
(860) 636-2683 


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Paul Gilmartin
Sent: Thursday, October 16, 2008 9:19 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: How to insert records using EXECIO

On Thu, 16 Oct 2008 07:49:45 -0400, Veilleux, Jon L wrote:

You can read the whole file into a stem variable, ...

I feel old.

You really ought to have a fallback mechanism in case can fails.

-- gil

--
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

This e-mail may contain confidential or privileged information. If
you think you have received this e-mail in error, please advise the
sender by reply e-mail and then delete this e-mail immediately.
Thank you. Aetna   

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread John McKown
On Thu, 16 Oct 2008 15:57:32 +0200, R.S. [EMAIL PROTECTED] wrote:

John McKown wrote:
[...]
 Of course, this still does not address the horrendous cost of software for
 the z, especially z/OS.
Yes :-(

 Comparing a z penguin farm (Linux) to an Intel penguin farm, the z would
 almost always win.  [...]
No. BTDT. It depends on requirements for HW quality. Intel penguin farm
could mean high-end xSeries or blades, or simply bunch of regular PCs
(see Google). I really don't care about memory overallocation in PC,
because 1GB costs less than $100 (compared to $8k in z), I don't care
about CP overallocation, because Intel/AMD CP is $300 (compared to $125k
for IFL in z). Disks could be the same or I can choose much cheaper
disks for PC.
Floor space, HVAC, energy bills - still no significant savings here.
Ecology - well I like green, but I won't plug out my fridge, my boss
won't pay many thousands $$$ for being greener a little bit.
...and VM is not free.
Last but not least: each of PCs in a flock can run Linux or Microsoft
Windows as well.

--
Radoslaw Skorupka
Lodz, Poland

Thanks for the correction. But, from your comments, I would take it that the
System z is simply not worth using, except for z/OS (maybe z/VSE) legacy
work. If this is true, then I see no reason why any company would get a z
for new work. And, if a company could move its workload from, say, CICS to
WAS, it would be less expensive to run that work on Intel.

Not a nice picture. But, with any luck, I'll die of a massive coronary
before I lose my current job (and the economy is getting bad enough that
that is becoming more of a probability).

--
John

--
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



SDF II

2008-10-16 Thread Vern Mascall
When I initiate SDF II I get the following error msgs:

SDF2INV: ISPF rc=20 - LIBDEF ISPTLIB DATASET ID(ISPF.ISPPROF
'SDF2.V1R4M0.SDGITBEU') 

SDF2INV: ISPF rc=20 - LIBDEF ISPTABL DATASET ID(ISPF.ISPPROF)  
 

Anyone know where to find out what the RC=20 means ?

Cheers,
Vern.

--
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



One Pack Rescue System

2008-10-16 Thread Rabbe, Luke
I'm creating one for the first time.  We have procedures in-house that
are very similar (if not exact) to Mark Zelden's.  

 

I was just wondering if there's a Redbook or official IBM procedures
for creating a one pack rescue system.  Or are Mark's the standard?

 

Thank you,

Luke Rabbe




 


--
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: MSU in z10

2008-10-16 Thread R.S.

Gentlemen,
I stand corrected - it is 90%, without approx.
However my question concerned z10 machine - does the .9 factor apply or 
not (and is it really .9 not other value).
As I understand Ted's response - 2xyes: yes, z10 has the factor and 
yes it is .9


Thank you for your help  regards
--
Radoslaw Skorupka
Lodz, Poland


Timothy Sipples wrote:

Ted MacNeil writes:

It's not approx -- it is 90%


In fairness to Radoslaw, approximately is fair to say, at least due to
rounding errors at specific capacity points. (MSU values are whole
numbers.) But there is an underlying mathematical exactness, so Ted is
correct, too. :-)

As for the impact of Technology Dividend(s) in your particular situation,
that varies.




--
BRE Bank SA
ul. Senatorska 18
00-950 Warszawa
www.brebank.pl

Sd Rejonowy dla m. st. Warszawy 
XII Wydzia Gospodarczy Krajowego Rejestru Sdowego, 
nr rejestru przedsibiorców KRS 025237

NIP: 526-021-50-88
Wedug stanu na dzie 01.01.2008 r. kapita zakadowy BRE Banku SA  wynosi 
118.642.672 zote i zosta w caoci wpacony.

--
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: Virtual (was: IBM PR: System z Announcement ...)

2008-10-16 Thread Rich Smrcina

Paul Gilmartin wrote:


Is OpenSolaris for z eligible for IFL?


I don't expect OpenSolaris is tied to the underlying processor, except for architecture 
level.  So IFL or standard processor, it shouldn't matter.



--

Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com
http://www.linkedin.com/in/richsmrcina

Catch the WAVV!  http://www.wavv.org
WAVV 2009 - Orlando, FL - May 15-19, 2009

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Rich Smrcina

John McKown wrote:


Thanks for the correction. But, from your comments, I would take it that the
System z is simply not worth using, except for z/OS (maybe z/VSE) legacy
work. If this is true, then I see no reason why any company would get a z
for new work. And, if a company could move its workload from, say, CICS to
WAS, it would be less expensive to run that work on Intel.


It makes you think that his purpose in life is to trash System z, at least by the tone 
of his posts.  This should not be the purpose of this list.


--

Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com
http://www.linkedin.com/in/richsmrcina

Catch the WAVV!  http://www.wavv.org
WAVV 2009 - Orlando, FL - May 15-19, 2009

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Ken Porowski
Look at licensing costs for Oracle (and other products licensed per
CPU).  Last I heard was around $40K per CPU.  If I can replace 4-5 Intel
servers with a single IFL software costs alone generate savings.

The larger question is can IFL/z/VM compete with Intel/Vmware (or
equivalent) when ALL costs are considered.  

Ken Porowski
AVP Systems Software
CIT Group
E: [EMAIL PROTECTED]



-Original Message-
John McKown

On Thu, 16 Oct 2008 15:57:32 +0200, R.S.
[EMAIL PROTECTED] wrote:

John McKown wrote:
[...]
 Of course, this still does not address the horrendous cost of 
 software for the z, especially z/OS.
Yes :-(

 Comparing a z penguin farm (Linux) to an Intel penguin farm, the z 
 would almost always win.  [...]
No. BTDT. It depends on requirements for HW quality. Intel penguin farm

could mean high-end xSeries or blades, or simply bunch of regular PCs 
(see Google). I really don't care about memory overallocation in PC, 
because 1GB costs less than $100 (compared to $8k in z), I don't care 
about CP overallocation, because Intel/AMD CP is $300 (compared to 
$125k for IFL in z). Disks could be the same or I can choose much 
cheaper disks for PC.
Floor space, HVAC, energy bills - still no significant savings here.
Ecology - well I like green, but I won't plug out my fridge, my boss 
won't pay many thousands $$$ for being greener a little bit.
...and VM is not free.
Last but not least: each of PCs in a flock can run Linux or Microsoft 
Windows as well.

--
Radoslaw Skorupka
Lodz, Poland

Thanks for the correction. But, from your comments, I would take it that
the System z is simply not worth using, except for z/OS (maybe z/VSE)
legacy work. If this is true, then I see no reason why any company would
get a z for new work. And, if a company could move its workload from,
say, CICS to WAS, it would be less expensive to run that work on Intel.

Not a nice picture. But, with any luck, I'll die of a massive coronary
before I lose my current job (and the economy is getting bad enough that
that is becoming more of a probability).

--
John

--
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: Tiered storage and FATA drives

2008-10-16 Thread Marc Van Hoof
The 16K blocksize is an HSM limitation on writing data to a tapedrive.
We do have drives (STK 9840C) that can transfer 30 (uncompressed) 
to 70 Mb/s (compressed).
In practice we see HSM putting  500 I/0’s sec / 7,8MB/sec on a drive.
Remote over an distance of 40 Km over DWDM it is less 360 I/O’s sec / 
5,6MB/sec.

--
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: How to insert records using EXECIO

2008-10-16 Thread Lizette Koehler
Depending on the number of records in the input file, EXECIO may not be the
most efficient way to do this.

But you could create a new file with the new lines in it and then use
something like IEBGENER later in the REXX to mod the data from the original
file into the new file.

The reason to do it this way is to protect your original file from being
corrupted should there be a failure of some type (x37, 0Cx, etc).

Mod will normally add lines to the end of a file not to a beginning of a
file.

Lizette

 
 Hi
 
  I have a requirement to insert some records in the beginning of a file
 where
 already some lines are existing . i tried using DISKW using MOD , but
 they are
 appending to the end. How do we insert in the beginning? I am using
 REXX for
 this program.
 

--
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: Virtual (was: IBM PR: System z Announcement ...)

2008-10-16 Thread John McKown
On Thu, 16 Oct 2008 09:52:24 -0500, Rich Smrcina [EMAIL PROTECTED] wrote:

Paul Gilmartin wrote:

 Is OpenSolaris for z eligible for IFL?

I don't expect OpenSolaris is tied to the underlying processor, except for
architecture
level.  So IFL or standard processor, it shouldn't matter.


--

Rich Smrcina

From what little I understand, any OS which does not invoke some specific
functions (undocumented) should work on an IFL. Just for fun, when I had
z/VM running on an IFL, I IPL'ed z/OS under z/VM on the IFL. As I recall, it
got a machine check. My belief is that this is caused by the microcode
differences between a CP and an IFL. z/OS uses some instruction (a DIAG?)
which works on a CP and causes the machine check on an IFL.

--
John

--
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



Virtual (was: IBM PR: System z Announcement ...)

2008-10-16 Thread Paul Gilmartin
On Thu, 16 Oct 2008 08:26:44 -0500, John McKown wrote:

 Also, z/VM still makes VMWare look sick and immature.

Understood.  But is this because z/VM does a superior job of providing
virtual images of the underlying hardware, or because z/VM provides
images of an architecture superior to that hardware.  z/VM becomes
something like another layer of microcode.

I glanced at Sine Nomine's page about OpenSolaris for Z.  There's a
prominent restriction that it runs only under z/VM, not in an LPAR.
So it exploits a CP feature.  An easy conjecture, with no evidence,
is that it uses CP Block DASD I/O to bypass the complexities of
CKD channel programs.

Then, is it fairer to compare VMWare to z/VM or to PR/SM?

Is OpenSolaris for z eligible for IFL?

Thinking about the recurrent chatter about FBA, might something
akin to CP Block I/O be moved into PR/SM to provide FBA emulation
or other device type imaging?

--gil

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Rich Smrcina

Ken Porowski wrote:

Look at licensing costs for Oracle (and other products licensed per
CPU).  Last I heard was around $40K per CPU.  If I can replace 4-5 Intel
servers with a single IFL software costs alone generate savings.

The larger question is can IFL/z/VM compete with Intel/Vmware (or
equivalent) when ALL costs are considered.  


Ken Porowski
AVP Systems Software
CIT Group
E: [EMAIL PROTECTED]


Are you only looking at Oracle servers?  Are there other servers in your environment 
that might be a good fit for Linux on System z?


--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com
http://www.linkedin.com/in/richsmrcina

Catch the WAVV!  http://www.wavv.org
WAVV 2009 - Orlando, FL - May 15-19, 2009

--
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: D/T2098 PROCESSOR ?

2008-10-16 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of Tom Marchant
 
 On Thu, 16 Oct 2008 07:57:58 -0500, John McKown wrote:
 
 [ snip ]
 
 Perhaps something to go into the niche which was supported by the
 Flex-ES
 system? In that case, some sort of internal DASD would be a
 requirement.
 
 PSI?

Intriguing.  IBM _did_ buy out that PSI, after all.

Wonder how that would look in my basement, next to the Bridgeport?  :-)

-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: Shared PARMLIB placement

2008-10-16 Thread Mark Zelden
On Thu, 16 Oct 2008 09:15:07 -0500, Chase, John [EMAIL PROTECTED] wrote:

Hi, All,

Are there any compelling reasons to place a shared PARMLIB on a volume
that holds a sysplex couple dataset?


NO.

Are there any compelling reasons NOT to place it there?

Probably not.  But the recommendation is to not place anything on couple data 
set volumes but the couple data sets (see MVS Setting Up a Sysplex).  

If the access is low and nothing would ever reserve the volume by accessing
the PARMLIB, then it shouldn't be a problem.   But isn't there a better 
place (like IODF volume that is also shared)?


Please expound a little for answers other than No.


Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
z/OS Systems Programming expert at http://expertanswercenter.techtarget.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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread John McKown
On Thu, 16 Oct 2008 09:55:25 -0500, Rich Smrcina [EMAIL PROTECTED] wrote:

John McKown wrote:

 Thanks for the correction. But, from your comments, I would take it that the
 System z is simply not worth using, except for z/OS (maybe z/VSE) legacy
 work. If this is true, then I see no reason why any company would get a z
 for new work. And, if a company could move its workload from, say, CICS to
 WAS, it would be less expensive to run that work on Intel.

It makes you think that his purpose in life is to trash System z, at least
by the tone
of his posts.  This should not be the purpose of this list.

--

Rich Smrcina

I never really got that impression from him. I think he is just relating his
experiences with the current problems in the z arena. I still think that
z/Linux under z/VM will outperform non-CPU, high I/O intensive, workloads
better than Linux/Intel. I've had some people indicate that the enterprise
level Intel servers can approach the z's I/O rate. But I am unsure.

One thing that I do know is that the z hardware is more reliable and
recoverable. However, that said, many companies may regard the current Intel
as good enough. And today good enough is superior to best to most
managers. As an example. We were looking at moving our z/OS workload to an
Intel server farm (starting with 4 systems as I vaguely recall). I asked
about what happened if one of the 8 CPUs in a server died. The response
was that Windows would recover (not crash), but that the current work
running on that CPU would die and need to be restarted. I compared that to
when a CP on our z890 died. Another CP took over the in-flight work with
absolutely NO impact to anything. In fact, if EREP and the HMC had not told
us that a CP had died, we never would have known. The same when one of our
OSAs died. The other OSA transparently took over. Shocked the elided out
of the open people that we didn't lose any connectivity or even any IP
sessions.

But companies generally just don't seem to want to pay for that level of
reliability.

--
John

--
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: Tiered storage and FATA drives

2008-10-16 Thread Ron Hawkins
Marc,

You may want to talk to SUN about using virtualization to host ML1 and ML2
on large capacity SATA drives in rack and stack storage. There's a
whitepaper that discusses this here
http://www.hds.com/assets/pdf/wp_204_tiered_storage_for_mainframes.pdf.

Ron

 -Original Message-
 From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
 Behalf Of Marc Van Hoof
 Sent: Wednesday, October 15, 2008 11:16 AM
 To: IBM-MAIN@BAMA.UA.EDU
 Subject: [IBM-MAIN] Tiered storage and FATA drives
 
 At my company, we are looking at FATA drives to put our HSM ML1 (1 year
 period) data on it .
 Does someone have some experience doeing this ?
 
 Today we do not use ML1 and write directly to ML2 , NATIVE tapedrives
 from
 SUN/STK.
 Current drives are fast enough to do the HSM migrate and recall work.
 But we
 are running out of slots in the robot and want to replace current
 tapedrives
 with new K1000 drives from SUN/STK.
 This drives can write much more data to tape (capacity drives), but are
 also
 slower . We also want to eliminate the native drives for HSM work
 because
 HSM can not put enough work on the drives due to its 16K blocksize
 limitation (IBM has no plans to change this in the nearby future).
 
 So ... we are investigating FATA and 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

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Ken Porowski
I'm sure there are.  I do not have any IFL's (yet).

I was just trying to point out that hardware/environmental cost
comparisons do not present the whole picture.
There have been several presentations at SHARE and EXPO from companies
realizing significant savings implementing Linux on z.  

The big thing that seems to be missing is a comparison of virtualized
Intel vs. IFL/z/VM.
I did hear of one company that HAD to move to IFL/z/VM simply because
they could no longer increase power to the datacenter (Power company
restriction).  Only other alternative was to move. 

-Original Message-
Rich Smrcina

Ken Porowski wrote:
 Look at licensing costs for Oracle (and other products licensed per 
 CPU).  Last I heard was around $40K per CPU.  If I can replace 4-5 
 Intel servers with a single IFL software costs alone generate savings.
 
 The larger question is can IFL/z/VM compete with Intel/Vmware (or
 equivalent) when ALL costs are considered.  
 
 Ken Porowski
 AVP Systems Software
 CIT Group
 E: [EMAIL PROTECTED]

Are you only looking at Oracle servers?  Are there other servers in your
environment that might be a good fit for Linux on System z?

--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com
http://www.linkedin.com/in/richsmrcina

Catch the WAVV!  http://www.wavv.org
WAVV 2009 - Orlando, FL - May 15-19, 2009

--
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: Acessing LDAP data on other servers from z/OS

2008-10-16 Thread Lou, Jim
Hello,

I have LDAP running on z/os 1.9. It has both secure and non-secure interfaces. 
The following shows the jcl that I use as a client to the LDAP which is talking 
to RACF

//LDAPSRCH  EXEC  PGM=IKJEFT01,DYNAMNBR=50,REGION=2048K 
//ENVVARDD DSN=SYS1.MVSZ.LDAPARMS(LDAPCENV),DISP=SHR
//SYSEXEC   DDDISP=SHR,DSN=SYS1.GLD.SGLDEXEC
//SYSPROC   DDDISP=SHR,DSN=SYS1.GLD.SGLDEXEC
//SYSTSPRT  DDSYSOUT=*  
//SYSPRINT DD  SYSOUT=* 
//SYSUDUMP  DDSYSOUT=*  
//SYSTSIN   DD* 
 ldapsrch  -d ALL  -h 10.190.0.3 -p 636 -s base  -K aaazring +  
   -w  -Z  -L+  
   -D racfid=aaa,profiletype=user,sysplex=sysplex1 +
 -b racfid=aaa,profiletype=user,sysplex=sysplex1 OBJECTCLASS=*
//SYSIN  DD  DUMMY  
//  


 


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of 
Wolfgang Schäfer
Sent: Wednesday, October 15, 2008 1:34 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Acessing LDAP data on other servers from z/OS

Hello Andy,
z/OS comes with an LDAP client which is of course hidden in the unix system 
services :-)

If you enter the command 'ldapsearch from the shell without parameters it 
gives you some syntax synopsis ... probably the last lines are the most 
important ones:

Refer to IBM Tivoli Directory Server Client Programming for z/OS, Document 
Num
ber: SA23-2214, for complete documentation
(this is on z/OS 1.9)

But since ldapsearch is something like a standard in the world, google could be 
your friend as well to learn the (for me) strange looking LDAP query language 
...

Cheers from Germany
Wolfgang

- Original Message -
From: Andy Robertson [EMAIL PROTECTED]
Newsgroups: bit.listserv.ibm-main
To: IBM-MAIN@BAMA.UA.EDU
Sent: Wednesday, October 15, 2008 1:16 PM
Subject: Acessing LDAP data on other servers from z/OS


 We have some LDAP servers running under Lotus Notes on AIX boxes and we
 want to check/validate some data held on z/OS against them.  The 
 validation
 process must run on z/OS.

 I've no real experience of using LDAP.

 I'm aware that z/OS can run a LDAP server but that is not quite what we
 want.

 Is it possible to access LDAP data on another box from the USS side of 
 z/OS
 and how would one start??   Any pointers or manuals to read??







  Andy Robertson   telephone mobile 0777 214 9545 home 01273
 488272

 **
 This email is confidential and may contain copyright material of the John 
 Lewis Partnership.
 If you are not the intended recipient, please notify us immediately and 
 delete all copies of this message.
 (Please note that it is your responsibility to scan this message for 
 viruses). Email to and from the
 John Lewis Partnership is automatically monitored for operational and 
 lawful business reasons.
 **

 John Lewis plc
 Registered in England 233462
 Registered office 171 Victoria Street London SW1E 5NN

 Websites: http://www.johnlewis.com
 http://www.waitrose.com
 http://www.greenbee.com
 http://www.johnlewispartnership.co.uk

 **

 --
 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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Ken Porowski
I thought the z10 4.4GHz chips were the answer to the CPU intensive
issue (but probably not all). 

Ken
-Original Message-
John McKown

snip

I still think that z/Linux under z/VM will outperform non-CPU, high I/O
intensive, workloads better than Linux/Intel. I've had some people
indicate that the enterprise
level Intel servers can approach the z's I/O rate. But I am unsure.

unsnip

John

--
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: Virtual (was: IBM PR: System z Announcement ...)

2008-10-16 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of Paul Gilmartin
 
 On Thu, 16 Oct 2008 08:26:44 -0500, John McKown wrote:
 
  Also, z/VM still makes VMWare look sick and immature.
 
 Understood.  But is this because z/VM does a superior job of providing
 virtual images of the underlying hardware, or because z/VM provides
 images of an architecture superior to that hardware.  z/VM becomes
 something like another layer of microcode.
 
 I glanced at Sine Nomine's page about OpenSolaris for Z.  There's a
 prominent restriction that it runs only under z/VM, not in an LPAR.
 So it exploits a CP feature.  An easy conjecture, with no evidence,
 is that it uses CP Block DASD I/O to bypass the complexities of
 CKD channel programs.

AFAIK, PR/SM neither cares nor knows whether DASD is CKD or FBA.  z/VSE
supports both, with or without z/VM in the mix.  And of course z/VM
supports both.

 Then, is it fairer to compare VMWare to z/VM or to PR/SM?

Does VMWare run on bare metal yet?

 Is OpenSolaris for z eligible for IFL?

Since the OpenSolaris port requires z/VM, and z/VM can run on IFL, it
seems reasonable to assume so.

 Thinking about the recurrent chatter about FBA, might something
 akin to CP Block I/O be moved into PR/SM to provide FBA emulation
 or other device type imaging?

Shouldn't be necessary.  AFAIK that's done in the DASD hardware
nowadays.

-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: question about Oracle on the mainframe

2008-10-16 Thread Rich Smrcina

R.S. wrote:

David Crayford wrote:
[...]
SAP Business Suite is the same, no longer being ported to z/OS. It 
seems that z/Linux is becoming a very strategic platform for both 
vendors and IBM.


Or mainframe is less strategic for both...
(justification: it seems to be cheaper to use AIX on pSeries)



That is going to depend upon a great many things.

--

Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com
http://www.linkedin.com/in/richsmrcina

Catch the WAVV!  http://www.wavv.org
WAVV 2009 - Orlando, FL - May 15-19, 2009

--
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



Default class for JES2 SYSOUT

2008-10-16 Thread Sally Mason
Please can someone tell me if SYSOUT=A is always the default class for 
SYSOUT in JES2, or if this is something that can be changed somewhere.  Also 
if it can be set, which parameter it is.  I have tried looking in the JES2 and 
MVS manuals but haven't been able to find the answer.

We generally use the SYSOUT parameter on the DD statement to select the 
required output class, so it isn't usually an issue.  However, we have some 
output from one of the CA ASM2 started tasks that goes to SYSOUT class A, 
which is the class we use to actually print jobs so is defined in our JES parms 
with OUTDISP=(WRITE,WRITE).  We don't want this particular output to print, 
but there doesn't appear to be any way to change the SYSOUT class for it - 
according to CA, ASM2 does not ask for a specific output class so they say it 
must be the operating system default, but can't tell me what I may be able to 
change to stop it printing.

Thanks
Sally

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Rich Smrcina

Ken Porowski wrote:

I thought the z10 4.4GHz chips were the answer to the CPU intensive
issue (but probably not all). 


Ken


It's significantly better than it was previously.  More CPU intensive workloads can run 
on the z10 EC than could have run on the z9 EC.


You still need to make sure that the applications that you pick are a good fit, but the 
window is somewhat larger.  Performance measurement and management is absolutely 
required in this environment.

--

Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com
http://www.linkedin.com/in/richsmrcina

Catch the WAVV!  http://www.wavv.org
WAVV 2009 - Orlando, FL - May 15-19, 2009

--
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



Business Continuity Exercise aka DRE

2008-10-16 Thread Donnelly, John P
..just curious...what is frequency and duration of an exercise?


--
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: Business Continuity Exercise aka DRE

2008-10-16 Thread Mark Jacobs
Donnelly, John P wrote:
 ..just curious...what is frequency and duration of an exercise?


 --
 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


   

How much money do you want to spend? We perform ours twice a year, 48
hours each test.

-- 
Mark Jacobs
Time Customer Service
Tampa, FL


$100 placed at 7 percent interest compounded quarterly for 
200 years will increase to more than $100,000,000 -- by which 
time it will be worth nothing.

Robert A. Heinlein
Time Enough for Love (1973)

--
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: Virtual

2008-10-16 Thread Rich Smrcina

Chase, John wrote:


Does VMWare run on bare metal yet?



Well, I guess that depends upon your definition of 'bare metal'. (What is 'is'?)

For a very long time VMWare would install a modified pretty barebones RH Linux and 
VMWare on top of that.  From there you could create/install virtual machines.  That is 
their VMWare ESX product.  Now they have a free version of it called VMware ESXi.


--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com
http://www.linkedin.com/in/richsmrcina

Catch the WAVV!  http://www.wavv.org
WAVV 2009 - Orlando, FL - May 15-19, 2009

--
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: Business Continuity Exercise aka DRE

2008-10-16 Thread Field, Alan C.
It depends on your organization. 

One of our datacenters does a 72 hour one once a year, the other does an
80 hour one once a year. 

At one time we used to do two 40 hour ones twice a year (if I remember
right. We switched to 80 hour when we couldn't get everything done in
the 40 hours).

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Donnelly, John P
Sent: Thursday, October 16, 2008 10:31 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Business Continuity Exercise aka DRE

..just curious...what is frequency and duration of an exercise?

--
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: Default class for JES2 SYSOUT

2008-10-16 Thread Mark Zelden
On Thu, 16 Oct 2008 10:16:39 -0500, Sally Mason [EMAIL PROTECTED]
wrote:

Please can someone tell me if SYSOUT=A is always the default class for
SYSOUT in JES2, or if this is something that can be changed somewhere.  Also
if it can be set, which parameter it is.  I have tried looking in the JES2 and
MVS manuals but haven't been able to find the answer.

We generally use the SYSOUT parameter on the DD statement to select the
required output class, so it isn't usually an issue.  However, we have some
output from one of the CA ASM2 started tasks that goes to SYSOUT class A,
which is the class we use to actually print jobs so is defined in our JES parms
with OUTDISP=(WRITE,WRITE).  We don't want this particular output to print,
but there doesn't appear to be any way to change the SYSOUT class for it -
according to CA, ASM2 does not ask for a specific output class so they say it
must be the operating system default, but can't tell me what I may be able to
change to stop it printing.

Thanks
Sally



The default comes from the MSGCLASS.   To see what your STC MSGCLASS
is set at use this command:

$DJOBCLASS(STC)  

or for more recent JES2 versions you will need

$DJOBCLASS(STC),LONG

You can change with with an operator command or cold start.  I assume
you don't want to do a cold start. :-)Update your JES2 parms so
they match (perhaps you do cold start at DR?).

$TJOBCLASS(STC),MSGCLASS=X

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
z/OS Systems Programming expert at http://expertanswercenter.techtarget.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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Tom Marchant
On Thu, 16 Oct 2008 10:09:49 -0500, John McKown wrote:

 I've had some people indicate that the enterprise
level Intel servers can approach the z's I/O rate. But I am unsure.

I think they are dreaming.  Sure, they can support Fibre Channel, but how
many of them?  Certainly not hundreds.  The memory on a PC can't handle that
kind of data rate.

-- 
Tom Marchant

--
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: Default class for JES2 SYSOUT

2008-10-16 Thread Mark Zelden
On Thu, 16 Oct 2008 10:40:03 -0500, Mark Zelden [EMAIL PROTECTED]
wrote:

On Thu, 16 Oct 2008 10:16:39 -0500, Sally Mason [EMAIL PROTECTED]
wrote:

Please can someone tell me if SYSOUT=A is always the default class for
SYSOUT in JES2, or if this is something that can be changed somewhere.  Also
if it can be set, which parameter it is.  I have tried looking in the JES2 and
MVS manuals but haven't been able to find the answer.

We generally use the SYSOUT parameter on the DD statement to select the
required output class, so it isn't usually an issue.  However, we have some
output from one of the CA ASM2 started tasks that goes to SYSOUT class A,
which is the class we use to actually print jobs so is defined in our JES
parms
with OUTDISP=(WRITE,WRITE).  We don't want this particular output to print,
but there doesn't appear to be any way to change the SYSOUT class for it -
according to CA, ASM2 does not ask for a specific output class so they say it
must be the operating system default, but can't tell me what I may be able to
change to stop it printing.

Thanks
Sally



The default comes from the MSGCLASS.   To see what your STC MSGCLASS
is set at use this command:

$DJOBCLASS(STC)

or for more recent JES2 versions you will need

$DJOBCLASS(STC),LONG

You can change with with an operator command or cold start.  I assume
you don't want to do a cold start. :-)Update your JES2 parms so
they match (perhaps you do cold start at DR?).

$TJOBCLASS(STC),MSGCLASS=X

Mark
--


I forgot to add:   If you don't want to change MSGCLASS globally 
for all STCs, you can set this up as a started job (a JOBCARD for an STC)
if you have started jobs implemented and just have the MSGCLASS you 
want in that job card.   We do this for STCs we want to go to our
msgclass archival software (CICS for example).  I also do it to change
some STCs to go to our bit bucket class which is Z.
Example STC JOBCARD for INIT:

//INIT JOB 'INIT',MSGLEVEL=(0,0),MSGCLASS=Z 
//INIT EXEC PROC=INIT
   
Still another option is to just start the task with the  MSGCLASS you desire.
Example:

S ASM2TASK,MSGCLASS=X

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
z/OS Systems Programming expert at http://expertanswercenter.techtarget.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: Virtual

2008-10-16 Thread Anne Lynn Wheeler
The following message is a courtesy copy of an article
that has been posted to bit.listserv.ibm-main as well.

[EMAIL PROTECTED] (Paul Gilmartin) writes:
 Understood.  But is this because z/VM does a superior job of providing
 virtual images of the underlying hardware, or because z/VM provides
 images of an architecture superior to that hardware.  z/VM becomes
 something like another layer of microcode.

 I glanced at Sine Nomine's page about OpenSolaris for Z.  There's a
 prominent restriction that it runs only under z/VM, not in an LPAR.
 So it exploits a CP feature.  An easy conjecture, with no evidence,
 is that it uses CP Block DASD I/O to bypass the complexities of
 CKD channel programs.

 Then, is it fairer to compare VMWare to z/VM or to PR/SM?

 Is OpenSolaris for z eligible for IFL?

 Thinking about the recurrent chatter about FBA, might something
 akin to CP Block I/O be moved into PR/SM to provide FBA emulation
 or other device type imaging?

various unix ports dating back to at least the early 80s ... like UCLA
locus port for aix/370 ... were done for vm370 ... not because of the
complexity of CKD channel programs vis-a-vis block i/o ... but because
of being able to leverage vm to meet error recover and EREP requirements
... which represented a much, much larger body of code (than straight
device driver).

dating back to original cp67  cms ... CKD disks had been treated as
logical block devices ... with simplified, stylized CKD channel
programs. But the lines-of-code to meet error recovery and EREP
requirements was significantly larger than the much simpler and smaller
inline device driver code.

Part of the past FBA wasn't so much about the complexity of the inline
device driver code ... but as part of the FBA simplification,
significant amount of device physical characteristics were abstracted.
This eliminated a lot of release-to-release transitions and significant
new device driver support code that came with every small change in CKD
product.

In the middle of the FBA wars ... i had offered driver support to the
MVS device support group. They replied that even fully tested and
integrated code ... there was still a $26m bill for documentation and
training ... which I needed a business case for. At the time, the
simplified scenario was that a business case required incremental, new
product sales (as opposed to long term infrastructure cost savings).
Their scenario was that FBA support would just result in the same amount
of disk being sold as FBA rather than CKD ... resulting in no
incremental business case to cover the $26m cost for MVS supporting FBA.

misc. past posts mentioning CKD and/or FBA issues
http://www.garlic.com/~lynn/submain.html#dasd

I was also allowed to play disk engineer in bldg. 14 (disk engineering)
and bldg 15 (disk product test). One of the issues was that they were
doing mainframe stand-alone, dedicated machine testing (i.e. each test
required prescheduled, dedicated machine time). They had tried running
MVS on the machines (looking to possibly being able to perform multiple
concurrent tests and eliminated the dedicated machine time test
bottleneck). However, standard MVS product had 15min MTBF in that
enviroment. I undertook to rewrite i/o supervisor to create bullet proof
error recovery and operation ... enabling multiple concurrent testing to
be done in operating system environment (and eliminating the dedicated
machine time scheduling development bottlenecks). misc. past posts
mentioning getting to play disk engineer
http://www.garlic.com/~lynn/subtopic.html#disk

I had originally done simplified block i/o interface for CMS  CP67 as
pathlength reduction as an undergraduate in the 60s.

Later in the early 70s, for CP67/CMS, I did a much more powerful,
flexible, lower overhead, and high thruput API that supported page
mapped operations (even more simplified than FBA channel programs, much
lower pathlength, and much more opportunity for thruput optimization.
On the CMS side of the API, I then implementated a paged mapped
filesystem. Later I migrated the changes to vm370 ... some
old email from the period
http://www.garlic.com/~lynn/2006v.html#email731212
http://www.garlic.com/~lynn/2006w.html#email750102
http://www.garlic.com/~lynn/2006w.html#email750430

Later tests on 3380s, with light to moderate disk intensive CMS
applications, I could get something like three times the thruput than
best case with standard block I/O. The thruput advantage increased
further as applications became more  more disk intensive. misc.
past posts mentioning page mapped filesystem work
http://www.garlic.com/~lynn/submain.html#mmap

-- 
40+yrs virtualization experience (since Jan68), online at home since Mar70

--
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: Finding the correct IEASYSxx member

2008-10-16 Thread Santosh Kandi
So is there a diplay command to list all the IEASYSXX parms that were picked 
during IPL time?

Thanks,
Santosh

--
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: Shared PARMLIB placement

2008-10-16 Thread Skip Robinson
I would make a stronger case for *not* putting *anything* but couple data
sets on a designated volume. Even apparently benign files can cause a
problem. For example, your PARMLIB runs out of space and needs to be
compressed. You don't want to run IEBCOPY against that volume.

Even if the PARMLIB is healthy, you surely want a periodic backup of it.
Backing up the entire volume risks holding it long enough for XCF to drop
the couple data set(s) as unusable. Backing up only the PARMLIB may involve
a special process unlike other backup/restore processes. In other words,
more chance of error.

In short, find a safer spot.

.
.
JO.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler
SHARE MVS Program Co-Manager
626-302-7535 Office
323-715-0595 Mobile
[EMAIL PROTECTED]


   
 Mark Zelden   
 [EMAIL PROTECTED] 
 CHNA.COM  To 
 Sent by: IBM  IBM-MAIN@BAMA.UA.EDU
 Mainframe  cc 
 Discussion List   
 [EMAIL PROTECTED] Subject 
 .EDU Re: Shared PARMLIB placement
   
   
 10/16/2008 08:09  
 AM
   
   
 Please respond to 
   IBM Mainframe   
  Discussion List  
 [EMAIL PROTECTED] 
   .EDU   
   
   




On Thu, 16 Oct 2008 09:15:07 -0500, Chase, John [EMAIL PROTECTED] wrote:

Hi, All,

Are there any compelling reasons to place a shared PARMLIB on a volume
that holds a sysplex couple dataset?


NO.

Are there any compelling reasons NOT to place it there?

Probably not.  But the recommendation is to not place anything on couple
data
set volumes but the couple data sets (see MVS Setting Up a Sysplex).

If the access is low and nothing would ever reserve the volume by accessing
the PARMLIB, then it shouldn't be a problem.   But isn't there a better
place (like IODF volume that is also shared)?


Please expound a little for answers other than No.


Mark
--
Mark Zelden

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Scott Ford
Guys ,

I work on Flex-ES - z/OS 1.9 and its great of course we don't do
100,000 transactions a day on CICS or DB2, we develop software using
TCPIP. I can't complain at all. It fits our purpose, which is the key



Scott Ford
Senior Systems Engineer

 
[p] 678.266.3399 x304[m] 609-346-0399  identityforge.com



This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you have
received it in error, please notify the sender immediately or let us know at

[EMAIL PROTECTED] or [EMAIL PROTECTED], and then delete the
original.  Any other use of the email by you is prohibited.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Tom Marchant
Sent: Thursday, October 16, 2008 11:50 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: IBM PR: System z Announcement Webcast on October 21, 2008

On Thu, 16 Oct 2008 10:09:49 -0500, John McKown wrote:

 I've had some people indicate that the enterprise
level Intel servers can approach the z's I/O rate. But I am unsure.

I think they are dreaming.  Sure, they can support Fibre Channel, but how
many of them?  Certainly not hundreds.  The memory on a PC can't handle that
kind of data rate.

-- 
Tom Marchant

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Natarajan Mohan
The talk in z series expo is; it would be a z10 BC

Natarajan

NOTICE OF CONFIDENTIALITY 

The information contained in this communication, including but not limited to 
any accompanying document(s) and/or attachment(s), is privileged and 
confidential and is intended solely for the above-named individual(s). If you 
are not the intended recipient, please be advised that any distribution, 
copying, disclosure, and/or use of the information contained herein is strictly 
prohibited. If you received this communication in error, please destroy all 
copies of the communication, whether in electronic or hard copy format, and 
immediately contact the Security Office at EDFUND at (916) 526-7539 or [EMAIL 
PROTECTED] 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



publibz is DOWN

2008-10-16 Thread John McKown
Got this from the CICS list:

From a note from an IBMer:

I've just been informed that the Boulder servers that run our
information centers are down at the moment. The support teams are
working on the problem and hope to resolve it soon.

Apologies to those of you who have been trying to use our infocenters.
Hopefully they will be back up and running today.

Steve.

--
John

--
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



Message ICE099A ... Need Help

2008-10-16 Thread Howard Rifkind
I got the message below while trying to perform a sort.
 
The Sortin concatenation is below.
 
Does this look correct and if not what's wrong with it?
 
Thanks.
 
ICE099A 0 BLDL FAILED FOR SORTIN   DATA SET
ICE751I 1 D8-Q83041 D4-Q84357 E8-Q95214
 
 
//SORT EXEC PGM=SORT,REGION=4096K   
//SORTIN   DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(COMMON), 
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 
// DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(ZOS16),  
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 
// DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(T21CICS),
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 
// DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(TCECBLK),
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 

_
LEGAL 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, then delete this
message and empty from your trash.


--
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



Audible alarms on SMCS consoles?

2008-10-16 Thread David Andrews
It occurred to me today that I've never heard a 3270 audible alarm on
any TN3270 session in my shop.  I went looking around and discovered
that Zephyr Passport (the prevalent TN3270 client here) supports bell
and custom alarm WAVfiles.

It isn't obvious whether x3270 supports audible alarms.  I'm not getting
audibles out of the HMC x3270 instance connected via OSA Express2, or my
own x3270 client talking to the z/OS TN3270 server.

Neither have I ever heard a peep from ANY of the TN3270 emulators.
Suddenly I have a need for this, as the last green screen is heading for
the boneyard and the operators relying on SMCS consoles need the beeps
to keep them awake.

So: do TN3270 SMCS consoles support audible alarm?  If so then where
should I look to enable it?  Is this a forgotten VTAM features or
modetab thing that languishes in obscurity?

-- 
David Andrews
A. Duda and Sons, Inc.
[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: Message ICE099A ... Need Help

2008-10-16 Thread Jack Kelly
Really sounds like one of the members in SORTIN doesn't exist. I'm sure 
Mr. Sort will tell you which concat memeber is missing.

Jack Kelly
202-502-2390 (Office)

--
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: publibz is DOWN

2008-10-16 Thread Scott Ford
Thanks John...

I found out the hard way, tried it and it failed, but figured it was down...

Scott Ford
Senior Systems Engineer

 
[p] 678.266.3399 x304[m] 609-346-0399  identityforge.com



This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you have
received it in error, please notify the sender immediately or let us know at

[EMAIL PROTECTED] or [EMAIL PROTECTED], and then delete the
original.  Any other use of the email by you is prohibited.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of John McKown
Sent: Thursday, October 16, 2008 12:49 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: publibz is DOWN

Got this from the CICS list:

From a note from an IBMer:

I've just been informed that the Boulder servers that run our
information centers are down at the moment. The support teams are
working on the problem and hope to resolve it soon.

Apologies to those of you who have been trying to use our infocenters.
Hopefully they will be back up and running today.

Steve.

--
John

--
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: Message ICE099A ... Need Help

2008-10-16 Thread Scott Ford
Howard,
Are all your SORTS failing or just the one below ??



Scott Ford
Senior Systems Engineer

 
[p] 678.266.3399 x304[m] 609-346-0399  identityforge.com



This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you have
received it in error, please notify the sender immediately or let us know at

[EMAIL PROTECTED] or [EMAIL PROTECTED], and then delete the
original.  Any other use of the email by you is prohibited.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Howard Rifkind
Sent: Thursday, October 16, 2008 12:51 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Message ICE099A ... Need Help

I got the message below while trying to perform a sort.
 
The Sortin concatenation is below.
 
Does this look correct and if not what's wrong with it?
 
Thanks.
 
ICE099A 0 BLDL FAILED FOR SORTIN   DATA SET
ICE751I 1 D8-Q83041 D4-Q84357 E8-Q95214
 
 
//SORT EXEC PGM=SORT,REGION=4096K   
//SORTIN   DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(COMMON), 
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 
// DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(ZOS16),  
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 
// DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(T21CICS),
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 
// DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(TCECBLK),
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 

_
LEGAL 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, then delete this
message and empty from your trash.


--
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: Audible alarms on SMCS consoles?

2008-10-16 Thread Rich Smrcina

David Andrews wrote:

It occurred to me today that I've never heard a 3270 audible alarm on
any TN3270 session in my shop.  I went looking around and discovered
that Zephyr Passport (the prevalent TN3270 client here) supports bell
and custom alarm WAVfiles.

It isn't obvious whether x3270 supports audible alarms.  I'm not getting
audibles out of the HMC x3270 instance connected via OSA Express2, or my
own x3270 client talking to the z/OS TN3270 server.

Neither have I ever heard a peep from ANY of the TN3270 emulators.
Suddenly I have a need for this, as the last green screen is heading for
the boneyard and the operators relying on SMCS consoles need the beeps
to keep them awake.

So: do TN3270 SMCS consoles support audible alarm?  If so then where
should I look to enable it?  Is this a forgotten VTAM features or
modetab thing that languishes in obscurity?


x3270 beeps at me when I connect to z/VM.

--

Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com
http://www.linkedin.com/in/richsmrcina

Catch the WAVV!  http://www.wavv.org
WAVV 2009 - Orlando, FL - May 15-19, 2009

--
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: Virtual (was: IBM PR: System z Announcement ...)

2008-10-16 Thread Bruno Sugliani
On Thu, 16 Oct 2008 10:21:15 -0500, Chase, John [EMAIL PROTECTED] wrote:


Does VMWare run on bare metal yet?

Yes since quite some time
And it is an Hypervisor with some extremely sophisticated features ( drag
and drop of a partition from one machine to another ) 
http://www.vmware.com/products/vi/esx/
It helps us a lot to run servers without much dependance on the hardware
(quite great for disaster recovery plans)
  
Bruno Sugliani 
zxnetconsult(at)free(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: Message ICE099A ... Need Help

2008-10-16 Thread Lizette Koehler
Howard

ICE099A
BLDL FAILED FOR ddname DATA SET
Explanation:
Critical. An error was detected during member verification when the
identified data set was defined as a member of a partitioned data set or a
PDSE. The BLDL system function was used for verification. The most likely
cause is that the member was not found in the data set.

System action:
The program terminates.

Programmer response:
Ensure that the specified partitioned data set or PDSE member exists


Check your members on SORTIN

Lizette


 
 I got the message below while trying to perform a sort.
 
 The Sortin concatenation is below.
 
 Does this look correct and if not what's wrong with it?
 
 Thanks.
 
 ICE099A 0 BLDL FAILED FOR SORTIN   DATA SET
 ICE751I 1 D8-Q83041 D4-Q84357 E8-Q95214
 
 
 //SORT EXEC PGM=SORT,REGION=4096K
 //SORTIN   DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(COMMON),
 // DISP=SHR,
 // DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000)
 //*
 // DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(ZOS16),
 // DISP=SHR,
 // DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000)
 //*
 // DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(T21CICS),
 // DISP=SHR,
 // DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000)
 //*
 // DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(TCECBLK),
 // DISP=SHR,
 // DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000)
 //*
 

--
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: Virtual (was: IBM PR: System z Announcement ...)

2008-10-16 Thread John McKown
On Thu, 16 Oct 2008 12:02:54 -0500, Bruno Sugliani [EMAIL PROTECTED] wrote:

On Thu, 16 Oct 2008 10:21:15 -0500, Chase, John [EMAIL PROTECTED] wrote:


Does VMWare run on bare metal yet?

Yes since quite some time
And it is an Hypervisor with some extremely sophisticated features ( drag
and drop of a partition from one machine to another )
http://www.vmware.com/products/vi/esx/
It helps us a lot to run servers without much dependance on the hardware
(quite great for disaster recovery plans)

Bruno Sugliani
zxnetconsult(at)free(dot)fr

That is something that I thought was very interesting. It is not as
necessary on a single z. But it would be wonderful if a multi-CEC
environment could transparently move a guest from a z/VM on one system to a
z/VM on a different system without the necessity of any kind of an outage.
Now that would be NICE!

--
John

--
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: Shared PARMLIB placement

2008-10-16 Thread Ted MacNEIL
Are there any compelling reasons to place a shared PARMLIB on a volume that 
holds a sysplex couple dataset?

Are there any compelling reasons NOT to place it there?

I/O contention with the CDS is not a good thing.
At the price of DASD today, why not keep them separate, and avoid trouble?

-
Too busy driving to stop for gas!

--
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: Message ICE099A ... Need Help

2008-10-16 Thread Gray, Larry - Larry A
As a guess T21CICS and TCECBLK don't exist anymore.  Did you generate this new, 
or copy old JCL?

Larry Gray

--
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: Business Continuity Exercise aka DRE

2008-10-16 Thread Kelman, Tom
 
 Donnelly, John P wrote:
  ..just curious...what is frequency and duration of an exercise?
 
 
 
 

 Mark Jacobs wrote:
 
 How much money do you want to spend? We perform ours twice a year, 48
 hours each test.
 



We do the basically the same for our general test.  However, we have
some specialized systems, like our Tandem that runs wire transfer, that
we test more often.  It depends on several things

1.  How much do you want to spend in money and people hours (which
translates to money).

2.  Do you have your own DR site or are you buying DR support from a
company like SunGard.  If you're buying your DR support that translates
to more money because you'll be renting their facility while you do your
test.  Also, you'll have to coordinate with them as to the days/times
you can test.

3.  Do you want to do a planned or unplanned test.  By a planned
test I mean one where everyone knows when your going to test and what
your going to test ahead of time.  An unplanned test would be one where
upper management declares that a disaster has just occurred and you need
to go to your DR site.  They might also declare certain key personnel
(like your lead MVS sysprog) as victims of the disaster which means they
won't be able to take part in the test. That's to see if you have well
written procedures in place that an intelligent, but untrained, person
can follow. The unplanned test is more revealing of how well you're
prepared, but it is also harder and more expensive to accomplish. 
  

Tom Kelman
Enterprise Capacity Planner
Commerce Bank of Kansas City
(816) 760-7632


*
If you wish to communicate securely with Commerce Bank and its
affiliates, you must log into your account under Online Services at 
http://www.commercebank.com or use the Commerce Bank Secure
Email Message Center at https://securemail.commercebank.com

NOTICE: This electronic mail message and any attached files are
confidential. The information is exclusively for the use of the
individual or entity intended as the recipient. If you are not
the intended recipient, any use, copying, printing, reviewing,
retention, disclosure, distribution or forwarding of the message
or any attached file is not authorized and is strictly prohibited.
If you have received this electronic mail message in error, please
advise the sender by reply electronic mail immediately and
permanently delete the original transmission, any attachments
and any copies of this message from your computer 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



Re: Virtual (was: IBM PR: System z Announcement ...)

2008-10-16 Thread Rich Smrcina

John McKown wrote:

That is something that I thought was very interesting. It is not as
necessary on a single z. But it would be wonderful if a multi-CEC
environment could transparently move a guest from a z/VM on one system to a
z/VM on a different system without the necessity of any kind of an outage.
Now that would be NICE!


An early prototype of this sort of technology has been demonstrated at the last 
few SHAREs.

z/VM Live Guest Migration:  http://www.linuxvm.org/Present/SHARE111/S9110rw.pdf

--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com
http://www.linkedin.com/in/richsmrcina

Catch the WAVV!  http://www.wavv.org
WAVV 2009 - Orlando, FL - May 15-19, 2009

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Ted MacNEIL
The larger question is can IFL/z/VM compete with Intel/Vmware (or equivalent) 
when ALL costs are considered.  

According to the Province of Quebec, yes.

They converted a couple of years ago.
Went from over 100 ORACLE licenses to three (one per IFL).

-
Too busy driving to stop for gas!

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread John McKown
On Thu, 16 Oct 2008 17:18:29 +, Ted MacNEIL [EMAIL PROTECTED] wrote:

The larger question is can IFL/z/VM compete with Intel/Vmware (or
equivalent) when ALL costs are considered.

According to the Province of Quebec, yes.

They converted a couple of years ago.
Went from over 100 ORACLE licenses to three (one per IFL).

That is interesting. But I am wondering about so-called Oracle Site
Licenses. From what I have been told, we have such a thing. Supposedly, this
allows us to have basically unlimited numbers of Oracle systems running on
any number of cores on any platform. That's how we got Oracle on z/OS. It
was free with out current license. But I've been misinformed before.

--
John

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Savor, Tom
Just curiouswhy Oracle over DB2 ??  Is Oracle better ??
Never used Oracle before, only DB2.

That is interesting. But I am wondering about so-called Oracle Site
Licenses. From what I have been told, we have such a thing. Supposedly,
this
allows us to have basically unlimited numbers of Oracle systems running
on
any number of cores on any platform. That's how we got Oracle on
z/OS. It
was free with out current license. But I've been misinformed before.

--
John

 Thanks,
 
 
Tom Savor
Fidelity National Information Services
11720 Amber Park Drive
Suite 500
Alpharetta, GA  30004
 
Phone: 678-867-8431
cell:  404-660-6898
E-Mail: [EMAIL PROTECTED]

_

The information contained in this message is proprietary and/or confidential. 
If you are not the 
intended recipient, please: (i) delete the message and all copies; (ii) do not 
disclose, 
distribute or use the message in any manner; and (iii) notify the sender 
immediately. In addition, 
please be aware that any message addressed to our domain is subject to 
archiving and review by 
persons other than the intended recipient. 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



Re: OUTREC - SHORT RECORD

2008-10-16 Thread Ram Balaji
Thank you frank


Regards,
Ram Balaji.S.
(Dying Hard to explore MainFrames)


-Original Message-
From: Frank Yaeger [EMAIL PROTECTED]
To: IBM-MAIN@BAMA.UA.EDU
Sent: Wed, 15 Oct 2008 12:42 pm
Subject: Re: OUTREC - SHORT RECORD



Ram Balaji.S. wrote on 10/15/2008 10:58:33 AM:
 While reading VB file Iam getting the following error

 OUTREC - SHORT RECORD

 my SYSIN is
 SORT FIELDS=COPY
 OUTREC FIELDS=(1:1,6,3X,10:7,1491)

 If I change SYSIN as below
 SORT FIELDS=COPY
 OUTREC FIELDS=(1:1,6,3X,10:7,30)

 it works fine.

 What might be the reason...?
 Cant I select record from 7 to 1491...?

 Regards,
 Ram Balaji.S.
 (Dying Hard to explore MainFrames)

(I'm answering your question from a DFSORT viewpoint, but I think
the same thing applies to Syncsort.)

When you use 7,1491 in your OUTREC statement, it says that you expect
to have VB input records that are at least 1497 bytes long.  The error
message indicates you have a record shorter than 1497 bytes.  When you
use 7,30, it says that you expect to have VB input records that are at
least 36 bytes long.  Since that works fine, you don't have a record
shorter than 36 bytes.

If you want to copy the input bytes from position 7 to the end of the
record, use:

  OUTREC FIELDS=(1:1,6,10:7)

If you want to copy the input bytes from positions 7-1497 and pad any
missing bytes with blanks, you can use:

   OUTREC IFTHEN=(WHEN=INIT,BUILD=(1:1,6,10:7,1491))

Frank Yaeger - DFSORT Development Team (IBM) - [EMAIL PROTECTED]
Specialties: FINDREP, WHEN=GROUP, DATASORT, ICETOOL, Symbols, Migration

 = DFSORT/MVS is on the Web at http://www.ibm.com/storage/dfsort/

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread John McKown
On Thu, 16 Oct 2008 12:29:52 -0500, Savor, Tom [EMAIL PROTECTED] wrote:

Just curiouswhy Oracle over DB2 ??  Is Oracle better ??
Never used Oracle before, only DB2.

That is a long, sad story that I am forbidden to relate.

--
John

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Ted MacNEIL
But I am wondering about so-called Oracle Site
Licenses. From what I have been told, we have such a thing. Supposedly, this 
allows us to have basically unlimited numbers of Oracle systems running on
any number of cores on any platform. That's how we got Oracle on z/OS.

I have never seen a site license for ORACLE.
I don't think they're available in Canada.

But, you've got power and cooling of one zFOOTPRINT vs all the other INTEL 
boxen.

-
Too busy driving to stop for gas!

--
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: Shared PARMLIB placement

2008-10-16 Thread Rick Fochtman
Mt thought would be to place it on a shared catalog volume, since 
coupling datasets are far more linkly to move around as new ones are 
formatted and implemented. Also, I *might* be concerned about 
RESERVE/RELEASE and general I/O levels to the Couple datasets. I would 
tend to be very leery about ANYTHING that might have any effect on I/O 
performance to Couple datasets.


HTH... Rick
-

Chase, John wrote:


Hi, All,

Are there any compelling reasons to place a shared PARMLIB on a volume
that holds a sysplex couple dataset?

Are there any compelling reasons NOT to place it there?

Please expound a little for answers other than No.

TIA,

   -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


 



--
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: One Pack Rescue System

2008-10-16 Thread Rick Fochtman
As far as I'm concerned, Mark's mechanism is THE standard. Saved our 
butts during the Great Chicago Flood.


Rick
-

Rabbe, Luke wrote:


I'm creating one for the first time.  We have procedures in-house that
are very similar (if not exact) to Mark Zelden's.  




I was just wondering if there's a Redbook or official IBM procedures
for creating a one pack rescue system.  Or are Mark's the standard?



Thank you,

Luke Rabbe







--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread Jon Brock
Maybe by the last few, but certainly not by his whole body of posts.
Radoslaw is a good contributor, and a mainframe guy from way back.  He
is in the position now, though, of trying to maximize price/performance
from a larger standpoint, and that means making decisions based on the
data at hand.  He is just calling them as he sees them.

I like my z box, but it is becoming increasingly difficult to
cost-justify it these days, especially given our company size and
applications.

Jon




snip
It makes you think that his purpose in life is to trash System z, at
least by the tone 
of his posts. 
/snip

--
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: IBM PR: System z Announcement Webcast on October 21, 2008

2008-10-16 Thread John McKown
On Thu, 16 Oct 2008 17:36:47 +, Ted MacNEIL [EMAIL PROTECTED] wrote:

But I am wondering about so-called Oracle Site
Licenses. From what I have been told, we have such a thing. Supposedly,
this allows us to have basically unlimited numbers of Oracle systems running on
any number of cores on any platform. That's how we got Oracle on z/OS.

I have never seen a site license for ORACLE.
I don't think they're available in Canada.

But, you've got power and cooling of one zFOOTPRINT vs all the other INTEL
boxen.

True. But that does not impress anybody in management around here. They are
still in the z/OS and System z is simply too expensive! mindset. And, the
2009 budget has been DECREASED. I know the pain this is causing on z/OS. I
don't know the pain on the other side. We have actually reversed a tape
to DASD migration. We were going to keep the active dataset on DASD. Now,
we have been told no new DASD for you! and must actually be more
penny-pinching than in the past. We are setting DFHSM to migrate unused
datasets at the 15 day level again. I'm expecting the return of the Sx37
abends we were getting years ago.

--
John

--
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: Message ICE099A ... Need Help

2008-10-16 Thread Rick Fochtman

I have to ask two questions:

1. Why are you specifying DCB attributes? The VTOC entries for the 
various datasets will provide that information.


2. Have you verified that all the PDS members are actually present?

Rick
--

Howard Rifkind wrote:


I got the message below while trying to perform a sort.

The Sortin concatenation is below.

Does this look correct and if not what's wrong with it?

Thanks.

ICE099A 0 BLDL FAILED FOR SORTIN   DATA SET
ICE751I 1 D8-Q83041 D4-Q84357 E8-Q95214



//SORT EXEC PGM=SORT,REGION=4096K   
//SORTIN   DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(COMMON), 
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 
// DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(ZOS16),  
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 
// DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(T21CICS),
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 
// DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(TCECBLK),
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 


_
LEGAL 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, then delete this
message and empty from your trash.


--
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: Message ICE099A ... Need Help

2008-10-16 Thread Frank Yaeger
Jack Kelly wrote on 10/16/2008 09:59:05 AM:
 Really sounds like one of the members in SORTIN doesn't exist. I'm sure
 Mr. Sort will tell you which concat memeber is missing.

Yes, I'd agree that the most probable cause is a missing member.  But I
don't have any way of telling which member it is.

Frank Yaeger - DFSORT Development Team (IBM) - [EMAIL PROTECTED]
Specialties: FINDREP, WHEN=GROUP, DATASORT, ICETOOL, Symbols, Migration

 = DFSORT/MVS is on the Web at http://www.ibm.com/storage/dfsort/

--
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: Virtual

2008-10-16 Thread Anne Lynn Wheeler
The following message is a courtesy copy of an article
that has been posted to bit.listserv.ibm-main as well.


[EMAIL PROTECTED] (John McKown) writes:
 That is something that I thought was very interesting. It is not as
 necessary on a single z. But it would be wonderful if a multi-CEC
 environment could transparently move a guest from a z/VM on one system to a
 z/VM on a different system without the necessity of any kind of an outage.
 Now that would be NICE!

at least one of the (cp67/vm370) virtual machine based commercial
timesharing service bureaus did this in the mid-70s. it started out with
being able to migrate all the virtual memory as well as the in-storage
control blocks to shared disks in loosely-coupled environment ... and
bring it back into another processor complex. it was then enhanced to be
able to also transfer necessary information across a coast-to-coast
transmission link. lots of past posts mentioning virtual machine based
commercial timesharing service bureaus from the period
http://www.garlic.com/~lynn/subtopic.html#timeshare

at least one of the implementations was by one of the co-op students
mentioned in this old email
http://www.garlic.com/~lynn/2006v.html#email731212

that helped me with migrating several enhancements from cp67 to vm370. 
he had graduated and joined one of the timesharing service bureaus
and re-implemented some of the stuff from scratch ... including several
things that I only distributed internal (and never made it out in
customer products) ... old email references:
http://www.garlic.com/~lynn/2006w.html#email750102
http://www.garlic.com/~lynn/2006w.html#email750430

along with some enhancements to the mechanism that migrated kernel
virtual machine control blocks to secondary storage.

An analogous set of loosely-coupled enhancements were done later for the
internal (virtual machine based) HONE system ... which provided
world-wide sales  marketing support ... misc. past posts mentioning
HONE
http://www.garlic.com/~lynn/subtopic.html#hone

The virtual machine based commercial timesharing service bureaus had
been moving into 7x24 operation with customers around the world. In this
period there was still significantly monthly preventive maintenance
activity, which required removing systems from service. Being able to
transparently migrate virtual machines across complexes in
loosely-coupled environment ... allowed maintenance activity to occur
while totally masking the associated system outages.

Minor topic drift ... in this period, my wife had been con'ed into going
to POK to be in charge of loosely-coupled architecture. while there she
had originated peer-coupled shared data architecture ... which, except
for IMS hot-standby, saw very little uptake until sysplex (contributed
to her not staying very long in the position) ... misc. past posts
http://www.garlic.com/~lynn/submain.html#shareddata

-- 
40+yrs virtualization experience (since Jan68), online at home since Mar70

--
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: Virtual (was: IBM PR: System z Announcement ...)

2008-10-16 Thread Thomas Kern
I thought the early prototype of this was the Single-System-Image code
written at University of Waterloo back in the early 1980's. I tried to
convince management that it would be cheaper to use it to glue together a
slew of surplus 4341s than some of the other alternatives.
 
/Tom Kern

On Thu, 16 Oct 2008 12:16:03 -0500, Rich Smrcina [EMAIL PROTECTED] wrote:

John McKown wrote:
 That is something that I thought was very interesting. It is not as
 necessary on a single z. But it would be wonderful if a multi-CEC
 environment could transparently move a guest from a z/VM on one system to a
 z/VM on a different system without the necessity of any kind of an outage.
 Now that would be NICE!

An early prototype of this sort of technology has been demonstrated at the
last few SHAREs.

z/VM Live Guest Migration:  http://www.linuxvm.org/Present/SHARE111/S9110rw.pdf

--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com
http://www.linkedin.com/in/richsmrcina

--
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



Test mail

2008-10-16 Thread ron thomas
Hi all.. This is a test mail

--
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: Message ICE099A ... Need Help

2008-10-16 Thread Howard Rifkind
Just this one..

 Scott Ford [EMAIL PROTECTED] 10/16/2008 1:03 PM 
Howard,
Are all your SORTS failing or just the one below ??



Scott Ford
Senior Systems Engineer


[p] 678.266.3399 x304[m] 609-346-0399  identityforge.com



This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you have
received it in error, please notify the sender immediately or let us know at

[EMAIL PROTECTED] or [EMAIL PROTECTED], and then delete the
original.  Any other use of the email by you is prohibited.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Howard Rifkind
Sent: Thursday, October 16, 2008 12:51 PM
To: IBM-MAIN@BAMA.UA.EDU 
Subject: Message ICE099A ... Need Help

I got the message below while trying to perform a sort.

The Sortin concatenation is below.

Does this look correct and if not what's wrong with it?

Thanks.

ICE099A 0 BLDL FAILED FOR SORTIN   DATA SET
ICE751I 1 D8-Q83041 D4-Q84357 E8-Q95214


//SORT EXEC PGM=SORT,REGION=4096K   
//SORTIN   DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(COMMON), 
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 
// DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(ZOS16),  
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 
// DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(T21CICS),
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 
// DD DSN=SYSESB.TMON0832.STRSVC20.LMKCBLK(TCECBLK),
// DISP=SHR,
// DCB=(RECFM=VB,LRECL=31996,BLKSIZE=32000) 
//* 

_
LEGAL 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, then delete this
message and empty from your trash.


--
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 


_
LEGAL 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, then delete this
message and empty from your trash.


--
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: Virtual

2008-10-16 Thread Anne Lynn Wheeler
The following message is a courtesy copy of an article
that has been posted to bit.listserv.ibm-main as well.


[EMAIL PROTECTED] (Thomas Kern) writes:
 I thought the early prototype of this was the Single-System-Image code
 written at University of Waterloo back in the early 1980's. I tried to
 convince management that it would be cheaper to use it to glue
 together a slew of surplus 4341s than some of the other alternatives.

re:
http://www.garlic.com/~lynn/2008o.html#55 Virtual
http://www.garlic.com/~lynn/2008o.html#56 Virtual

Separate from the virtual machine based commercial timesharing service
bureaus
http://www.garlic.com/~lynn/submain.html#timeshare

As part of consolidating the several US HONE datacenters in a single
location (northern cal) in the mid-70s ... there was work on supporting
single-system image.
http://www.garlic.com/~lynn/subtopic.html#hone

By 78/79 there was front-end load balancing and other
single-system-image support ... across multiple multiprocessor machines
in large loosely-couple environment (at the time, possibly the largest
single-system-image operation anywhere). Then because of natural
disaster considerations ... the load-balancing was extended to a
replicated 2nd HONE datacenter in Dallas and then a replicated 3rd HONE
datacenter in Boulder (there were approaching 40k defined userid on the
US HONE system complex ... and mainframe orders couldn't even be
submitted w/o first having been processed by HONE).

Note that while the HONE support provided load balancing across the
complex and various other single-system-image transparency ... it didn't
support process (virtual machine) migration between different machines
in loosely-coupled complex.

In the very early 80s, SJR started a 4341 vm-based cluster project using
3088/trotter (this was before moving up the hill to almaden). One of the
big problems before being released as a product, they had to migrate the
implementation to standard SNA protocol. This had disastrous effects on
the cluster operation efficiency. For instance, the original cluster
syncronization process that took very small subsecond elapsed time,
increased two orders of magnitude when migrated to standard SNA protocol
(over 30 seconds elapsed time).

-- 
40+yrs virtualization experience (since Jan68), online at home since Mar70

--
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



  1   2   >