Re: zPRIME is Dead - Neon Surrenders to IBM

2011-06-01 Thread Paul Gilmartin
On Tue, 31 May 2011 23:48:41 -0500, Jim Thomas wrote:

Ma'am,

Personally ... I'd like to see a suit between Microdaft and IBM.

Ummm...  Which snake can open its jaws wider?

-- gil

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


Re: XMIT INMR01 record question

2011-06-01 Thread Paul Gilmartin
On Tue, 31 May 2011 22:41:06 -0400, George, Kevin A wrote:

   You can set the nodename in the SYS1.PARMLIB member IKJTSO00. There is a 
 section called TRANSREC that is used for the defaults for the TRANSMIT and 
 RECEIVE commands.

You may be able to, but I may not.

This is a problem for someone who wishes to use TRANSMIT as an interchange
protocol but does not wish to disclose one's internal host names, user IDs
or data set names.

One is reduced to writing a program to edit the INMR* units post facto.
Actually not too hard because the package is not protected by any sort
of checksum.

For an approach on the Other Side, search Google for INMR123.

-- gil

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


Re: zPRIME is Dead - Neon Surrenders to IBM

2011-06-01 Thread David Crayford

On 1/06/2011 2:29 PM, Paul Gilmartin wrote:

On Tue, 31 May 2011 23:48:41 -0500, Jim Thomas wrote:


Ma'am,

Personally ... I'd like to see a suit between Microdaft and IBM.


Ummm...  Which snake can open its jaws wider?


Last time they had a big scrap Microsoft ended up the winner! Anybody 
remember OS2?




-- gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


AUTO: Jorge Martin Badenas is out of the office. (returning 06/06/2011)

2011-06-01 Thread Jorge Martin Badenas
I am out of the office until 06/06/2011.

I will respond to your message when I return.


Note: This is an automated response to your message  IBM-MAIN Digest - 30
May 2011 to 31 May 2011 (#2011-151) sent on 1/6/11 6:00:04.

This is the only notification you will receive while this person is away.

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Charles Mills
This thread has been really informative. I am going to put this to use. I
have code that is executing a million or so ~8K MVCLs a day. I have other
things on my plate at the moment but I will replace that with an MVC loop at
some point.

It seems to me like the ideal way to do this would be to have not two stages
(MVC for 256 and EX'ed MVC) but rather three cases: A loop with a
hard-coded or unrolled string of 16 MVC's that moved 4K blocks and
incremented registers by 4K on each iteration; followed by a loop of
256-byte MVCs; followed by an EX'ed MVC for 1 to 255 bytes. (Obviously each
step would be optional depending on the exact count.)

Thoughts?

Charles

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf
Of David Crayford
Sent: Tuesday, May 31, 2011 8:32 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: What is the current feeling for MVC loop vs. MVCL?

On 1/06/2011 12:13 AM, Kirk Wolf wrote:
 The IBM C compiler would generate an MVC loop.   So, that's how IBM feels
I
 guess.


And when the length is a constant it generates multiple MVC instructions to
eliminate branches. Kind of like loop unrolling.

*
*char input[528];
*
*memcpy( output, input, sizeof input );
MVC  (*)void(256,r1,0),input(r4,1508)
MVC  (*)void(256,r1,256),input(r4,1764)
MVC  (*)void(16,r1,512),input(r4,2020)

And if you increase the size of the buffer it generates a loop with loop
unrolling (if that makes sense). There seems to be a HWM where it drops into
a loop.

*
*char input[1];
*
*memcpy( output, input, sizeof input );
LA   r0,5
LA   r6,2176(r4,)
@2L4 DS   0H
MVC  (*)void(256,r1,0),input(r6,0)
MVC  (*)void(256,r1,256),input(r6,256)
MVC  (*)void(256,r1,512),input(r6,512)
MVC  (*)void(256,r1,768),input(r6,768)
MVC  (*)void(256,r1,1024),input(r6,1024)
MVC  (*)void(256,r1,1280),input(r6,1280)
MVC  (*)void(256,r1,1536),input(r6,1536)
LA   r1,(*)void(,r1,1792)
LA   r6,input(,r6,1792)
BRCT r0,@2L4
MVC  (*)void(256,r1,0),input(r6,0)
MVC  (*)void(256,r1,256),input(r6,256)
MVC  (*)void(256,r1,512),input(r6,512)
MVC  (*)void(256,r1,768),input(r6,768)
MVC  (*)void(16,r1,1024),input(r6,1024)

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


Re: zPRIME is Dead - Neon Surrenders to IBM

2011-06-01 Thread Chris Hoelscher
So - that's what the Beatles were really saying when you play revolution #9 
backwards:

 Turn NEON dead, man.. Turn NEON dead, man ...


The information transmitted is intended only for the person or entity to which 
it is addressed and may contain CONFIDENTIAL material.  If you receive this 
material/information in error, please contact the sender and delete or destroy 
the material/information.

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


Re: zPRIME is Dead - Neon Surrenders to IBM

2011-06-01 Thread Binyamin Dissen
Still on their web site:

http://www.neonsoft.com/solutions/zprime.shtm

--
Binyamin Dissen bdis...@dissensoftware.com
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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Gerhard Postpischil

On 6/1/2011 9:19 AM, Charles Mills wrote:

It seems to me like the ideal way to do this would be to have not two stages
(MVC for 256 and EX'ed MVC) but rather three cases: A loop with a
hard-coded or unrolled string of 16 MVC's that moved 4K blocks and
incremented registers by 4K on each iteration; followed by a loop of
256-byte MVCs; followed by an EX'ed MVC for 1 to 255 bytes. (Obviously each
step would be optional depending on the exact count.)


If you go through this exercise, I'd also suggest one (minor?) 
variation - variable MVCs to bump the starting address up to a 
4K multiple (if needed), then the 4K byte moves, then some more 
short ones, as needed. It would be instructive to see whether 
that's faster than a set of unaligned moves.



Gerhard Postpischil
Bradford, VT

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Rob Scott
I am going to digress a bit here.

I got into a discussion with Martin Packer about some of this and it raised a 
few interesting thoughts :

(1) What percentage of executed MVCL instructions are for clearing storage 
versus actually moving data?

I know that in the software I am involved in, that MVCL(*) for clearing is 
used *way* more than any movement purposes as I am a heavy user of CPOOL 
services. 

Obviously you can have fast clear for objects with lengths that 256-multiple 
using n*XC  - however I have often wished for a ZERO=YES option on the CPOOL 
BUILD so that you are guaranteed a clean cell for each subsequent CPOOL GET. If 
anyone else agrees, I might consider raising a Share requirement 

(2) Is there any performance difference in MVCL when L2 is zero? 

I seem to recall hearing a while ago that there might be...however am not sure.

(3) How does MVC v MVCL compare in AR mode with source and target using 
different ALETs ?


(*) Yes - I have a @MVCL macro too :-) 

 

Rob Scott
Lead Developer
Rocket Software
275 Grove Street * Newton, MA 02466-2272 * USA
Tel: +1.617.614.2305
Email: rsc...@rs.com
Web: www.rocketsoftware.com

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Charles Mills
Sent: 01 June 2011 14:20
To: IBM-MAIN@bama.ua.edu
Subject: Re: What is the current feeling for MVC loop vs. MVCL?

This thread has been really informative. I am going to put this to use. I have 
code that is executing a million or so ~8K MVCLs a day. I have other things on 
my plate at the moment but I will replace that with an MVC loop at some point.

It seems to me like the ideal way to do this would be to have not two stages 
(MVC for 256 and EX'ed MVC) but rather three cases: A loop with a hard-coded 
or unrolled string of 16 MVC's that moved 4K blocks and incremented registers 
by 4K on each iteration; followed by a loop of 256-byte MVCs; followed by an 
EX'ed MVC for 1 to 255 bytes. (Obviously each step would be optional depending 
on the exact count.)

Thoughts?

Charles

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
David Crayford
Sent: Tuesday, May 31, 2011 8:32 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: What is the current feeling for MVC loop vs. MVCL?

On 1/06/2011 12:13 AM, Kirk Wolf wrote:
 The IBM C compiler would generate an MVC loop.   So, that's how IBM feels
I
 guess.


And when the length is a constant it generates multiple MVC instructions to 
eliminate branches. Kind of like loop unrolling.

*
*char input[528];
*
*memcpy( output, input, sizeof input );
MVC  (*)void(256,r1,0),input(r4,1508)
MVC  (*)void(256,r1,256),input(r4,1764)
MVC  (*)void(16,r1,512),input(r4,2020)

And if you increase the size of the buffer it generates a loop with loop 
unrolling (if that makes sense). There seems to be a HWM where it drops into a 
loop.

*
*char input[1];
*
*memcpy( output, input, sizeof input );
LA   r0,5
LA   r6,2176(r4,)
@2L4 DS   0H
MVC  (*)void(256,r1,0),input(r6,0)
MVC  (*)void(256,r1,256),input(r6,256)
MVC  (*)void(256,r1,512),input(r6,512)
MVC  (*)void(256,r1,768),input(r6,768)
MVC  (*)void(256,r1,1024),input(r6,1024)
MVC  (*)void(256,r1,1280),input(r6,1280)
MVC  (*)void(256,r1,1536),input(r6,1536)
LA   r1,(*)void(,r1,1792)
LA   r6,input(,r6,1792)
BRCT r0,@2L4
MVC  (*)void(256,r1,0),input(r6,0)
MVC  (*)void(256,r1,256),input(r6,256)
MVC  (*)void(256,r1,512),input(r6,512)
MVC  (*)void(256,r1,768),input(r6,768)
MVC  (*)void(16,r1,1024),input(r6,1024)

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: zPRIME is Dead - Neon Surrenders to IBM

2011-06-01 Thread Mark Zelden
On Wed, 1 Jun 2011 17:19:38 +0300, Binyamin Dissen
bdis...@dissensoftware.com wrote:

Still on their web site:

http://www.neonsoft.com/solutions/zprime.shtm

--

On the bottom of that page, click on the link that says zPrime Press Releases:

http://www.neon.com/neon/newspr.shtm

05/31/11–   NEON Settles Legal Dispute With IBM
http://www.neon.com/neon/news_053111.shtm

--
Mark Zelden - Zelden Consulting Services - z/OS, OS/390 and MVS   
mailto:m...@mzelden.com
Mark's MVS Utilities: http://www.mzelden.com/mvsutil.html 
Systems Programming expert at http://expertanswercenter.techtarget.com/

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


DFSMShsm SETSYS AUTOBACKUPSTART Query

2011-06-01 Thread George Rodriguez
I issued a command to change the the start time for the command from 3:00 to
3:30. Is there a query command that would display the time for verification?

TIA. . .
*
*
*George Rodriguez*
*Specialist II - IT Solutions*
*Application Support / Quality Assurance*
*PX - 47652*
*(561) 357-7652 (office)*
*(561) 707-3496 (mobile)*
*School District of Palm Beach County*
*3348 Forest Hill Blvd.*
*Room B-332*
*West Palm Beach, FL. 33406-5869*
*Florida's Only A-Rated Urban District For Six Consecutive Years*

Home of Florida's first LEED Gold Certified School

Under Florida law, e-mail addresses are public records. If you do not want your 
e-mail address
released in response to a public records request, do not send electronic mail 
to this entity. 
Instead, contact this office by phone or in writing.

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Richard L Peurifoy

On 6/1/2011 9:27 AM, Gerhard Postpischil wrote:

On 6/1/2011 9:19 AM, Charles Mills wrote:

It seems to me like the ideal way to do this would be to have not two
stages
(MVC for 256 and EX'ed MVC) but rather three cases: A loop with a
hard-coded or unrolled string of 16 MVC's that moved 4K blocks and
incremented registers by 4K on each iteration; followed by a loop of
256-byte MVCs; followed by an EX'ed MVC for 1 to 255 bytes. (Obviously
each
step would be optional depending on the exact count.)


If you go through this exercise, I'd also suggest one (minor?) variation
- variable MVCs to bump the starting address up to a 4K multiple (if
needed), then the 4K byte moves, then some more short ones, as needed.
It would be instructive to see whether that's faster than a set of
unaligned moves.


I seem to recall that there was some optimization in MVCL for 4K
aligned moves. Maybe it would be better to use MVC's to get to 4K,
and then switch to MVCL's. However all this checking may overwhelm
the savings.

Note, I have not verified my recollection of this.

--
Richard

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Tom Marchant
On Wed, 1 Jun 2011 10:26:37 -0400, Gerhard Postpischil suggested:

variable MVCs to bump the starting address up to a
4K multiple (if needed)

Of the source or the destination?

-- 
Tom Marchant

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


z/OS System Programmer Needed East Coast

2011-06-01 Thread Jim Marshall
I am aware of a need for a z/OS Systems Programmer to work under contract 
at Ft Meade, MD southwest of Baltimore and northeast of Washington DC.  
The person should already have a minimum Top Secret clearance in place. If 
any further clearances are needed the firm will sponsor and get the higher 
level clearances needed.  

Oh yes, undoubtly you have heard it is expensive to live here and I will say 
housing is not cheap depending on your needs. But in general I can here in the 
1970s in the military and ended up staying. This area has been almost 
recession proof with pay scales which have not really come down much at all. 
The folks I have hired here are quite happy and doing quite well. Most 
everything else you need entertainment wise is free.  If someone wants to 
chat about specific costs, let me know.

If someone is interested, contact me offlist and I can point you in the right 
direction.   

Jim   jim.marsh...@opm.gov

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread john gilmore
The optimizations that compilers use are certainly interesting in the sense 
that there are things to be learned from them.
 
They do, however, have two limitations.  They are particularist, appropriate 
usually but not always to the run-time environment in which a particular 
compiler's output will be executed but often less so in a different 
environment.  (Both advantages and disadvantages have, for example, attended 
the use of shared optimizing machinery by IBM PL/I and C.)  
 
These optimizations are also devised by groups whose full-time job is to 
optimize code skeletons that are used stereotypically in compiler-generated 
code; and these groups inevitably come to have a vested interest in cleverness, 
i.e., non-standard, less than obvious ways of doing things. 
 
I have been dismayed by this thread.  It would be better for almost all of us 
almost all of the time to use MVCLs, devoting the time not wasted by examining 
clever alternatives to them to more significant problems.  

John Gilmore Ashland, MA 01721-1817 USA

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


Re: DFSMShsm SETSYS AUTOBACKUPSTART Query

2011-06-01 Thread Gonzalo Cengotita
George,

You can display it with query setsys:

 ABSTART=(time1 time2 time3)


Regards,

Gonzalo Cengotita


On Wed, Jun 1, 2011 at 4:43 PM, George Rodriguez 
george.rodrig...@palmbeachschools.org wrote:

 I issued a command to change the the start time for the command from 3:00
 to
 3:30. Is there a query command that would display the time for
 verification?

 TIA. . .
 *
 *
 *George Rodriguez*
 *Specialist II - IT Solutions*
 *Application Support / Quality Assurance*
 *PX - 47652*
 *(561) 357-7652 (office)*
 *(561) 707-3496 (mobile)*
 *School District of Palm Beach County*
 *3348 Forest Hill Blvd.*
 *Room B-332*
 *West Palm Beach, FL. 33406-5869*
 *Florida's Only A-Rated Urban District For Six Consecutive Years*

 Home of Florida's first LEED Gold Certified School

 Under Florida law, e-mail addresses are public records. If you do not want
 your e-mail address
 released in response to a public records request, do not send electronic
 mail to this entity.
 Instead, contact this office by phone or in writing.

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




-- 

  Gonzalo Cengotita Quirce

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Anne Lynn Wheeler
john_w_gilm...@msn.com (john gilmore) writes:
 These optimizations are also devised by groups whose full-time job is
 to optimize code skeletons that are used stereotypically in
 compiler-generated code; and these groups inevitably come to have a
 vested interest in cleverness, i.e., non-standard, less than obvious
 ways of doing things.

more recent state-of-the-art ... is to build a model of the hardware 
instruction operation ... and have code that selects instruction
combinations based on specified cycles (or some other criteria) ... that
code is now finding non-standard, possibly non-obvious, instruction
sequences (also makes it easier to do large number of backends across
variety of different machine architectures). Part of machine model (for
execution) includes things like out-of-order execution dependencies.

long ago and far away, early cp67 (virtual machine precursor to vm370,
ran on 360/67) shipped with virtual address tables initialized pointing
to a special zeros page on disk. I changed that to indicate a zeros
page and just cleared the storage to zeros. Common operation of the
period was to use (multiple) overlapping MVC. I did implementation that
saved registers, zero'ed ten registers and did BXLE STM loop for those
ten registers (significantly faster than overlapping MVC ... on 360/67).

GCC 4.6
http://gcc.gnu.org/gcc-4.6/changes.html

from above:

S/390, zSeries and System z9/z10, IBM zEnterprise z196

Support for the zEnterprise z196 processor has been added. When using
the -march=z196 option, the compiler will generate code making use of
the following instruction facilities:

Conditional load/store
Distinct-operands
Floating-point-extension
Interlocked-access
Population-count

The -mtune=z196 option avoids the compare and branch instructions as
well as the load address instruction with an index register as much as
possible and performs instruction scheduling appropriate for the new
out-of-order pipeline architecture.

When using the -m31 -mzarch options the generated code still conforms to
the 32-bit ABI but uses the general purpose registers as 64-bit
registers internally. This requires a Linux kernel saving the whole
64-bit registers when doing a context switch. Kernels providing that
feature indicate that by the 'highgprs' string in /proc/cpuinfo.

The SSA loop prefetching pass is enabled when using -O3.

... snip ...

-- 
virtualization experience starting Jan1968, online at home since Mar1970

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


Re: DFSMShsm SETSYS AUTOBACKUPSTART Query

2011-06-01 Thread George Rodriguez
I did that, but there's so much information that came back, that I missed
it. I even tried running a job, but the output still came back to my screen.
Do you know of anything that would capture the information so I can use the
find command?

BTW, by the 3rd time I did the command, I did find it:

MAXBACKUPTASKS=15, ABSTART= (0330 0630 0730), VERSIONS=010,

Thanks. . .
*
*
*George Rodriguez*
*Specialist II - IT Solutions*
*Application Support / Quality Assurance*
*PX - 47652*
*(561) 357-7652 (office)*
*(561) 707-3496 (mobile)*
*School District of Palm Beach County*
*3348 Forest Hill Blvd.*
*Room B-332*
*West Palm Beach, FL. 33406-5869*
*Florida's Only A-Rated Urban District For Six Consecutive Years*



On Wed, Jun 1, 2011 at 11:11 AM, Gonzalo Cengotita
gonzaloce...@gmail.comwrote:

 George,

 You can display it with query setsys:

  ABSTART=(time1 time2 time3)


 Regards,

 Gonzalo Cengotita


 On Wed, Jun 1, 2011 at 4:43 PM, George Rodriguez 
 george.rodrig...@palmbeachschools.org wrote:

  I issued a command to change the the start time for the command from 3:00
  to
  3:30. Is there a query command that would display the time for
  verification?
 
  TIA. . .
  *
  *
  *George Rodriguez*
  *Specialist II - IT Solutions*
  *Application Support / Quality Assurance*
  *PX - 47652*
  *(561) 357-7652 (office)*
  *(561) 707-3496 (mobile)*
  *School District of Palm Beach County*
  *3348 Forest Hill Blvd.*
  *Room B-332*
  *West Palm Beach, FL. 33406-5869*
  *Florida's Only A-Rated Urban District For Six Consecutive Years*
 
  Home of Florida's first LEED Gold Certified School
 
  Under Florida law, e-mail addresses are public records. If you do not
 want
  your e-mail address
  released in response to a public records request, do not send electronic
  mail to this entity.
  Instead, contact this office by phone or in writing.
 
  --
  For IBM-MAIN subscribe / signoff / archive access instructions,
  send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
  Search the archives at http://bama.ua.edu/archives/ibm-main.html
 



 --

  Gonzalo Cengotita Quirce

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


Home of Florida's first LEED Gold Certified School

Under Florida law, e-mail addresses are public records. If you do not want your 
e-mail address
released in response to a public records request, do not send electronic mail 
to this entity. 
Instead, contact this office by phone or in writing.

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


Re: DFSMShsm SETSYS AUTOBACKUPSTART Query

2011-06-01 Thread Eric Bielefeld
If this is a permanent change, don't forget to change the startup deck.

--
Eric Bielefeld
Systems Programmer


 Gonzalo Cengotita gonzaloce...@gmail.com wrote: 
 George,
 
 You can display it with query setsys:
 
  ABSTART=(time1 time2 time3)
 
 
 Regards,
 
 Gonzalo Cengotita
 
 
 On Wed, Jun 1, 2011 at 4:43 PM, George Rodriguez 
 george.rodrig...@palmbeachschools.org wrote:
 
  I issued a command to change the the start time for the command from 3:00
  to
  3:30. Is there a query command that would display the time for
  verification?
 
  TIA. . .
  *
  *
  *George Rodriguez*

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


Re: DFSMShsm SETSYS AUTOBACKUPSTART Query

2011-06-01 Thread George Rodriguez
Already done...but thanks for the reminder. I always make the change to the
ARCCMD00 first.
*
*
*George Rodriguez*
*Specialist II - IT Solutions*
*Application Support / Quality Assurance*
*PX - 47652*
*(561) 357-7652 (office)*
*(561) 707-3496 (mobile)*
*School District of Palm Beach County*
*3348 Forest Hill Blvd.*
*Room B-332*
*West Palm Beach, FL. 33406-5869*
*Florida's Only A-Rated Urban District For Six Consecutive Years*



On Wed, Jun 1, 2011 at 11:27 AM, Eric Bielefeld eric-ibmm...@wi.rr.comwrote:

 If this is a permanent change, don't forget to change the startup deck.

 --
 Eric Bielefeld
 Systems Programmer


  Gonzalo Cengotita gonzaloce...@gmail.com wrote:
  George,
 
  You can display it with query setsys:
 
   ABSTART=(time1 time2 time3)
 
 
  Regards,
 
  Gonzalo Cengotita
 
 
  On Wed, Jun 1, 2011 at 4:43 PM, George Rodriguez 
  george.rodrig...@palmbeachschools.org wrote:
 
   I issued a command to change the the start time for the command from
 3:00
   to
   3:30. Is there a query command that would display the time for
   verification?
  
   TIA. . .
   *
   *
   *George Rodriguez*

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


Home of Florida's first LEED Gold Certified School

Under Florida law, e-mail addresses are public records. If you do not want your 
e-mail address
released in response to a public records request, do not send electronic mail 
to this entity. 
Instead, contact this office by phone or in writing.

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


Re: DFSMShsm SETSYS AUTOBACKUPSTART Query

2011-06-01 Thread Gerhard Weisshaar

George,

try this one: QUERY BACKUP

Kind regards Gerhard

Am 01.06.2011 16:43, schrieb George Rodriguez:

I issued a command to change the the start time for the command from 3:00 to
3:30. Is there a query command that would display the time for verification?

TIA. . .
*
*
*George Rodriguez*
*Specialist II - IT Solutions*
*Application Support / Quality Assurance*
*PX - 47652*
*(561) 357-7652 (office)*
*(561) 707-3496 (mobile)*
*School District of Palm Beach County*
*3348 Forest Hill Blvd.*
*Room B-332*
*West Palm Beach, FL. 33406-5869*
*Florida's Only A-Rated Urban District For Six Consecutive Years*

Home of Florida's first LEED Gold Certified School

Under Florida law, e-mail addresses are public records. If you do not want your 
e-mail address
released in response to a public records request, do not send electronic mail 
to this entity.
Instead, contact this office by phone or in writing.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: DFSMShsm SETSYS AUTOBACKUPSTART Query

2011-06-01 Thread Brian Fraser
QUERY BACKUP will give you less output to sift through.

On Wed, Jun 1, 2011 at 11:11 PM, Gonzalo Cengotita
gonzaloce...@gmail.com wrote:
 George,

 You can display it with query setsys:

  ABSTART=(time1 time2 time3)


 Regards,

 Gonzalo Cengotita


 On Wed, Jun 1, 2011 at 4:43 PM, George Rodriguez 
 george.rodrig...@palmbeachschools.org wrote:

 I issued a command to change the the start time for the command from 3:00
 to
 3:30. Is there a query command that would display the time for
 verification?

 TIA. . .
 *
 *
 *George Rodriguez*
 *Specialist II - IT Solutions*
 *Application Support / Quality Assurance*
 *PX - 47652*
 *(561) 357-7652 (office)*
 *(561) 707-3496 (mobile)*
 *School District of Palm Beach County*
 *3348 Forest Hill Blvd.*
 *Room B-332*
 *West Palm Beach, FL. 33406-5869*
 *Florida's Only A-Rated Urban District For Six Consecutive Years*

 Home of Florida's first LEED Gold Certified School

 Under Florida law, e-mail addresses are public records. If you do not want
 your e-mail address
 released in response to a public records request, do not send electronic
 mail to this entity.
 Instead, contact this office by phone or in writing.

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




 --

  Gonzalo Cengotita Quirce

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: DFSMShsm SETSYS AUTOBACKUPSTART Query

2011-06-01 Thread George Rodriguez
Yep, that one's not too bad. 1 screen shows:

MAXBACKUPTASKS=15, ABSTART= (0330 0630 0730), VERSIONS=010,

Although the immediate problem is solved, it would be nice if there was a
way to capture the screen. I have a Rexx exec called TSOCAP, but it won't
work on DFSMShsm commands.

Thanks. . .
*
*
*George Rodriguez*
*Specialist II - IT Solutions*
*Application Support / Quality Assurance*
*PX - 47652*
*(561) 357-7652 (office)*
*(561) 707-3496 (mobile)*
*School District of Palm Beach County*
*3348 Forest Hill Blvd.*
*Room B-332*
*West Palm Beach, FL. 33406-5869*
*Florida's Only A-Rated Urban District For Six Consecutive Years*



On Wed, Jun 1, 2011 at 11:35 AM, Gerhard Weisshaar 
gerhard_weissh...@compuserve.com wrote:

 George,

 try this one: QUERY BACKUP

 Kind regards Gerhard

 Am 01.06.2011 16:43, schrieb George Rodriguez:

 I issued a command to change the the start time for the command from 3:00
 to
 3:30. Is there a query command that would display the time for
 verification?

 TIA. . .
 *
 *
 *George Rodriguez*
 *Specialist II - IT Solutions*
 *Application Support / Quality Assurance*
 *PX - 47652*
 *(561) 357-7652 (office)*
 *(561) 707-3496 (mobile)*
 *School District of Palm Beach County*
 *3348 Forest Hill Blvd.*
 *Room B-332*
 *West Palm Beach, FL. 33406-5869*
 *Florida's Only A-Rated Urban District For Six Consecutive Years*

 Home of Florida's first LEED Gold Certified School

 Under Florida law, e-mail addresses are public records. If you do not want
 your e-mail address
 released in response to a public records request, do not send electronic
 mail to this entity.
 Instead, contact this office by phone or in writing.

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html


Home of Florida's first LEED Gold Certified School

Under Florida law, e-mail addresses are public records. If you do not want your 
e-mail address
released in response to a public records request, do not send electronic mail 
to this entity. 
Instead, contact this office by phone or in writing.

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Anne Lynn Wheeler
re:
http://www.garlic.com/~lynn/2011g.html#57 What is the current feeling for MVC 
loop vs. MVCL?

other recent gcc reference:
http://www.garlic.com/~lynn/2011g.html#50 My first mainframe experience

... and recent reference to out-of-order pipeline introduced
http://www.garlic.com/~lynn/2011f.html#46 At least two decades back, some gurus 
predicted that mainframes would disappear in future and it still has not 
happened

mentions that introduction of out-of-order in most recent mainframe
accounts for significant part of throughput increase (although it has
been in other architectures for decades).

decades ago, out-of-order was given as major rise of advanced compilers
for high-throughput optimization ... since internal machine processing
was getting a lot more complex with various kinds of instruction
interdependencies and complex dataflow ... becoming harder and harder to
address with manual effort.

-- 
virtualization experience starting Jan1968, online at home since Mar1970

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Jim Mulder
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu wrote on 06/01/2011 
10:33:51 AM:

 Rob Scott rsc...@rocketsoftware.com

 I know that in the software I am involved in, that MVCL(*) for 
 clearing is used *way* more than any movement purposes as I am a 
 heavy user of CPOOL services. 
 
 Obviously you can have fast clear for objects with lengths that 
 256-multiple using n*XC  - however I have often wished for a 
 ZERO=YES option on the CPOOL BUILD so that you are guaranteed a 
 clean cell for each subsequent CPOOL GET. If anyone else agrees, I 
 might consider raising a Share requirement 

  Such a requirement would likely be rejected.  There isn't anything
CPOOL can do to obtain better performance for clearing a cell than 
what you can do in your own code.  Clearing done by CPOOL would be
guaranteed to be at least marginally slower, and in some cases
considerably slower, than clearing done by your code. 
 
 (2) Is there any performance difference in MVCL when L2 is zero? 

  Well, at least you can't get any cache misses on the source
when the source length is zero. 

 -Original Message-
 Behalf Of Charles Mills
 Sent: 01 June 2011 14:20
 Subject: Re: What is the current feeling for MVC loop vs. MVCL?
 
 This thread has been really informative. I am going to put this to 
 use. I have code that is executing a million or so ~8K MVCLs a day. 
 I have other things on my plate at the moment but I will replace 
 that with an MVC loop at some point.
 
 It seems to me like the ideal way to do this would be to have not 
 two stages (MVC for 256 and EX'ed MVC) but rather three cases: A 
 loop with a hard-coded or unrolled string of 16 MVC's that moved
 4K blocks and incremented registers by 4K on each iteration; 
 followed by a loop of 256-byte MVCs; followed by an EX'ed MVC for 1 
 to 255 bytes. (Obviously each step would be optional depending on 
 the exact count.)
 
 Thoughts?

  If your 8K MVCLs have 4K-aligned sources and targets, then
they may be taking advantage of the page mover hardware.  In that
case, MVCs could be considerably slower. 


Jim Mulder   z/OS System Test   IBM Corp.  Poughkeepsie,  NY

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


Re: z/OS System Programmer Needed East Coast

2011-06-01 Thread Eric Chevalier
On 1 Jun 2011 07:58:33 -0700, in bit.listserv.ibm-main you wrote:

I am aware of a need for a z/OS Systems Programmer to work under contract 
at Ft Meade, MD southwest of Baltimore and northeast of Washington DC.  
The person should already have a minimum Top Secret clearance in place. If 
any further clearances are needed the firm will sponsor and get the higher 
level clearances needed.  

Why do the letters N S A keep popping into my mind??? :-)

Eric

--
Eric Chevalier  E-mail: et...@tulsagrammer.com
   Web: www.tulsagrammer.com
Is that call really worth your childapos;s life?  HANG UP AND DRIVE!

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Tony Harminc
On 1 June 2011 12:32, Jim Mulder d10j...@us.ibm.com wrote:

  If your 8K MVCLs have 4K-aligned sources and targets, then
 they may be taking advantage of the page mover hardware.  In that
 case, MVCs could be considerably slower.

I had been about to suggest the MVPG instruction, but it's quite
possible that MVCL will use the same infrastructure if circumstances
are right. One imagines that with fewer options and special cases to
evaluate, fewer registers to tie up and none to update, for MVPG the
setup would be shorter, and the execution at least as fast. But one's
imagination is often not a good guide; I have a rather casual
benchmark for these two (that is, MVCL of 4k on a page boundary vs
MVPG with no fancy options) that shows MVPG just barely beating MVCL
on a z10, and losing heavily on all earlier machines I had access to
(P390, zPDT, MP3000, FLEX/ES and z9).

John Gilmore's points are well taken. If I may suggest one more,
loosely put, it is to use instructions for what they are usually used
for (which is, even more approximately, what they are documented to be
used for). This is likely to take advantage of hardware optimizations
over time without forcing a tight binding to the hardware of the day.
The assembler programmer does not have an easy way to recompile and
take advantage of whatever the hardware implementors and compiler
designers have come up with since the code was written.

Tony H.

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Charles Mills
Or devoting the time to figuring out how not to MVC(L) the data at all.
Pointers are your friend. Of course, sometimes you have to move the data.

Charles

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf
Of john gilmore
Sent: Wednesday, June 01, 2011 8:02 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: What is the current feeling for MVC loop vs. MVCL?

The optimizations that compilers use are certainly interesting in the
sense that there are things to be learned from them.
 
They do, however, have two limitations.  They are particularist, appropriate
usually but not always to the run-time environment in which a particular
compiler's output will be executed but often less so in a different
environment.  (Both advantages and disadvantages have, for example, attended
the use of shared optimizing machinery by IBM PL/I and C.)  
 
These optimizations are also devised by groups whose full-time job is to
optimize code skeletons that are used stereotypically in compiler-generated
code; and these groups inevitably come to have a vested interest in
cleverness, i.e., non-standard, less than obvious ways of doing things. 
 
I have been dismayed by this thread.  It would be better for almost all of
us almost all of the time to use MVCLs, devoting the time not wasted by
examining clever alternatives to them to more significant problems.  

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


Re: PF9 Swap question

2011-06-01 Thread Shmuel Metz (Seymour J.)
In banlktikpywqehy10mzctl6hgbned8p+...@mail.gmail.com, on 05/31/2011
   at 10:14 AM, Mark Pace pacemainl...@gmail.com said:

Just back from vacation and find this thread very educational.  Is
there a place where I can define the SCRNAME at logon instead of
having to enter them each time I logon?

I didn't think there was, but Steve Comstock posted a message stating
otherwise.

If his MYSTART doesn't do what you want, can you make a business case
for allowing an ISPF initialization script capable of creating and
naming screens? If so, try submitting a requirement.
 
-- 
 Shmuel (Seymour J.) Metz, SysProg and JOAT
 ISO position; see http://patriot.net/~shmuel/resume/brief.html 
We don't care. We don't have to care, we're Congress.
(S877: The Shut up and Eat Your spam act of 2003)

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


Re: PF9 Swap question

2011-06-01 Thread Steve Comstock

On 6/1/2011 11:26 AM, Shmuel Metz (Seymour J.) wrote:

Inbanlktikpywqehy10mzctl6hgbned8p+...@mail.gmail.com, on 05/31/2011
at 10:14 AM, Mark Pacepacemainl...@gmail.com  said:


Just back from vacation and find this thread very educational.  Is
there a place where I can define the SCRNAME at logon instead of
having to enter them each time I logon?


I didn't think there was, but Steve Comstock posted a message stating
otherwise.


No, you misunderstood or I misspoke. MYSTART is a REXX dialog
you need to run after getting into ISPF, not at TSO logon. It
does encapsulate a series of ISPSTRT and SCRNAME commands so you
end up with a consistent set of screens.



If his MYSTART doesn't do what you want, can you make a business case
for allowing an ISPF initialization script capable of creating and
naming screens? If so, try submitting a requirement.



Since this is not copyrighted and is based on someone's prior
code that I just modified for my own needs, here's a version
of the MYSTART dialog; see if it works for you:

 /* rexx   Ver4 */

  address ispexec

  'vget zdel'

  'select pgm(ispstrt) ' ,
  'parm(scrname on'zdel'scrname code perm'zdel' ' ,
  ' =3.4'zdel'swap last) suspend'

  'select pgm(ispstrt) parm(scrname jcl perm'zdel' ' ,
  ' =3.4'zdel'swap last)  suspend'

  'select pgm(ispstrt) parm(scrname sdsf perm'zdel' ',
  ' =sd'zdel'st'zdel'swap last) suspend'

  'select pgm(ispstrt) parm(scrname cmd perm'zdel' '  ,
  ' =6'zdel'swap last)  suspend '

  cmd = scrname one perm
  'display command(cmd) panel(ispblank)'



--

Kind regards,

-Steve Comstock
The Trainer's Friend, Inc.

303-393-8716
http://www.trainersfriend.com

* To get a good Return on your Investment, first make an investment!
  + Training your people is an excellent investment

* Try our new tool for calculating your Return On Investment
for training dollars at
  http://www.trainersfriend.com/ROI/roi.html

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


FW: Neon/IBM settle over zPrime

2011-06-01 Thread Dell'Anno, Aurora Emanuela
for anyone interested, zPrime is dead.

 

http://www.thestreet.com/story/11138354/1/neon-settles-legal-dispute-wit
h-ibm.html

 

 

 


Thanks. 
  

Aurora 


Aurora Emanuela Dell'Anno
CA Technology - MSC
Sr. Engineering Services Architect
Tel:  +44 (0)1753 577 733
Mobile:  +44 (0)7768 235 339
aurora.della...@ca.com
mailto:aurora.della...@ca.com 
CA Technology RD Limited, Ditton Park, Riding Court Road, Datchet,
Slough, Berkshire, England SL3 9LL. 

CA Technology RD Limited is a company registered in England and Wales
under company registration number 07251836 with its registered office at
the address set out above. VAT number 697904179. 


http://www.ca.com/ 

P please don't print this e-mail unless you really need to! 


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


Re: DFSMShsm SETSYS AUTOBACKUPSTART Query

2011-06-01 Thread Gibney, Dave
/F DFHSM,QUERY SETSYS keeps the output in the syslog. Works with SDSF
and E/JES if you have access to the log.

Dave Gibney
Information Technology Services
Washington State University


 -Original Message-
 From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
 Behalf Of George Rodriguez
 Sent: Wednesday, June 01, 2011 8:57 AM
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: DFSMShsm SETSYS AUTOBACKUPSTART Query
 
 Yep, that one's not too bad. 1 screen shows:
 
 MAXBACKUPTASKS=15, ABSTART= (0330 0630 0730), VERSIONS=010,
 
 Although the immediate problem is solved, it would be nice if there
was a
 way to capture the screen. I have a Rexx exec called TSOCAP, but it
won't
 work on DFSMShsm commands.
 
 Thanks. . .
 *
 *
 *George Rodriguez*
 *Specialist II - IT Solutions*
 *Application Support / Quality Assurance*
 *PX - 47652*
 *(561) 357-7652 (office)*
 *(561) 707-3496 (mobile)*
 *School District of Palm Beach County*
 *3348 Forest Hill Blvd.*
 *Room B-332*
 *West Palm Beach, FL. 33406-5869*
 *Florida's Only A-Rated Urban District For Six Consecutive Years*
 
 
 
 On Wed, Jun 1, 2011 at 11:35 AM, Gerhard Weisshaar 
 gerhard_weissh...@compuserve.com wrote:
 
  George,
 
  try this one: QUERY BACKUP
 
  Kind regards Gerhard
 
  Am 01.06.2011 16:43, schrieb George Rodriguez:
 
  I issued a command to change the the start time for the command
from
 3:00
  to
  3:30. Is there a query command that would display the time for
  verification?
 
  TIA. . .
  *
  *
  *George Rodriguez*
  *Specialist II - IT Solutions*
  *Application Support / Quality Assurance*
  *PX - 47652*
  *(561) 357-7652 (office)*
  *(561) 707-3496 (mobile)*
  *School District of Palm Beach County*
  *3348 Forest Hill Blvd.*
  *Room B-332*
  *West Palm Beach, FL. 33406-5869*
  *Florida's Only A-Rated Urban District For Six Consecutive Years*
 
  Home of Florida's first LEED Gold Certified School
 
  Under Florida law, e-mail addresses are public records. If you do
not want
  your e-mail address
  released in response to a public records request, do not send
electronic
  mail to this entity.
  Instead, contact this office by phone or in writing.
 
 
--
  For IBM-MAIN subscribe / signoff / archive access instructions,
  send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN
 INFO
  Search the archives at http://bama.ua.edu/archives/ibm-main.html
 
 
 Home of Florida's first LEED Gold Certified School
 
 Under Florida law, e-mail addresses are public records. If you do not
want
 your e-mail address
 released in response to a public records request, do not send
electronic mail
 to this entity.
 Instead, contact this office by phone or in writing.
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Is is possible to use a Certificate with RSA 2048 key without a crypto card?

2011-06-01 Thread Stew Feuerstein
We are relative novices with crypto/ssl.  In the past we have used
certificates with RSA and 1024 keys.  We do not have a crypto card in our z9
box.  Now we are told that we must get keys = 2048.  Is it possible to use
RSA keys 1024 without a crypto card?

We use the certificate for tn3270.  Using TelnetParms, Secureport 23, and
Keyring SAF Telnetring.  We use Top Secret for security.  Top Secret
documentation seems to imply that we'd have to use DSA instead of RSA.  Our
Certificate group (only knows about Unix) seems to insist that we have to
get an RSA based key.

About a month left until our old key expires.  I'd hate to have all our
users change their configs to allow an expired key.

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


August Share Sessions

2011-06-01 Thread Mark Jacobs
Does anyone know if the session list for the August Share in Orlando 
have been published yet? I looked on their web site but didn't find it.


--
Mark Jacobs
Time Customer Service
Tampa, FL


Some people are electrifying, they light up
a room when they leave.

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


APF Authorization

2011-06-01 Thread Donald Johnson
Hi friends!
Can anyone suggest a reason why a job runs fine with APF authorized loadlibs
when the actual files are used, but fails as unauthorized when using a
dataset alias? APF shows the correct file on the correct volume, and I know
that I do not need to add the alias name to APF list, right? What other
things can I check, and is there a way for a file to lose APF when using an
alias?

My understanding is that the Alias is only used to locate the real file
from the catalog, but then when it is opened, the real file is used.

Thanks in advance for your thoughts and help!
*don*

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Jim Thomas
John,

I concur However ... there is one question I'd like 
to ask if I may. 

Have the 'longer' times for MVCL's been noticed on 'older'
processors ?. Has MVPG (limited users) been tried ? .. and 
again ... for MVPG that is, any difference between 'older'
and the 'new' z10 ?. 

Jim Thomas
617-233-4130 (mobile)
636-294-1014(res)
j...@thethomasresidence.us (Email)


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf
Of john gilmore
Sent: Wednesday, June 01, 2011 10:02 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: What is the current feeling for MVC loop vs. MVCL?

The optimizations that compilers use are certainly interesting in the
sense that there are things to be learned from them.
 
They do, however, have two limitations.  They are particularist, appropriate
usually but not always to the run-time environment in which a particular
compiler's output will be executed but often less so in a different
environment.  (Both advantages and disadvantages have, for example, attended
the use of shared optimizing machinery by IBM PL/I and C.)  
 
These optimizations are also devised by groups whose full-time job is to
optimize code skeletons that are used stereotypically in compiler-generated
code; and these groups inevitably come to have a vested interest in
cleverness, i.e., non-standard, less than obvious ways of doing things. 
 
I have been dismayed by this thread.  It would be better for almost all of
us almost all of the time to use MVCLs, devoting the time not wasted by
examining clever alternatives to them to more significant problems.  

John Gilmore Ashland, MA 01721-1817 USA

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



-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1375 / Virus Database: 1509/3671 - Release Date: 05/31/11

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Martin Packer
I would expect MVPG to be slow - given its history. If we no longer feel 
the need to go the scenic route :-) maybe it isn't.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Tony Harminc t...@harminc.net
To:
IBM-MAIN@bama.ua.edu
Date:
01/06/2011 18:40
Subject:
Re: What is the current feeling for MVC loop vs. MVCL?
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On 1 June 2011 12:32, Jim Mulder d10j...@us.ibm.com wrote:

  If your 8K MVCLs have 4K-aligned sources and targets, then
 they may be taking advantage of the page mover hardware.  In that
 case, MVCs could be considerably slower.

I had been about to suggest the MVPG instruction, but it's quite
possible that MVCL will use the same infrastructure if circumstances
are right. One imagines that with fewer options and special cases to
evaluate, fewer registers to tie up and none to update, for MVPG the
setup would be shorter, and the execution at least as fast. But one's
imagination is often not a good guide; I have a rather casual
benchmark for these two (that is, MVCL of 4k on a page boundary vs
MVPG with no fancy options) that shows MVPG just barely beating MVCL
on a z10, and losing heavily on all earlier machines I had access to
(P390, zPDT, MP3000, FLEX/ES and z9).

John Gilmore's points are well taken. If I may suggest one more,
loosely put, it is to use instructions for what they are usually used
for (which is, even more approximately, what they are documented to be
used for). This is likely to take advantage of hardware optimizations
over time without forcing a tight binding to the hardware of the day.
The assembler programmer does not have an easy way to recompile and
take advantage of whatever the hardware implementors and compiler
designers have come up with since the code was written.

Tony H.

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







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






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


Re: August Share Sessions

2011-06-01 Thread Jack Schudel

The agenda should be posted some time on Friday, 03 JUN 2011.

/jack




- Original Message - 
From: Mark Jacobs mark.jac...@custserv.com

Newsgroups: bit.listserv.ibm-main
To: IBM-MAIN@bama.ua.edu
Sent: Wednesday, June 01, 2011 2:28 PM
Subject: August Share Sessions


Does anyone know if the session list for the August Share in Orlando 
have been published yet? I looked on their web site but didn't find it.


--
Mark Jacobs
Time Customer Service
Tampa, FL


Some people are electrifying, they light up
a room when they leave.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: z/OS System Programmer Needed East Coast

2011-06-01 Thread Mike Schwab
On Wed, Jun 1, 2011 at 11:53 AM, Eric Chevalier et...@tulsagrammer.com wrote:
deleted
 Why do the letters N S A keep popping into my mind??? :-)

 Eric
I had a co-worker used to work there, retired a few years ago.
-- 
Mike A Schwab, Springfield IL USA
Where do Forest Rangers go to get away from it all?

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


Re: August Share Sessions

2011-06-01 Thread Mark Post
 On 6/1/2011 at 02:28 PM, Mark Jacobs mark.jac...@custserv.com wrote: 
 Does anyone know if the session list for the August Share in Orlando 
 have been published yet? I looked on their web site but didn't find it.

The schedule is supposed to go live on the web tomorrow.


Mark Post

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


Re: z/OS System Programmer Needed East Coast

2011-06-01 Thread Anne Lynn Wheeler
et...@tulsagrammer.com (Eric Chevalier) writes:
 Why do the letters N S A keep popping into my mind??? :-)

from long ago and far away:
http://www.nsa.gov/research/selinux/list-archive/0409/8362.shtml

one of the benefits of cp67 and then vm370 was complete source as well
as tradition of doing maintenance in source (customer could rebuild
exact duplicate of production system from source).

there is folklore in the 80s about a request for something similar for
MVS ... the exact source corresponding to particular production system
... supposedly after spending millions on the investigation ... the
company decided that it wouldn't be practical.

-- 
virtualization experience starting Jan1968, online at home since Mar1970

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


Re: APF Authorization

2011-06-01 Thread Lizette Koehler
Hi friends!
Can anyone suggest a reason why a job runs fine with APF authorized loadlibs
when the actual files are used, but fails as unauthorized when using a
dataset alias? APF shows the correct file on the correct volume, and I know
that I do not need to add the alias name to APF list, right? What other
things can I check, and is there a way for a file to lose APF when using an
alias?

My understanding is that the Alias is only used to locate the real file
from the catalog, but then when it is opened, the real file is used.

Thanks in advance for your thoughts and help!
*don*


Don,
To make sure I understand, you created JCL that uses a STEPLIB or JOBLIB that 
points to DSN=X.  However X is an alias for DSN=Y.

The job fails if the dataset is NOT APF Authorized.  Is that correct?

If so, could you provide the following
1)  What level of z/OS?
2)  Are there any additional libraries in STEPLIB or JOBLIB?
3)  What is it failing with (S047, S106??)

Thanks

Lizette

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


Re: APF Authorization

2011-06-01 Thread Donald Johnson
Lizette, I'm sorry for my cloudy description - let me try to be more
clear...

We have a STEPLIB with 2 files in it. The real filenames are MY.APF.FILE1
and MY.APF.FILE2. These files are APF authorized. When the job uses these
names in STEPLIB, it runs fine.

Now I have an alias called MY.ALIAS.FILE1 for MY.APF.FILE1. When my
application runs with this alias file, the application checks to see if it
is authorized (it is a vendor app), issues a message telling me it is not
authorized and then ends.

It is running on z/OS 1.10.
*don*
On Wed, Jun 1, 2011 at 3:51 PM, Lizette Koehler stars...@mindspring.comwrote:

  Hi friends!
 Can anyone suggest a reason why a job runs fine with APF authorized
 loadlibs
 when the actual files are used, but fails as unauthorized when using a
 dataset alias? APF shows the correct file on the correct volume, and I
 know
 that I do not need to add the alias name to APF list, right? What other
 things can I check, and is there a way for a file to lose APF when using
 an
 alias?
 
 My understanding is that the Alias is only used to locate the real file
 from the catalog, but then when it is opened, the real file is used.
 
 Thanks in advance for your thoughts and help!
 *don*
 

 Don,
 To make sure I understand, you created JCL that uses a STEPLIB or JOBLIB
 that points to DSN=X.  However X is an alias for DSN=Y.

 The job fails if the dataset is NOT APF Authorized.  Is that correct?

 If so, could you provide the following
 1)  What level of z/OS?
 2)  Are there any additional libraries in STEPLIB or JOBLIB?
 3)  What is it failing with (S047, S106??)

 Thanks

 Lizette

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: zPRIME is Dead - Neon Surrenders to IBM

2011-06-01 Thread Jim Thomas
IBM I hope ... 

Not sure about this but have (over the last few years) heard
that Microdaft has been trying (or perhaps succeeded) to patent
simple things such as Catalog's, PDS's .  blah blah...

Jim Thomas
617-233-4130 (mobile)
636-294-1014(res)
j...@thethomasresidence.us (Email)


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf
Of Paul Gilmartin
Sent: Wednesday, June 01, 2011 1:30 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: zPRIME is Dead - Neon Surrenders to IBM

On Tue, 31 May 2011 23:48:41 -0500, Jim Thomas wrote:

Ma'am,

Personally ... I'd like to see a suit between Microdaft and IBM.

Ummm...  Which snake can open its jaws wider?

-- gil

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



-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1375 / Virus Database: 1509/3671 - Release Date: 05/31/11

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


Re: APF Authorization

2011-06-01 Thread Bob Shannon
Just guessing, but APF is simply a list of libraries and volsers etc. If you 
call the library by another name it won't match what's in the list. The a 
simple test is to add the alias name to the APF list and retest your job.

Bob Shannon
Rocket Software

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


Specification exception CDS

2011-06-01 Thread Micheal Butz
Pops states one of the programming exceptions for CDS is specification  
exception could that be the result of operand 2 not being on a  
doubleword boundry


Sent from my iPhone

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


Re: APF Authorization

2011-06-01 Thread Hal Merritt
This sounds like an application issue, not z/os. That is, whatever test the 
application is using for APF'ness isn't working correctly. 

What does the vendor say?  

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Donald Johnson
Sent: Wednesday, June 01, 2011 3:23 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: APF Authorization

Lizette, I'm sorry for my cloudy description - let me try to be more clear...

We have a STEPLIB with 2 files in it. The real filenames are MY.APF.FILE1 and 
MY.APF.FILE2. These files are APF authorized. When the job uses these names in 
STEPLIB, it runs fine.

Now I have an alias called MY.ALIAS.FILE1 for MY.APF.FILE1. When my application 
runs with this alias file, the application checks to see if it is authorized 
(it is a vendor app), issues a message telling me it is not authorized and then 
ends.

It is running on z/OS 1.10.
*don*
On Wed, Jun 1, 2011 at 3:51 PM, Lizette Koehler stars...@mindspring.comwrote:

  Hi friends!
 Can anyone suggest a reason why a job runs fine with APF authorized
 loadlibs
 when the actual files are used, but fails as unauthorized when using 
 a dataset alias? APF shows the correct file on the correct volume, 
 and I
 know
 that I do not need to add the alias name to APF list, right? What 
 other things can I check, and is there a way for a file to lose APF 
 when using
 an
 alias?
 
 My understanding is that the Alias is only used to locate the real 
 file from the catalog, but then when it is opened, the real file is used.
 
 Thanks in advance for your thoughts and help!
 *don*
 

 Don,
 To make sure I understand, you created JCL that uses a STEPLIB or 
 JOBLIB that points to DSN=X.  However X is an alias for DSN=Y.

 The job fails if the dataset is NOT APF Authorized.  Is that correct?

 If so, could you provide the following
 1)  What level of z/OS?
 2)  Are there any additional libraries in STEPLIB or JOBLIB?
 3)  What is it failing with (S047, S106??)

 Thanks

 Lizette

 --
 For IBM-MAIN subscribe / signoff / archive access instructions, send 
 email to lists...@bama.ua.edu 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 
lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search the archives at 
http://bama.ua.edu/archives/ibm-main.html
NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed. The message, 
together with any attachment, may contain confidential and/or privileged 
information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution 
is strictly prohibited. If you have received this message in error, please 
immediately advise the sender by reply email and delete all copies.

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


Re: APF Authorization

2011-06-01 Thread Charles Mills
A wild guess is that the vendor software is using the MVS TESTAUTH macro
which is about the simplest API in z/OS. My guess is that TESTAUTH is
telling the truth, i.e., the program is not authorized, probably for the
reason suggested by an earlier respondent: the specified alias name does not
match the APF library list.

Charles

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf
Of Hal Merritt
Sent: Wednesday, June 01, 2011 1:43 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: APF Authorization

This sounds like an application issue, not z/os. That is, whatever test the
application is using for APF'ness isn't working correctly. 

What does the vendor say?  

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


Re: APF Authorization

2011-06-01 Thread Tony Harminc
On 1 June 2011 16:43, Hal Merritt hmerr...@jackhenry.com wrote:
 This sounds like an application issue, not z/os. That is, whatever test the 
 application is using for APF'ness isn't working correctly.

It is application whose authors are exceptionally devoted to
obfuscation or even plain stupidity that tests for APF'ness, as you
call it, by using facilities other than IBM's TESTAUTH. The mind
boggles at the notion of an app looking at the dataset name from which
it was fetched, and basing even a secondary auth test on that.

Tony H.

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


Re: Specification exception CDS

2011-06-01 Thread Tony Harminc
On 1 June 2011 16:34, Micheal Butz michealb...@optonline.net wrote:
 Pops states one of the programming exceptions for CDS is specification
 exception could that be the result of operand 2 not being on a doubleword
 boundry

Yes it does, with a somewhat different arrangement of the words.

Tony H.

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


Z/os FTP Server Configurartion

2011-06-01 Thread Hal Merritt
One of my network guys says that some servers allow the coding of a different 
IP address to be used in the handshake.

Normally, FTP in passive mode sends the host IP address and port number for the 
client to use. This is useless if there is a NAT'ing firewall in the path. My 
guy claims that you can change that to specify any address you want, 
specifically the NAT'ed address.

Anyone know what he is talking about?


Thanks!!

NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed. The message, 
together with any attachment, may contain confidential and/or privileged 
information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution 
is strictly prohibited. If you have received this message in error, please 
immediately advise the sender by reply email and delete all copies.

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


CN=Joe Lenzini/OU=AHM/OU=AM/O=HONDA is out of the office.

2011-06-01 Thread Joe Lenzini
I will be out of the office starting  06/01/2011 and will not return until
06/05/2011.

I will be out of the office until Monday, June 6.  For DB2 issues that need
to be addressed before then, please contact Taka Yokota at 1-2432

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


Re: Z/os FTP Server Configurartion

2011-06-01 Thread Starr, Alan
Hal, 

If the FTP Server is a z/OS FTP server, then I don't believe there is such a 
thing but I'm not sure that I completely understand your situation.

The usual problem is that the port command (which passes along the FTP 
control session) contains an IP address and the Server/Client sending the 
port command is unaware of its NATed address.

Please forgive me for answering a question with more questions but I have three:

1) Are both sides of the FTP session NATed? If not, which side is NOT NATed?
2) What product (and manufacturer) is the client software?
3) What product (and manufacturer) is the server software?  

Cheers,
Alan





-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Hal Merritt
Sent: Wednesday, June 01, 2011 2:47 PM
To: IBM-MAIN@bama.ua.edu
Subject: Z/os FTP Server Configurartion

One of my network guys says that some servers allow the coding of a different 
IP address to be used in the handshake.

Normally, FTP in passive mode sends the host IP address and port number for the 
client to use. This is useless if there is a NAT'ing firewall in the path. My 
guy claims that you can change that to specify any address you want, 
specifically the NAT'ed address.

Anyone know what he is talking about?


Thanks!!

NOTICE: This electronic mail message and any files transmitted with it are 
intended exclusively for the individual or entity to which it is addressed. The 
message, together with any attachment, may contain confidential and/or 
privileged information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution is strictly prohibited. If you have received this message in 
error, please immediately advise the sender by reply email and delete all 
copies.

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Z/os FTP Server Configurartion

2011-06-01 Thread Starr, Alan
Hal,

I should have read the title of your post :D. Then I'd know that you're using 
the z/OS server.

After establishing the FTP session, type the following

SITEEPSV4
LOCSITE   EPSV4

I can't guarantee that the LOCSITE command will work on the FTP client you're 
using. EPSV4 is the IBM keyword used to activate the EPRT and EPSV commands 
described in RFC 2428. In passive mode, the client will send a EPSV command to 
the server (rather than PASV). This is similar to the PASV command EXCEPT that 
the server responds with EPRT (rather than PORT), which specifies a port number 
ONLY. Thus, the  client establishes the data session using the same IP 
address that was used to establish the FTP session (i.e. the server's NATed 
address).

Hope that helps,
Alan



-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Hal Merritt
Sent: Wednesday, June 01, 2011 2:47 PM
To: IBM-MAIN@bama.ua.edu
Subject: Z/os FTP Server Configurartion

One of my network guys says that some servers allow the coding of a different 
IP address to be used in the handshake.

Normally, FTP in passive mode sends the host IP address and port number for the 
client to use. This is useless if there is a NAT'ing firewall in the path. My 
guy claims that you can change that to specify any address you want, 
specifically the NAT'ed address.

Anyone know what he is talking about?


Thanks!!

NOTICE: This electronic mail message and any files transmitted with it are 
intended exclusively for the individual or entity to which it is addressed. The 
message, together with any attachment, may contain confidential and/or 
privileged information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution is strictly prohibited. If you have received this message in 
error, please immediately advise the sender by reply email and delete all 
copies.

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


+DFHAP0001 CICS An abend (code 0C4/AKEA) has occurred at offset X'FFFFFFFF'

2011-06-01 Thread John Weber
What is a common cause of this abend involving an application program?  Thank 
you...

+DFHAP0001  CICS An abend (code 0C4/AKEA) has occurred at offset
  X'' in module VALIDIN9.

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


Re: APF Authorization

2011-06-01 Thread Lizette Koehler
   Hi friends!
  Can anyone suggest a reason why a job runs fine with APF authorized
  loadlibs
  when the actual files are used, but fails as unauthorized when using
  a dataset alias? APF shows the correct file on the correct volume,
  and I
  know
  that I do not need to add the alias name to APF list, right? What
  other things can I check, and is there a way for a file to lose APF
  when using
  an
  alias?
  
  My understanding is that the Alias is only used to locate the real
  file from the catalog, but then when it is opened, the real file is
used.
  
  Thanks in advance for your thoughts and help!
  *don*
  

Don I will agree with what others have stated.

If it is an APF issue, you should see system abends like S106 or S047.  If
your application is producing an error message then it is very likely it is
the application and the way it is doing its function.

You should have the owner of the code explain how this error message is
being produced.

Lizette

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


We list every company in the world that has a mainframe computer

2011-06-01 Thread Edward Jaffe

http://mainframes.wikidot.com/

--
Edward E Jaffe
Phoenix Software International, Inc
831 Parkview Drive North
El Segundo, CA 90245
310-338-0400 x318
edja...@phoenixsoftware.com
http://www.phoenixsoftware.com/

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


Re: We list every company in the world that has a mainframe computer

2011-06-01 Thread Ted MacNEIL
No they don't!
They missed all the Canadian banks, two federal ministries (Canadian), an 
Ontario ministry, the Canadian Stock Clearing Corporation, and two Canadian 
out-sourcers (including IGS, Canada)!

That's without even thinking hard.
Need I continue?


-
Ted MacNEIL
eamacn...@yahoo.ca
Twitter: @TedMacNEIL

-Original Message-
From: Edward Jaffe edja...@phoenixsoftware.com
Sender: IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu
Date: Wed, 1 Jun 2011 17:52:23 
To: IBM-MAIN@bama.ua.edu
Reply-To: IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu
Subject: We list every company in the world that has a mainframe computer

http://mainframes.wikidot.com/

-- 
Edward E Jaffe
Phoenix Software International, Inc
831 Parkview Drive North
El Segundo, CA 90245
310-338-0400 x318
edja...@phoenixsoftware.com
http://www.phoenixsoftware.com/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: We list every company in the world that has a mainframe computer

2011-06-01 Thread Edward Jaffe

On 6/1/2011 6:50 PM, Ted MacNEIL wrote:

No they don't!
They missed all the Canadian banks, two federal ministries (Canadian), an 
Ontario ministry, the Canadian Stock Clearing Corporation, and two Canadian 
out-sourcers (including IGS, Canada)!

That's without even thinking hard.
Need I continue?


Dude, did you even read it? . It's a wiki. The whole point is for the mainframe 
community to create/update its own list. Geez.


--
Edward E Jaffe
Phoenix Software International, Inc
831 Parkview Drive North
El Segundo, CA 90245
310-338-0400 x318
edja...@phoenixsoftware.com
http://www.phoenixsoftware.com/

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


Re: We list every company in the world that has a mainframe computer

2011-06-01 Thread Ted MacNEIL
Dude, did you even read it? . It's a wiki. The whole point is for the 
mainframe 
community to create/update its own list. Geez.

Fine!
But, it's a wiki!
Bad title was my point.

Wiki is not a good thing to base anything on.
And, I have so many non-disclosures I've signed, that I cannot contribute.

Plus, I have a Canadian Federal Government Security Clearance that I will not 
compromise.

$o my point is: what's the value?

Many cannot update!


-
Ted MacNEIL
eamacn...@yahoo.ca
Twitter: @TedMacNEIL

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


Re: +DFHAP0001 CICS An abend (code 0C4/AKEA) has occurred at offset X'FFFFFFFF'

2011-06-01 Thread Gerhard Postpischil

On 6/1/2011 6:49 PM, John Weber wrote:

What is a common cause of this abend involving an application program?  Thank 
you...


Programmer error.

Gerhard Postpischil
Bradford, VT

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


Re: We list every company in the world that has a mainframe computer

2011-06-01 Thread Edward Jaffe

On 6/1/2011 7:11 PM, Ted MacNEIL wrote:


Fine!
But, it's a wiki!
Bad title was my point.

Wiki is not a good thing to base anything on.
And, I have so many non-disclosures I've signed, that I cannot contribute.

Plus, I have a Canadian Federal Government Security Clearance that I will not 
compromise.

$o my point is: what's the value?


LOL! Contribute or don't. Who cares? The way I see things, if it annoys you it 
has already proven it's value. :-D


--
Edward E Jaffe
Phoenix Software International, Inc
831 Parkview Drive North
El Segundo, CA 90245
310-338-0400 x318
edja...@phoenixsoftware.com
http://www.phoenixsoftware.com/

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


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Robert A. Rosenberg
At 12:32 -0400 on 06/01/2011, Jim Mulder wrote about Re: What is the 
current feeling for MVC loop vs. MVCL?:



  Obviously you can have fast clear for objects with lengths that

 256-multiple using n*XC  - however I have often wished for a
 ZERO=YES option on the CPOOL BUILD so that you are guaranteed a
 clean cell for each subsequent CPOOL GET. If anyone else agrees, I
 might consider raising a Share requirement 


  Such a requirement would likely be rejected.  There isn't anything
CPOOL can do to obtain better performance for clearing a cell than
what you can do in your own code.  Clearing done by CPOOL would be
guaranteed to be at least marginally slower, and in some cases
considerably slower, than clearing done by your code.


If the CPOOL spanned one or more 4K aligned pages, then a ZERO=YES 
could zero the area before and after the 4K block and just set the 
virtual page table entries for the block to be a read-only dedicated 
pre-zero'ed page. I seem to have the impression that STORAGE does 
this for allocated pages in some cases (I think that allocated area 
has to be page aligned and a multiple of page length to get 
pre-zeroed storage).


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


Re: We list every company in the world that has a mainframe computer

2011-06-01 Thread Ted MacNEIL
LOL! Contribute or don't. Who cares? The way I see things, if it annoys you it 
has already proven it's value. :-D

That was never my concern!

I'm not annoyed.
I just don't see the value of any list that not all can contribute to.

A voluntary census is meaningless.

We just had an issue regarding that, and the director of StatsCan (Federal) 
resigned over the lack of validity, just before we did ours.

If you are not forced to participate, your responses mean squat.

If you volunteer answers, is that because you think you should; or do you have 
an axe to grind?


-
Ted MacNEIL
eamacn...@yahoo.ca
Twitter: @TedMacNEIL

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


Re: We list every company in the world that has a mainframe computer

2011-06-01 Thread Ed Gould
Ed:

I am pretty sure that is not definitive (but it is good).
One issue that  it is hard to pin down is that some companies on the list have 
multiple sites (most of the banks come to my mind). There were more than a few 
missing in the VISA,MC area and of course almost no US Government were listed 
(That I know of). I am not fauling anyone it is a hard list to maintain as some 
places have been sent over to INDIA (as an example).
Its a decent stab (probably a bit closer that the world map that was talked 
about before). Also I noticed that US Military installations are not on there 
(even the non secret ones).

Ed





From: Edward Jaffe edja...@phoenixsoftware.com
To: IBM-MAIN@bama.ua.edu
Sent: Wed, June 1, 2011 7:52:23 PM
Subject: We list every company in the world that has a mainframe computer

http://mainframes.wikidot.com/

-- Edward E Jaffe
Phoenix Software International, Inc
831 Parkview Drive North
El Segundo, CA 90245
310-338-0400 x318
edja...@phoenixsoftware.com
http://www.phoenixsoftware.com/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Automatic reply: IBM-MAIN Digest - 31 May 2011 to 1 Jun 2011 (#2011-152)

2011-06-01 Thread David Magee
I'll be out of the office until Monday, June 13th.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html
=
Dillard's Confidential

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

Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread David Crayford
It's not just OOO that gives optimized compilers an advantage over 
manually crafted assembler. It's been true since zArchitecture that to
write highly effecient code one needs knowledge of the pipeline There 
was a redbook when the zArch machines z/800 z/900 came out

that mentions the non-sequential code that compilers generate.

http://www.redbooks.ibm.com/redbooks/pdfs/sg246515.pdf

snip
There is one programming aspect that is relevant, although only slightly 
linked to the use of a
split cache. For many years, it has been an axiom among S/360 - S/390 
users that assembly
language programmers probably produce faster code than high-level 
language compilers.
This is no longer true. Processors that use pipelines (including z800 
and z900 machines)
require a certain amount of nonsequential code to obtain the best 
performance. For example,
if an instruction loads a register and the next instruction uses the 
register, we do not have
optimum code. This sequence will stall the pipeline for several 
processor cycles. (The
instructions work correctly, of course, but they take longer than 
necessary.) The best
technique is to interleave several unrelated instructions between 
loading a register and using

the new contents of the register.

This is not natural, sequential thinking for an assembly programmer, 
although he could learn
to do it. IBM’s recent S/390 compilers contain logic to produce this 
sort of optimized code.



On 2/06/2011 12:09 AM, Anne  Lynn Wheeler wrote:

re:
http://www.garlic.com/~lynn/2011g.html#57 What is the current feeling for MVC 
loop vs. MVCL?

other recent gcc reference:
http://www.garlic.com/~lynn/2011g.html#50 My first mainframe experience

... and recent reference to out-of-order pipeline introduced
http://www.garlic.com/~lynn/2011f.html#46 At least two decades back, some gurus 
predicted that mainframes would disappear in future and it still has not 
happened

mentions that introduction of out-of-order in most recent mainframe
accounts for significant part of throughput increase (although it has
been in other architectures for decades).

decades ago, out-of-order was given as major rise of advanced compilers
for high-throughput optimization ... since internal machine processing
was getting a lot more complex with various kinds of instruction
interdependencies and complex dataflow ... becoming harder and harder to
address with manual effort.



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


Re: XMIT INMR01 record question

2011-06-01 Thread Ed Gould
Gil:

In those cases (very few) which the data set names were secure What I did 
(for 
FB type ds) was to use a utility that created in iebupdte form the entire PDS. 
No dataset name was disclosed (you basically /*xmit the job to the other end 
and 
create the dataset with iebupdte on the other end). If you need loadmods there 
are one or two other methods to do so. VSAM you can do an export temp and then 
reblock it into 80 byte and /*xmit and reblock it and import it.

Ed





From: Paul Gilmartin paulgboul...@aim.com
To: IBM-MAIN@bama.ua.edu
Sent: Wed, June 1, 2011 1:38:33 AM
Subject: Re: XMIT INMR01 record question

On Tue, 31 May 2011 22:41:06 -0400, George, Kevin A wrote:

   You can set the nodename in the SYS1.PARMLIB member IKJTSO00. There is a 
section called TRANSREC that is used for the defaults for the TRANSMIT and 
RECEIVE commands.

You may be able to, but I may not.

This is a problem for someone who wishes to use TRANSMIT as an interchange
protocol but does not wish to disclose one's internal host names, user IDs
or data set names.

One is reduced to writing a program to edit the INMR* units post facto.
Actually not too hard because the package is not protected by any sort
of checksum.

For an approach on the Other Side, search Google for INMR123.

-- gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Delete Sub directory under /Service

2011-06-01 Thread saurabh khandelwal
   I mean, when we define any variable in USS using  SET 
command ( Like *SET  $SYSNAMEXYZ*), then in which file system store 
these values. As of now I just want to see that what are all variable 
has been defined currently in USS.



Regards
Saurabh

On 6/1/2011 10:38 PM, Neubert, Kevin wrote:

You mean /etc/profile and such?

Regards,

Kevin

-Original Message-
From: saurabh khandelwal [mailto:saurabh.khandel...@oracle.com]
Sent: Wednesday, June 01, 2011 9:41 AM
To: Neubert, Kevin
Subject: Re: Delete Sub directory under /Service


Thanks for reply.  I also wanted to ask one more thing. In which file
OMVS keep all the variable which we defined using SET command in z/OS
Unix file system.

Regards
Saurabh

On 6/1/2011 9:16 PM, Neubert, Kevin wrote:

Your configuration appears typical to me including the symbolic links.  You 
should have no problems deleting what you want.  What error are you receiving?  
Otherwise you can quickly read about the sysplex root (3.7.1 The sysplex root) 
here http://www.redbooks.ibm.com/abstracts/sg246580.html.

Regards,

Kevin

-Original Message-
From: saurabh khandelwal [mailto:saurabh.khandel...@oracle.com]
Sent: Tuesday, May 31, 2011 9:43 PM
To: IBM Mainframe Discussion List
Cc: Neubert, Kevin
Subject: Re: Delete Sub directory under /Service

Yes,   we can use  /etc/   instead of /etc  but still in directory list
automatically system added/SYSTEM/etc as prefix, which is not
correct and it make /etc as symbolic and  I am not able to delete sub
directory like SSh under /etc etc.

Please suggest me the way to solve this problem.

Regards
Saurabh


Directory List

Select one or more files with / or action codes.  If / is used also
select an
action from the action bar otherwise your default action will be
used.  Select
with S to use your default action.  Cursor select can also be used for
quick
navigation.  See help for details.
EUID=0   /SYSTEM/etc/
  Type  Filename  Row
1 of 27
_ Dir   .
_ Dir   ..
_ Dir   bpa
_ Dir   cmx
_ Dir   cron
_ Dir   dce
_ Dir   dfs
_ File  inetd.conf
_ File  inetd.pid
_ File  init.options
_ Syml  ioepdcf
_ Dir   ldap
_ File  log

On 6/1/2011 2:32 AM, Neubert, Kevin wrote:

For such symbolic links in ISHELL add the trailing slash (e.g., /etc/, /var/, 
etc.).

Regards,

Kevin

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
saurabh khandelwal
Sent: Tuesday, May 31, 2011 10:28 AM
To: IBM-MAIN@bama.ua.edu
Subject: Delete Sub directory under /Service

Hello,
We are in the process of installing IBM Ported Tool. To be
on safe side we changed DDDEF  from  *  to /Service* and mounted root
file system on this.

This installation process create couple of sub directory
like SSH under /etc and  RUN directory under /var.  But these sub
directory  ( RUN and SSH) were already existing under ( /VAR and /ETC).

So we wanted to delete it . But when I tried using ISHELL
and checking the structure of  /etc , I got surprised and seen below result.

   Symbolic Link Attributes

 Pathname : /etc
 External link  . . : 0
 File size  . . . . : 12
 File owner . . . . : STCUSER(0)
 Group owner  . . . : STCGROUP(1)
 Last modified  . . : 2008-10-17 11:55:58
 Last changed . . . : 2008-10-17 11:55:58
 Last accessed  . . : 2008-10-17 11:55:58
 Created  . . . . . : 2008-10-17 11:55:58
 Link count . . . . : 1
 Device number  . . : 1
 Inode number . . . : 3238
 Seclabel . . . . . :
 Symbolic link contents:
  More: +
*$SYSNAME/etc
*
 In this it has created the symbolic link for /etc and incorporated
$SYSNAME before that. I am not sure how system did it .

The same when I see directory structure of /etc/ssh



*Directory List*

Select one or more files with / or action codes.  If / is used also
select an
action from the action bar otherwise your default action will be used.
Select
with S to use your default action.  Cursor select can also be used for quick
navigation.  See help for details.
EUID=0 *  /SYSTEM/etc/ssh/*
  Type  Filename  Row 1
of 13
_ Dir   .
_ Dir   ..
_ File  moduli
_ File  ssh_config
_ File  ssh_host_dsa_key
_ File  ssh_host_dsa_key.pub
_ File  ssh_host_rsa_key
_ File  ssh_host_rsa_key.pub
_ File  ssh_known_hosts
_ File  ssh_prng_cmds
_ File  sshd.sh
_ File  sshd_config
Command ===
_

 It  has incorporated  /SYSTEM  before /etc/ssh automatically.


Also when I try to see*/Service/etc/ssh* path, System open below detail

Directory List

Select one or more files with / or