Re: PPRC Cestpair problem

2012-05-30 Thread Zaromil Tisler
  (PRIMARY)   (SECONDARY) *
 SSID CCA LSS SSID CCA LSS*
DEVICE   LEVEL  STATE PATH STATUS  SERIAL# SERIAL#*
-- -  --  --- --  *
 1321  .  SIMPLEX...   INACTIVE   1300 21 03   .. *
 ... ...  00045342  1300 21 03*
   ...   ...  *
 PATHS SAID DEST STATUS: DESCRIPTION  *
 - - --  ---  *
   0       00NO PATH  *
       00NO PATH  *
       00NO PATH  *
       00NO PATH  *
  SUBSYSTEM WWNN   LIC LEVEL  *
 ---  --- *
 PRIMARY  96.0.0.0*
***
NTP0001I CQUERY COMMAND COMPLETED FOR DEVICE 1321. COMPLETION CODE: 00
**

  (PRIMARY)   (SECONDARY) *
 SSID CCA LSS SSID CCA LSS*
DEVICE   LEVEL  STATE PATH STATUS  SERIAL# SERIAL#*
-- -  --  --- --  *
 1320  .  SIMPLEX...   INACTIVE   1300 20 03   .. *
 ... ...  00045342  1300 20 03*
   ...   ...  *
 PATHS SAID DEST STATUS: DESCRIPTION  *

I didn't even know that it is possible to establish PPRC pairs in the same 
control unit, always thought SSIDs (control units) have to be different.

The PPRC license for HDS subsystems is also based on capacity, as far as I 
know. Everytime I had no more PPRC capacity available I got some weird 
ANTPmessage, but I would say it was different from what you have got. Now , it 
could also depend of the HDS subsystem that you have. Anyway, what is the 
capacity of your 208 volumes (or, if these are 208 volume pairs and all in the 
same subsystem, you would need the capacity of both all primary and secondary 
volumes) and check the licensed capacity with the storage navigator (or let the 
support person do that).

If you want to check the PPRC messages, set msgid in TSO profile to get message 
ids and look into MVS System Messages
Volume 1 (ABA - AOM) under ANTP (PPRC ANT) messages, although they can be often 
misleading (at least when you have some atypical problems on HDS subsystems).

-- 
Zaromil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Comparing datasets

2012-05-29 Thread Zaromil Tisler
Wow!

Thank you for this recipe and information about JOINKEYS. I had to play a bit 
with REFORMAT to understand it and get what I need.

Before you post this, I have already found SPLICE example 8 in the same 
publication and was also able to get the results I wanted. I would never come 
to JOINKEYS myself. 

Have a nice day!

-- 
Zaromil



On Thu, 24 May 2012 08:34:44 -0700, Sri h Kolusu wrote:

Zaromil,

You can use DFSORT's JOINKEYS to compare the datasets. Here is a sample
job which will compare the 2 datasets treating the first 2 bytes as a key
to compare. You can have a maximum of 4080 bytes as a key.

//STEP0100 EXEC PGM=SORT
//SYSOUT   DD SYSOUT=*
//INA  DD *
C1
B1
A1
E1
//INB  DD *
A1
B1
C1
D1
//SORTOUT  DD SYSOUT=*
//SYSINDD *
  OPTION COPY
  JOINKEYS F1=INA,FIELDS=(1,2,A)
  JOINKEYS F2=INB,FIELDS=(1,2,A)
  JOIN UNPAIRED
  REFORMAT FIELDS=(F1:1,10,F2:1,10,?)
  OUTFIL IFOUTLEN=25,
  IFTHEN=(WHEN=(21,1,CH,EQ,C'B'),BUILD=(01,10,C'MATCHED RECORD')),
  IFTHEN=(WHEN=(21,1,CH,EQ,C'1'),BUILD=(01,10,C'ONLY FILE1 REC')),
  IFTHEN=(WHEN=(21,1,CH,EQ,C'2'),BUILD=(11,10,C'ONLY FILE2 REC'))
//*

The output from this job is

A1MATCHED RECORD
B1MATCHED RECORD
C1MATCHED RECORD
D1ONLY FILE2 REC
E1ONLY FILE1 REC

Check this link for a detailed explanation of JOINKEYS

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/ICE1CA60/4.0?

Further if you have any questions please let me know

Thanks,
Sri Hari Kolusu
DFSORT Development
IBM Corporation

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Comparing datasets

2012-05-24 Thread Zaromil Tisler
Is there z/OS (ISPF) tool that can check if all lines of dataset A are 
contained in dataset B? In other words, is there a tool that could check if 
dataset A is a subset of dataset B, where A and B are sets of records (lines)? 
I can accomplish it using COMPARE ISPF edit function or SuperC Compare Utility, 
but datasets have to be sorted.

Example:

dataset A content:
C1
B1
A1

dataset B content:
A1
B1
C1


Result of editing A and comparing it to B:
.O C1
.OAAAB B1
03 A1
== B1
== C1

Result of editing B and comparing it to A:
.O A1
.OAAAB B1
03 C1
== B1
== A1


Background:  I wanted to check if all cross product dependency PTFs of product 
A are already applied in product B. I generated two datasets, A and B 
respectively, and compared them in ISPF editor using COMPARE function. I was 
surprised with result so I read the tutorial looking for any parameter that 
could influence this behaviour, but haven't found any. There were no porblems 
to sort both datasets in this case, I am just curious.

(Later I tried to do this on my pc and it worked in Notepad++).

-- 
Zaromil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Discussion groups devoted to Mainframe(zos) automation tools

2012-05-10 Thread Zaromil Tisler
 Are there discussion groups similar to IBM-MAIN that are devoted to
Mainframe automation tools? 

For Tivoli System Automation for z/OS and Tivoli System Automation for 
Multiplatforms
you will find links on the last page in the System Automation for z/OS: 101
 
https://www-03.ibm.com/systems/resources/servers_eserver_zseries_software_sa_techresources_System_Automation_for_zOS_Basics.pps
 

-- 
Zaromil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Secret Service Guide

2012-03-16 Thread Zaromil Tisler
Service Guide, IBM System z10 Enterprise Class (GC28-6866-05)

 http://www-01.ibm.com/support/docview.wss?uid=pub1gc28686605 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Checking CRITICALPAGING status for an AS

2011-09-29 Thread Zaromil Tisler
 SYS1.MODGEN(IARRAX) 

Thank you!

I see I haven't done my homework properly. I've searched ibm-main archives and 
internet, but failed to look in the SYS1 datasets.

Have a nice day!

-- 
Zaromil

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


Checking CRITICALPAGING status for an AS

2011-09-28 Thread Zaromil Tisler
Is there any possibility to check if CRITICALPAGING is enabled for an address 
space?

(z/OS V1R12)

The function is enabled in the COUPLExx member.

-- 
Zaromil

--
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: CFRM Structure Names

2010-07-29 Thread Zaromil Tisler
On Tue, 27 Jul 2010 10:31:08 -0400, Richards, Robert B. wrote:

Thanks for the pointers. So far, my best source is the reason I am
documenting them now: the paper called System-Managed CF Structure
Duplexing. I am in the process of identifying what should/should not be
duplexed and thought I would produce a document of those decisions. Most
structures are obvious but, again, I was looking to save myself some work if
others have already produced it.

There is a (very old) list of products and structures they use in a table on
page 112 of Parallel Sysplex Recovery (March 1998 edition)

 http://publibz.boulder.ibm.com/epubs/pdf/e0s1p701.pdf 


-- 
Zaromil

--
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: how to identify members that DO NOT contain a string

2010-07-22 Thread Zaromil Tisler
On Thu, 22 Jul 2010 08:27:28 +0200, Vernooij, CP - SPLXM wrote:

To explain this trick a little more: putting your cursor on a column header
and pressing Enter sort the list on that item. This again is a short form of
the sort prompt (or any other column) command.

And sort prompt is short form of sort prompt d. If you want to have the
column sorted in ascending order then you need sort prompt a. After
sorting you can move through that column with locate value, even locate
' ' works. At the same time the find command can be used to look for a
substring in name column without changing the current sort order.

-- 
Zaromil

--
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: Rebuild Pending Duplexed Structures

2010-07-14 Thread Zaromil Tisler
On Tue, 13 Jul 2010 11:39:23 -0500, Casey Rhodes wrote:

...

Today we activated a new CFRM policy that caused some of our duplexed
structures to go pending. The only way I could find to resolve this is the
reallocate.

I know maybe I am being picky but dont really like to do the reallocate and
touch a couple of hundred structures when I only had 4 pendings.

We always use
   SETXCF START,REALLOCATE.

If the structure allocation is as specified in the CFRM policy, the
structure will not be processed. I don't remember having problems with this
command with over 150 structures, even with 200.

Is there a way to specifically target the structures i want to build when they
are in a duplexed mode.

The initial SETXCF START,REBUILD was reject I assume because duplexing is
considered a rebuild process in and of itself.
...

I would say you could stop rebuild keeping the new instance and than rebuild
duplex, and than go back etc. For me it was always quite a lot of work to
get a single structure out of the pending status. That is the way we had
done it before the reallocate command was available.

-- 
Zaromil

--
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: PROG695 (Was Re: PROG750)

2010-06-01 Thread Zaromil Tisler
On Tue, 1 Jun 2010 02:56:38 -0700, Mark T. Regan, K8MTR wrote:

Anyone know where I can lookup info about this 3270 error code, prog695?
The tn3270 client vendor does not supply any info about it nor has any
Google or IBMLink search turned up anything.
 
If it is the same code and meaning as in IBM PersComm, then maybe you can
find this description useful (found it in Help --- Communication Check
messages):

695 The workstation is off line from the control unit.

-- 
Zaromil

--
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: Calculating the pipe size for DASD mirroring

2010-05-27 Thread Zaromil Tisler
On Wed, 26 May 2010 15:01:51 -0500, Brian Peterson wrote:

We replicate all JES2 data sets (spool, checkpoint, etc) to our remote site,
and we have NEVER failed to warm start JES2 using our asynchronous DASD
replication solution - a solution which also guarantees consistency.

If the DASD replication solution is valid - that is, that consistency is
achieved at the remote site, there is no reason JES2 will fail wam start.  I
would postulate that a JES2 failure to warm start problem would be an
indication that the replication solution does not maintain consistency at
your remote site, or else you are not including all of JES2's files in the
replication solution.

We too have never had problems with JES2 warm start during our recovery
tests, although our primary ckpt data set was allocated in a coupling
facility. But, we replicated *all* data with a point-in-time consistency.
Actually, we had two scenarios:

1. data center move - all data

2. recovery tests - all data except test data for applications

As we have been doing it with HCD subsystems we used Hitachi BCM  HUR for
replication and consistency.

-- 
Zaromil

--
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: Quick Sort question

2010-05-26 Thread Zaromil Tisler
On Tue, 25 May 2010 14:05:08 -0500, Chase, John wrote:

 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of John H Kington

snippage

 Visualize it with these parameters:

 INCLUDE COND=(1,6,CH,GE,C'SMITH ',AND,1,6,CH,LE,C'SMYTHE')
 
 Show how, e.g., c'SMILEY' in positions 1 through 6 would qualify for
 Inclusion in the output.

 SMILEY would fail because every character is the same until you hit
the L but what about SMO99Y where
 you wanted every position in the field to be alphabetic?

As specified, the second (upper) bound is (1,6,CH,LE,C'SMYTHE'), so
do the comparisons:

First character 'S' is less or equal to 'S', so it qualifies;
Second character 'M' is less or equal to 'M', so it qualifies;
Third character 'O' is less or equal to 'Y', so it qualifies;
Fourth character '9' is NOT less or equal to 'T', so the entire value
c'SMO99Y' is disqualified.

-jc-


Looks like DFSORT uses some other logic :)


- CONTROL STATEMENTS FOR 5694-A01, Z/OS DFSORT V1R10 - 13:54 ON WED MAY 26,
2010 -
 OPTION  COPY
 INCLUDE COND=(1,6,CH,GE,C'SMITH ',AND,1,6,CH,LE,C'SMYTHE')

ICE055I 0 INSERT 0, DELETE 0
ICE054I 0 RECORDS - IN: 4, OUT: 4


SORTOUT contains following records, the same as SORTIN:

SMITH
SMO99Y
SMO#$!
SMYTHE

--
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: COUPLE DATA SET TIME STAMPS

2010-04-20 Thread Zaromil Tisler
On Mon, 19 Apr 2010 05:14:09 -0500, Barbara Nitz wrote:

You may run into problems with the LOGR CDS. Check out II5 if that
applies to you. IIRC, the problem was going forward in time for LOGR.

Where can I find II5? Technical help database answer I get is:

No documents match your query. Please revise your search criteria.


-- 
Zaromil

--
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: SYSPLEX/CFRM Couple dataset(s) relationship

2010-04-13 Thread Zaromil Tisler
We have done quite a lot of DR testing in the last year and a half. We
defined all coupling facilities in our active CFRM policy, the same way Alan
C. Field described, and never had a problem IPLing our sysplex. The only
difference is that we start JES2 with RECONFIG parameter, to set the CKPT1
(allocated in a coupling facility) to INUSE=NO, so that the CKPT2 will be used.

Never had any problems going back either.

With applications it is not so easy, but starting a sysplex is just a routine.

The tests were done with z/OS 1.9 and 1.10.

-- 
Zaromil

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


Coupling Facility Time and TD103077

2010-03-31 Thread Zaromil Tisler
Last weekend we had daylight saving time change, going from CET to CEST
(i.e. our time zone was CET -- UTC+1, now CEST -- UTC+2).

We are STP-only CTN, total of 3 z10, CTS = PTS = CEC dedicated to coupling
facilities

Coupling Facilities are spread over all three CECs.

As I read Coupling Facility - TIMEZ Command during Daylight Saving Time
Changes
(http://www-03.ibm.com/support/techdocs/atsmastr.nsf/WebIndex/TD103077) I
decided to looked at the time in our coupling facilities. All our coupling
facilities are either

CFLEVEL:16
CFCC RELEASE 16.00, SERVICE LEVEL 02.18

or

CFLEVEL:16
CFCC RELEASE 16.00, SERVICE LEVEL 02.22

The time zones in the CFs are

a) 01:00 West of Greenwich Mean Time (giving CEST-3)
b) 02:00 West of Greenwich Mean Time (giving CEST-4)
c) Greenwich Mean Time (giving CEST-00:55:27)

Now the case c) happens on the CEC with standalone CFs (production only), I
believe they were never deactivated since we got this CEC.

Before playing around with timezone CF command I tried the other possibility
from the techdoc above:
I deactivated a test sysplex CF that had case a) only to get the case b)
after activating it again. Something I have not expected, based on my
understanding of the techdoc.

I have a few questions:

1. Has anyone seen this behavior?

2. If yes how did you solve the problem - actually I cannot use the timezone
command to correct the problem in case c).

3. What is the importance of the (right) time in a CF? We have system
managed duplexing, but I haven’t seen any problems based on time discrepancy
till now (I am not saying there were none, just that I haven’t  recognize
them as such). Could there be problems if I enable DUPLEXCF16?

Have a nice day!

-- 
Zaromil

--
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: DFSORT - Avoid reading entire input file?

2009-12-31 Thread Zaromil Tisler
On Thu, 31 Dec 2009 01:22:16 -0500, Gerry Palmer gpal...@mindspring.com wrote:

Is there any way to convince DFSORT not to bother reading the rest of
the input once the ENDREC value has been exceeded?

Did you look at STOPAFT:

Use STOPAFT to specify the maximum number of records to be accepted for
sorting or copying.

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

2009-12-07 Thread Zaromil Tisler
- DS8000: Architecture and Implementation redbook states that
   If many LSSs are involved, then pick a quiet time to perform the SETIOS
 HYPERPAV=YES command ...Because it can take some time
 to initialize all needed LSSs ... 
  Is there a way to get an estimation on time needed per LCU ? something else?

I haven't heard of anything like this.

- Is there a way to activate HyperPAV on SYSA only, with no influence on
  SYSB? Or he has to separate them to be in one SYSPLEX? (SYSA and SYSB
  are in the same SYSPLEX)

Enter on SYSA only:
   SETIOS HYPERPAV=YES

- After we activate HyperPAV, is fallback is only to change in IECIOSxx
  member?

   SETIOS HYPERPAV=NO

-- 
Zaromil

--
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: Edit Attributes in SDSF SJ

2009-11-23 Thread Zaromil Tisler
On Mon, 16 Nov 2009 14:43:44 -0600, Paul Gilmartin wrote:

Skeptic that I am, I'd be very interested in seeing the header
line that you trimmed, akin to the one I posted:

 SDSF EDITHFSMAC   (JOB00503) JCLEDIT   Columns 1 00072
 ** * Top of Data
**
 =PROF ISFEDIT (VARIABLE - 81)RECOVERY OFF WARNNUMBER
OFF..

If it shows JCLEDIT as mine does, I'm extremely interested in
how you submitted the job.

Sorry for the late comment.

I use PersComm with 62x160 screen size.

If I define Screen format Std in Settings pannel, I get
=PROF ISFEDIT (VARIABLE - 81)

If I define Screen format Max in Settings pannel, I get
 =PROF ISFEDIT (VARIABLE - 161)

in the JCLEDIT.

-- 
Zaromil

--
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: No NIP console with 2074

2009-09-25 Thread Zaromil Tisler
On Thu, 24 Sep 2009 17:40:13 -0500, Glen Gasior wrote:

*
Has anyone experienced no NIP console and no MASTER console with an IBM
2074 ?
*
During a D/R exercise the NIP console failed to appear on the PCOM emulator.
It was available at the HMC software console. The IPL proceeded using the
HMC console and after the Communication Server was started, the Master
Console appeared on the PCOM emulator and is working fine.
*
I have not found any reason why this would occur. Configuration displays and
HCD definitions seem normal and unchanged from previous successful IPLs. I
hope someone has had the same experience and can point me to a possible
answer.
*
This is a two lpar system. The other lpar, on the same 2074, has not
experienced this failure.
*

Is there any difference between D/R exercise and a normal IPL? (Load
parameters or something like that?)

Just a comment on NIP consoles:
We moved from 2074 to OSA-ICC about two years ago, but even before that we
deleted all NIP consoles from IODF. That means all IPL messages at NIP phase
go to HMC console(s). We haven't  seen any disadvantages in doing so.

-- 
Zaromil

--
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: HCD definitions for a CISCO Ficon switch

2009-08-17 Thread Zaromil Tisler
Does anyone have any experience in defining a Cascaded CISCO Ficon switch
in HCD?

I believe that we need to know both the Domain ID of the Switch and the
Switch Address, but we are unable to determine what the Switch address is?
Documentation on the Internet (an IBM redbook!) states that Switch Address
should be the Hex version of Domain ID, but then goes on to show that both
numbers are the same e.g x'21' and 21. A D M=DEV(A000) of our devices
shows the following:

CHP   24   26
ENTRY LINK ADDRESS4182 43A2
DEST LINK ADDRESS 6608 6808
PATH ONLINE   YN
CHP PHYSICALLY ONLINE YY
PATH OPERATIONAL  YY
PATHS NOT VALIDATED

The entry link address's shown are not what we have coded in HCD? Do I need
to simply change the entry link address to 41 and 43 (from 66 and 68 as the
redbook implied!) ?


1.  66  x41
68  x43


2. If there are cascaded switches, then the switch id of the switch
connected to the processor has to be different from the switch id of the
switch connected to devices.

-- 
Zaromil

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


osa-icc big screen response times

2009-07-01 Thread Zaromil Tisler
Hello!

Playing with the dynamic screen size(s) and customizing my PCOMM sessions I
tried to establish a connection to OSA-ICC and open an MVS console session
as model 5 (ScreenSize=27x132). It worked without problems and it was my
understanding that the screen size defined in the PCOMM configuration file
was taken. After that I tried with ScreenSize=62x160 just to see if it
works. It did but the session became quite slow. So now I am playing with
different screen sizes, currently using ScreenSize=43x121.

These different response times raise a few questions:
-   what could be the reason, OSA-ICC “capacity” or OSA-ICC throughput or
network or console address space
-   are there any parameters to tune these response times
-   are there any side effects possible on other sessions to the same 
OSA-ICC

Anyone having some experience with this or an explanation?

Machine is z10, with z/OS V1.10, port speed is hundred Mbit 

Thank you!

-- 
Zaromil

--
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: HYPERPAV Definitions

2009-06-19 Thread Zaromil Tisler
On Fri, 19 Jun 2009 14:16:47 -0500, Dave Kopischke 
dgkopisc...@oppenheimerfunds.com wrote:

On Fri, 19 Jun 2009 15:02:12 -0400, Swanson, Curt wrote:

Dave,

The 'WLMPAV' value of 'Yes' is correct for both Dynamic PAV  HYPERPAV.
The setup is the same for both; the only difference is the HYPERPAV feature
added on the 2107 storage subsystem.  We had Dynamic PAV before
HYPERPAV.

You still have to set WLMPAV to YES if you want ASM to exploit HYPERPAV, 
search in the archives for HYPERPAV postings from Jim Mulder.

-- 
Zaromil

--
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: Would an IODF configuration work for diferent devices ?

2009-06-03 Thread Zaromil Tisler
On Tue, 2 Jun 2009 22:27:11 -0500, Cwi Jeret cwi_je...@yahoo.com wrote:

Given the following working configuration -

snipped

Now I want to let LPAR B work with the same IODF-IOCDS configuration
on an seperate Disk device with the same addresses !
( Chpid and CU 300 CUAD 1  -  left as is ) like the following :

snipped

Would this changed configuration work
with the same IODF-IOCDS  definitions ???

I would say it would work for sure after an IPL, if both CU are configured
in the same way (CUAD 1). That should be the comfortable way.

Maybe it would be possible to do it even without an IPL, if you can take
devices and paths offline (I don't remember configuring chpid offline, but I
am not quite sure). I haven't made exactly your scenario, but I imagine
having migrated from box A to box B without an IPL - naturally, not the
system devices.

But, I wouldn't be happy having duplicate device numbers in an IODF if I
don't have to.

-- 
Zaromil

--
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: Utility to search multiple files on multiple volumes

2009-05-05 Thread Zaromil Tisler
Hi Gadi,

That works if you know the file name.
How do I ask: Find all the members in all the PDS's on disks who name
begins with TSO and contain the string GABI (That is what my user wants to
know).

just use the empty Dsname Level field and generic Volume serial like
TSO* or TSO% etc. It works in 1.10, but I would say it worked also before.

-- 
Zaromil

--
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: configuration change question

2009-01-19 Thread Zaromil Tisler
On Fri, 16 Jan 2009 10:02:19 -0600, Tom Marchant  wrote:


If you perform a soft activate only, everything will be fine until you IPL
again.  Then, because you didn't do a hardware activate too, you will get
the old IODF, from before you changed the esoterics.  That's because the
soft activate didn't update the token in HSA.

Making changes in the OS config only does not change the processor token, at 
least not the timestamp part and you can override the description part. If 
there are more than one processors defined in an IODF, only processor(s) 
affected with hardware changes get a new token (timestamp).

-- 
Žaromil

--
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: 3278 device Hardware support

2009-01-16 Thread Zaromil Tisler
Does Z/OS 1.8 and above still support the 3278 device type and is only the
hardware support for the real physical 3278's dropped?

Any idea where i can find thios on the IBM site?

To check the support for 3278 device type I would look in 
HCD ---
   7.  Query supported hardware and installed UIMs
4.  List supported devices
 8.  Display stations

The other possibility would be to generate an X report in batch HCD.

-- 
Žaromil

--
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: NIP console devices limit

2009-01-13 Thread Zaromil Tisler
Hi Radoslaw,

 From the other hand - what about MCS consoles? Two concurrently running
systems (LPARs) cannot use same device as console. Assuming monoplexes.

We also have OSA-ICC and all our LPAR use the same two device numbers for 
MCS consoles. But, these are NOT same devices: MIFID - Device Number 
combination (OSA-ICC session) on one CEC is unique.

Regards,
Žaromil

--
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: How to calculate size of a PS dataset

2008-12-23 Thread Zaromil Tisler
On Tue, 23 Dec 2008 03:07:44 -0600, Parin Gangar wrote:

The dataset has following details -

Device type . . . . :,3390
Record format . . . :,FB
Record length . . . :,1526
Block size  . . . . :,7630
1st extent tracks . :,15000
Secondary tracks  . :,1500

Current Allocation,
,Allocated tracks  . :,297,141
,Allocated extents . :,190
, ,
, ,
Current Utilization,
,Used tracks . . . . :,297,141
,Used extents  . . . :,190

I tried searching this on Google, but didn't get anything. I know that there is
some formula for this.

Why searching Google if you can get the data from your z/OS system (I have 
got only 6 blocks in a track):

bytes/block * block/track * #tracks
7630  *6 * 297141  = 13603114980, less then 13 GiB 

By the way: using the blocksize of 27468, you would need less then 248000 
tracks, it is nearly 5 tracks difference.

-- 
Zaromil

--
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: ISPF Edit confusion

2008-11-19 Thread Zaromil Tisler
On Tue, 18 Nov 2008 10:54:42 -0500, Mark Pace wrote:

Mark,

snip
...  I did look at his PDSPROF and found this  L WKLW.ZVWARN2   but I have
no idea what that means or if it's truely related.
/snip

What application creates PDSPROF? Is it a member in ISPF profile (I don't 
have one with that name)? 

What is the IMACRO value in the dataset profile (in editor enter the PROFILE 
command in the command line). You can reset it with IMACRO NONE.

Regards,
Zaromil

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



Re: INITSQA CBU processing

2008-11-04 Thread Zaromil Tisler
On Thu, 30 Oct 2008 10:12:06 +0800, Tommy Tsui wrote:

  After I try to activiate the CBU from 2094-401 to 2094-707, the LPAR
cannot be IPL successfully because of 878 until I set the INITSQA. Is there
any overhead while CBU activiated? How comes we need to add the default
SQA/ESQA to NIP processing after CBU activiated?

Look at last section of the Apar II12396: EXHAUSTION OF INITIAL SQA ESQA 
AFTER IODF CHANGES, MIGRATION TO Z/OS 1.8 OR LATER, OR MIGRATION 
TO Z/OS 1.9 OR LATER


Did the number of (logical) processors for the LPAR grow after CBU?

Theoretically:

more processor power --- more parallelism --- more SQA needed...

That was the key note of the explanation we have got.

-- 
Zaromil

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



Change LPAR Security task doesn't reflect profiles' content

2008-11-04 Thread Zaromil Tisler
Hi!

We use the Change LPAR Security task (under CPC Operational 
Customization in a Single Object Operation) to display and modify security 
controls for all LPARs on a single CPC. 

We encountered the following problem: if we take away Input/Output 
Configuration Control from some LPARs and then save the changes to profiles, 
the activation profiles are updated, but not the display in the Change LPAR 
Security task (at least, not for the inactive LPARs). So, there is no way for 
us 
to check if all security definitions are already applied. The only way is to 
open 
each LPAR activation profile and look in the security submenu.

In other words, the panel does not reflect the content of activation profiles 
and 
using it as a basis for further changes could lead to unwanted authorities in 
some LPARs.

Has someone faced this situation and, if yes, what was your answer to the 
problem?

I am talking here about z9 / z10 environment.

-- 
Zaromil

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



Re: Dynamic PAV - which alias will be moved

2008-10-08 Thread Zaromil Tisler
Hi Kevin,

Are your spare volumes defined with WLMPAV=YES in your I/O config? Or, is it 
possible to disable dynamic alias management for certain volumes directly in 
the STK box?

-- 
Zaromil

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



Re: HYPERPAV

2008-09-24 Thread Zaromil Tisler
On Thu, 18 Sep 2008 16:34:05 +0200, John Ticic IBM-MAIN wrote:

You can also use the SETIOS command.

Once the LCUs have been converted, the other LPARs can't move the aliases
around. The IBM documentation states that they are ignored.

RMF will show you the LCU and HyperPAV activity. The MVS DEVSERV 
command : D
M=DEV will give you information about devices. You should see HyperPAV
devices listed here.

John,

I had problems finding any description about the way HyperPAV works. My 
also assumed that converting the LCU(s) to HyperPAV in one system has 
nothing to do with dynamic aliases in other systems in the sysplex.

Today I eventually got a possibility to test:
- 3 systems (all z/OS 1.9, let's call them WLMA, HPAV, and WLMB) in a sysplex 
in a single CEC (2094)
- IBM DS8000.



HyperPAV set in system HPAV using
  setios hyperpav=yes
Eight jobs start concurrently in WLMA, all writing to the same two devices 
(unit 
addresses 7661 and 7861)



RMF display during the time eight jobs write to the same volume:

--
CPU= 10/ 10 UIC= 65K PR=   0 System= WLMA Delta

11:36:14 I= 0%  DEV ACTV RESP IOSQ -DELAY- PEND DISC CONN %
D %D
STG GRP  VOLSER NUM  PAV  LCU   RATE TIME TIME CMR DB  TIME TIME 
TIME UT RV

 KF7861 7861   5* 006B  3126  1.0  0.1 0.3 0.0  0.4  0.1  0.5 41  0
 KF7661 7661   5* 006A  3125  1.0  0.0 0.3 0.0  0.4  0.1  0.5 41  0

--


 CPU=  7/  7 UIC= 65K PR=   0 System= HPAV Delta

 11:37:04 I= 0%  DEV ACTV RESP IOSQ -DELAY- PEND DISC CONN 
%D %D
 STG GRP  VOLSER NUM  PAV  LCU   RATE TIME TIME CMR DB  TIME TIME 
TIME UT RV

  KF7661 7661 1.0H 006A 0.000  0.0  0.0 0.0 0.0  0.0  0.0  0.0  0  0
--



DEVSERV display before the jobs were started:

--

IEE421I RO *ALL,DS QP,7661,VOLUM 197
WLMA RESPONSES ---
IEE459I 11.26.14 DEVSERV QPAVS 686
 HOST SUBSYSTEM
 CONFIGURATION  CONFIGURATION
---  -
 UNIT  UNITUA
 NUM. UA  TYPESTATUS SSID  ADDR.   TYPE
- --  --   --
07661 61  BASE   B760   61 BASE
  1 DEVICE(S) MET THE SELECTION CRITERIA
HPAV RESPONSES ---
IEE459I 11.26.14 DEVSERV QPAVS 196
 HOST SUBSYSTEM
 CONFIGURATION  CONFIGURATION
---  -
 UNIT  UNITUA
 NUM. UA  TYPESTATUS SSID  ADDR.   TYPE
- --  --   --
07661 61  BASE-H B760   61 BASE
  1 DEVICE(S) MET THE SELECTION CRITERIA
WLMB RESPONSES ---
IEE459I 11.26.14 DEVSERV QPAVS 843
 HOST SUBSYSTEM
 CONFIGURATION  CONFIGURATION
---  -
 UNIT  UNITUA
 NUM. UA  TYPESTATUS SSID  ADDR.   TYPE
- --  --   --
07661 61  BASE   B760   61 BASE
--



DEVSERV display about half an hour later:

--

IEE421I RO *ALL,DS QP,7861,VOLUM 388
WLMA RESPONSES ---
IEE459I 11.52.41 DEVSERV QPAVS 947
 HOST SUBSYSTEM
 CONFIGURATION  CONFIGURATION
---  -
 UNIT  UNITUA
 NUM. UA  TYPESTATUS SSID  ADDR.   TYPE
- --  --   --
07861 61  BASE   B780   61 BASE
078AB AB  ALIAS-7861 B780   AB ALIAS-61
078AC AC  ALIAS-7861 B780   AC ALIAS-61
078AD AD  ALIAS-7861 B780   AD ALIAS-61
078B7 B7  ALIAS-7861 B780   B7 ALIAS-61
  5 DEVICE(S) MET THE SELECTION CRITERIA
HPAV RESPONSES ---
IEE459I 11.52.41 DEVSERV QPAVS 387
 HOST SUBSYSTEM
 CONFIGURATION  CONFIGURATION
---  -
 UNIT  UNITUA
 NUM. 

Re: Query DCB parms from FTP

2008-09-09 Thread Zaromil Tisler
How can I query the DCB parms (RECFM , LRECL ) for an existing file via
FTP ?

You mean something like dir?

ftp dir cntl
200 Port request OK.
125 List started OK
Volume UnitReferred Ext Used Recfm Lrecl BlkSz Dsorg Dsname
CTST21 3390   2008/08/25  1   15  FB  80  3120  PO  CNTL
250 List completed successfully.

Regards,
Zaromil

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



Re: Duplicate dev num in IODF

2008-09-08 Thread Zaromil Tisler
Radoslaw,

snip
3. Fake definition of devices.
Devices 400-4F0 connected to CU 400 (OSE). CU 400 is logically connected
to chpid 10 on CPC A and 10 on CPC B. This is obviously fake, but it is
accepted by HCD. However: will it work?

In our shop all lpars in all CECs use the same device addresses on the same 
CUs (OSC) defined on the same chipids. I believe we used to have the this 
concept at the time we had 2074. I don't remember any disadventages or 
problems with it. I am not responsible for our IODF any more for some time 
now, but I would say it is the simplest maintenance.

Regards,
Zaromil

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



Re: PPRC and page datasets

2008-05-07 Thread Zaromil Tisler
On Wed, 7 May 2008 12:55:47 +0200, Frank Allan Rasmussen wrote:

 Are there any rectrictions or recommendations about PPRC (metro mirror) 
and volumes with page datasets?

 Good ide, bad ide, some performance impact, recomented?

It should be a prerequisite for a GDPS HyperSwap. For the HyperSwap you 
should mirror everything, except couple data sets. 

-- 
Žaromil

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



Re: PCOM and trailing blanks in copy paste

2008-04-29 Thread Zaromil Tisler
Thank you for all your answers and hints!



1.  Trimming the trailing blanks:

Unfortunately I do not have any RegEx-capable program at work and UltraEdit 
is not in our software catalog.

Anyhow, I've got the following Information offline:

- snip -
Hi, i normally use Notepad++ (free product) on my PC. 
Paste into Notepad++ 
 
cntl-a 
TextFX -- TextFX Edit -- Trim Trailing Spaces 
cntl-c (cntl-x to cut instead of copy) 
 
go paste into the email 
 
http://www.filehippo.com/download_notepad/ 
- snip -

The homepage is

 http://notepad-plus.sourceforge.net/uk/site.htm 

It works!


2. Truncating trailing blanks in variable records

We have ISPF Productivity Tool (ex-SPIFFY) active (to get EDSET command I 
had to logon with vanilla ISPF). Saving the edited file brings a pop-up window 
IQIESAVV with the following text:

- snip -
You are about to truncate all trailing blanks of each record.

Truncate trailing blanks?  Y (yes) or N (no) --- N

 Specify your choice and press ENTER.
 Enter END or CANCEL to cancel this request.
- snip -

The default is always N, independent of the value in the profile (Maybe I 
am the only person ever to try this feature in SPIFFY? :-))

Thank you once more and have a nice day!

-- 
Žaromil

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



Re: ipsf HIGHLIGHT option

2008-04-25 Thread Zaromil Tisler
On Thu, 24 Apr 2008 13:31:59 -0700, Edward Jaffe wrote:

Interesting. I also use 62x142 with a modified color scheme. My
background is light gray -- I found white a bit too harsh. Never thought
to turn on the cross hairs. (I might try that for a while to see how I
like it.)

I find light beige background quite acceptable for my eyes. I use cross hairs 
too, found that very helpfull searching syslogs and netlogs.

I pretty much never lose track of my cursor -- *especially* not during
FIND. I love the highlighting because that way I don't have to
painstakingly poke F5 over and over to position to each hit on the
screen. I can see them all with a single FIND command and the cursor is
always on the first one. (Sounds like a world class software feature
to me! :-)  )


If you exclude all lines and then enter 

 find string all

it can be quite annoying if you do not use the next world class software 
feature:

 reset find



-- 
Zaromil

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



PCOM and trailing blanks in copy paste

2008-04-25 Thread Zaromil Tisler
Does any user of IBM PCOM know a way to change the cut and paste 
behaviour so that trailing blanks are (automatically) stripped off?

I have found no parameter to do that. So, if I want to paste something from 
the screen into a mail, the easiest way I found is to copy the data into a 
variable dataset with preserve trailing blanks = no and the ftp the dataset 
to 
my pc.

Anyone having a simpler solution (whatever simpler means)?

One more question:
is there a possibility to disable truncate the trailing blanks prompt every 
time 
I save a dataset that already has preserve trailing blanks = no in the 
profile?


Thank you.

-- 
Zaromil

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



Re: FICON CTC

2008-03-07 Thread Zaromil Tisler
On Thu, 6 Mar 2008 13:54:36 -0500, Mark Pace wrote:

From z/OS 1.9 MVS:Planning Global Resource Serialization.

These links can be either a data link in a parallel CTC adapter. In ring
mode, link or CTC link means either an IBM 3088 data link, a parallel
CTC adapter, or an ESCON(R) channel operating in CTC or basic mode, or 
FCTC.


Maybe the GRS doesn't know that yet g. According to ISG046E explanation 
(System Messages Volume 9, SA22-7639-14):

snip
System programmer response: If the reason code is X'05', check to see if the 
device is configured as a BCTC. If the device is configured as a SCTC, GRS 
cannot use it. If possible, try to reconfigure the device as a BCTC.
snip

-- 
Zaromil

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


Re: Rexx - TRAP errors / Exception handling ?

2008-03-04 Thread Zaromil Tisler
On Mon, 3 Mar 2008 16:29:43 -0500, Arthur T.  wrote:

- snip -
  This may not be the best way to validate.  Check out
the results of the following, which is a very slightly
modified version of my previous example.  At least on my PC
with Regina REXX, it gives unexpected results.

signal on syntax
j = 1
ChkDate:
do i = j to 15
   tstDate = '31/' || right(i,2,0) || '/08'
   valDate = DATE('E',tstDate,'E')
   say valdate 'is valid'
end
exit 0
syntax:
say tstDate 'is not valid'
j = i + 1
signal on syntax
signal ChkDate

  Would someone please verify if z/OS (or any other)
REXX yields not valid for any month numbers other than 2,
13, 14, or 15?  Those are the only ones invalid in my test.
- snip -

Executing your REXX in z/OS 01.08.00:


 31/02/08 is not valid
 31/04/08 is not valid
 31/06/08 is not valid
 31/09/08 is not valid
 31/11/08 is not valid
 31/13/08 is not valid
 31/14/08 is not valid
 31/15/08 is not valid


-- 
Zaromil

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


Re: page data sets and HiperPAV (was: Large Page Datasets APAR OA20749)

2008-03-04 Thread Zaromil Tisler
On Tue, 4 Mar 2008 12:31:01 +0100, Vernooy, C.P. - SPLXM  wrote:

- snip -
Yes, as I understood too, it is fully managed by the hardware, not by
WLM. So this means that ASM may have to compete for exposures.
Possibly/hopefully ASM's I/O priority will give it the needed advantage.
Otherwise Shane's remark about SECP may be not the joke it seemed at
first glance.
- snip -

Last information I have found about status of ASM and HyperPAV was in the 
thread PLPA and COMMON PAGESPACE Size, mail from 13 Sep 2007:

- snip -
 But note that ASM only supports starting 2 I/Os to a page data set
 when there are dynamic PAVs (as opposed to static PAVs).  Unless
 something has changed since z/OS 1.3 when this support was introduced.

  That is a very good point, especially because I was going to say
Dynamic PAV and of course HyperPAV, but thought I had better check
the code first.  It turns out that the ASM code which decides whether
to create two sets of I/O control blocks for a page data set was not
updated for HyperPAV (an oversight on our part).  It checks to see 
if you specified WLM PAV when you defined the device in HCD.  Since
WLM doesn't need to manage PAVs when the control unit has been told
to use HyperPAV mode, our intention was that the specification of
WLM PAV in HCD would be irrelevant for HyperPAV devices.  But for
now, it looks like you would want to specify WLM PAV for HyperPAV
paging devices, until we can update the ASM code (probably via an APAR)
to automatically recognize HyperPAV paging devices. 
- snip -

Zaromil

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


Re: page data sets and HiperPAV

2008-03-04 Thread Zaromil Tisler
On Tue, 4 Mar 2008 14:34:03 +0100, Barbara Nitz [EMAIL PROTECTED] 
wrote:


good catch! I don't suppose oa20749 will correct this oversight, too?

My understanding was that it should be enough to define devices with
   WLMPAV yes
in the HCD. We have this but I don't know how to check if it helps. The aliases 
are surely not fix assigned to page data sets or there is an error in the RMF 
DEV Device Activity display (we have 1.0H in the PAV column for all devices).

-- 
Zaromil

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


HyperPAV paging devices and ASM

2008-02-21 Thread Zaromil Tisler
Do ASM algorithms support two I/Os to a page data set on a HyperPAV base 
volume? If yes, are the aliases fixed, as in the case of dynamic PAV?

-- 
Zaromil

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


Re: IEBGENER is BROKEN

2008-01-15 Thread Zaromil Tisler
On Mon, 14 Jan 2008 21:17:15 -0600, Walt Farrell ... wrote:

 snip 
If I have a VB (or even an FB) with a larger LRECL, it shouldn't take
handstands to copy!


For VB, I agree.

For FB, how would you like the output padded?  Blanks?  Binary zeros?

One of those will be incorrect for some set of users, so you probably need
an option.  And IEBGENER provides the ability to specify that option when
you change the LRECL and provide control statements to tell it what to do.
As I understand it from this thread, it only complains and quits when you
try to change the LRECL without providing those control statements.
 snip 

The argumentation above was apparently not used in ICEGENER design, 
the ICEGENER (as a replacement for IEBGENER  SYSUT1 DD DUMMY 
combination) takes another approach:

Copying PS V shorter to PS V larger brings RC=0.
Copying PS F shorter to PS FB shorter brings RC=0 and padding with binary 
zeros.

Trying to copy in the other direction:

Copying PS F larger to PS F shorter brings RC=0 and data truncation.
Copying PS V larger to PS V shorter brings RC=0 if all records fit in the 
output 
dataset, otherwise I get U0217 and ICE217A:

ICE217A 0 153 BYTE VARIABLE RECORD IS LONGER THAN 133 BYTE 
MAXIMUM FOR SYSUT2 

-- 
Zaromil

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


Re: File Transfer conundrum

2008-01-10 Thread Zaromil Tisler
On Wed, 9 Jan 2008 22:13:13 -0600, Bruce Baxter ... wrote:

ftp directly between the two systems, quite simply isn't an option.  Our
business partner chose the mechanism in palce to deal with multiple other
shops, and they're not likely to want to do this sort of one-off thing for us.

And how does your partner deliver files to other shops? Do they also get 
corrupted data or do all of them use non-EBCDIC environments?

-- 
Zaromil

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


Re: FTPing of DFDSS Dump Files

2007-12-06 Thread Zaromil Tisler
 Does anyone know of a way to FTP the DUMP file back to a zOS system so it 
 is readable?

Using Windows as a client and z/OS as a server the following works for me for 
tersed datasets (binary ftping in both directions):

ftp quote site lrecl=1024 recfm=fb blksize=6144
200 SITE command was accepted


to check allocation parameters:

ftp quote stat
.
.
.
211-Record format FB, Lrecl: 1024, Blocksize: 6144


After that I just (binary) put the tersed dataset.

-- 
Zaromil

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


Re: High order bit in 31/24 bit address

2007-11-07 Thread Zaromil Tisler
On Wed, 7 Nov 2007 15:42:54 +0900, Timothy Sipples wrote:

 
snip
 Finally, there is the fact that software engineers -- or at least human
 factors engineers -- apparently never reviewed ASCII.  As we all know,
 EBCDIC puts the letters in the correct numerical order, collating uppercase
 and lowercase: AaBbCc  ASCII doesn't.  It's ABCDEF...abcdef  Thus
 decades of dumb ASCII software -- and there's a lot of dumb software in the
 world -- has frustrated users everywhere.  I was listening to a radio
 program this year, and the program's host was complaining bitterly about
 the fact his studio database filing system thinks Jackie is different
 than jackie.  (They couldn't find a prop in their inventory for months.)
 Quite possibly as a byproduct of ASCII's strange idea of sorting, UNIX and
 UNIX-derived operating systems made perhaps the biggest design mistake 
of
 all time: case sensitivity in commands, file names, and directories.  I'd
 argue strongly that computing systems should be case retentive but not case
 sensitive.  Gr


I am not sure I understand what are you talking about. Both uppercase and 
lowercase sequences are not contiguous in EBCDIC, and sorting text 
containing hex numbers in EBCDIC is not a big help.


Result of sort command in a member with CAPS OFF (in linux, I can use sort -f 
or sort --ignore-case to get what you have in your example):

EBCDIC Member:
---
01 a
02 b
03 c
04 d
05 e
06 f
07 g
08 A
09 B
10 C
11 D
12 E
13 F
14 G
---

Unix System Services example:
---
 cat x.test
a
b
c
d
f
e
A
B
D
C
E
M
F

 cat x.test|sort

A
B
C
D
E
F
M
a
b
c
d
e
f
 cat x.test | sort -f

A
a
B
b
C
c
D
d
E
e
F
f
M
---

-- 
Zaromil

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


Re: VARY too many devices offline

2007-10-23 Thread Zaromil Tisler
On Tue, 23 Oct 2007 08:54:31 +0100, Kenny Fogarty wrote:

I agree, but, if the wrong date, or IPL parm, or whatever is entered,
then the chances are you're going to have to re-IPL to rectify the
situation. As you said above, if RACF doesn't start, you can go back
to see why, and take steps to fix the issue.

I absolutely agree. It is just ridiculous to make operators responsible for 
design shortages in an operating system. How comes system programmers 
haven't seen the danger of losing system(s) and / or data through a single 
error (or a typo) in all these cases?

-- 
Zaromil

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


Re: XCF Recovery Process IXC247D

2007-10-01 Thread Zaromil Tisler
On Sun, 30 Sep 2007 13:58:42 -0400, Lizette Koehler 
[EMAIL PROTECTED] wrote:

I was just was wondering what might have happened in a SINGLE Sysplex
environment (ie no other sysplexes other than mine) if the response of U was
done.

I would say IXC247D comes every time you try to use a CDS that was 
already in use. it's a pitty there is no sysplex name in the message. 

We have more than one sysplex. First time I got IXC247D (it came as a 
feature with a new release of OS/390?), I looked in the couple data set ( I 
think with DFDSS PRINT) and saw the sysplex name in it. We always use 'U', 
because every sysplex we have has a different name.

-- 
Zaromil

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


CentricStor

2007-09-26 Thread Zaromil Tisler
Hello!

Anyone on this list having experience with CentricStor? It would be very 
interesting to hear 
(see) a comparison between CentricStor and IBM VTS based on experience with 
both of them.

Thank you!

-- 
Zaromil

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


Re: Override a proc step

2007-08-13 Thread Zaromil Tisler
Gil,

COND=(0,LE) is always true, so any step with COND=(0,LE) will always be
skipped.  COND codes can only be positive, so zero is always LE any 
possible
COND code.

Not entirely correct, IIRC.  If the step is the first step in
the job it will not be skipped.  This is mathematically correct
(however irritating) in that no prior step satisfies the boolean
primary and the logical OR of no operands yields FALSE.

If you want to skip the first step why not use the RESTART parameter, you 
want to do it *unconditionally* any way. The only problem is you can not 
specify a step in an nested procedure  (g).

Zaromil

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


Re: Defining a display LU so the user can choose the terminal type

2006-10-20 Thread Zaromil Tisler
On Fri, 20 Oct 2006 08:55:25 -0500, Mark Zelden wrote:

snip
o Dark figures on a white ground.


As an experiment... I tried this.  I changed my background on my
vista emulator to white just like all my email, browser windows
etc. but still used extended colors for the foreground (except
changing white to black).

I find the white background not so comfortable as beige, e.g. rgb values of 
239x239x228, reducing the contrast slightly.

Zaromil

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