Re: Trsmain Unpack

2008-09-26 Thread Miklos Szigetvari

Hi

I have asked about this a while ago, the TMPSPACE DD has solved my 
problem with the  tempdataset allocation


Alan Schwartz wrote:


I'm testing the process to upload a PSP bucket of ptf's using an uploaded CSI 
to only get the ptf's I need.  Everything seems to be working and I've got the 
bin files on the mainframe. But when I try and unpack them I run into two 
problems.

1.  The job is abending with 878-08.  Here is the full message:
IEC028I 837-08,IFG055  
,TSYS001,UNPACK1,SYS1,10B1,QR0015,SYS08269.T142124.RA000.TSYS001.TRSTMP.H03

Here is the jcl:

//UNPACK1   EXEC  PGM=TRSMAIN,PARM=UNPACK,REGION=0M//SYSPRINT DD  SYSOUT=*  //INFILE   DD  DISP=SHR,DSN=TSYS001.INSTLIB.BIN   //OUTFILE  DD  DISP=(NEW,CATLG,DELETE),UNIT=(SYSDA,8),   // DSN=TSYS001.INSTLIB.UNPACKED,SPACE=(CYL,(600,100,50),RLSE) 


Obviously there's a dynamically allocated file that isn't big enough.  I looked 
in IBMlink but nothing matched there.  I checked the recent archives and found 
one thread that matched but the posters issue was with PDS-E.  This is coming 
via SRD and as far as I can see is documented as a pds.

2.  When the job abends the allocation messages show:

IEF285I   TSYS001.INSTLIB.UNPACKED  CATALOGED  IEF285I   
VOL SER NOS= QR0015.

I have to delete the file before I can rerun   


Appreciate any ideas.
Alan 



_
Stay up to date on your PC, the Web, and your mobile phone with Windows Live.
http://clk.atdmt.com/MRT/go/msnnkwxp1020093185mrt/direct/01/
--
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


 



--
Miklos Szigetvari

Development Team
ISIS Information Systems Gmbh 
tel: (+43) 2236 27551 570
Fax: (+43) 2236 21081 

E-mail: [EMAIL PROTECTED] 

Info: [EMAIL PROTECTED] 
Hotline: +43-2236-27551-111 

Visit our Website: http://www.isis-papyrus.com 
---

This e-mail is only intended for the recipient and not legally
binding. Unauthorised use, publication, reproduction or
disclosure of the content of this e-mail is not permitted.
This email has been checked for known viruses, but ISIS accepts
no responsibility for malicious or inappropriate content.
--- 


--
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: Trsmain Unpack

2008-09-26 Thread Paul Gilmartin
On Fri, 26 Sep 2008 00:00:43 -0700, Kayhan Tanriverir wrote:

You have to determined where the TRSMAIN program's executed load module in 
the JCL as  STEPLIB.  

//TRSMAIN  EXEC PGM=TRSMAIN,PARM=UNPACK
//STEPLIB DD DSN=..,DISP=SHR
 
Whereas AMATERSE will likely be in LINKLIST.

-- gil

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



Re: Trsmain Unpack

2008-09-26 Thread Kayhan Tanriverir
You have to determined where the TRSMAIN program's executed 
Hi Alan

You have to determined where the TRSMAIN program's executed load module in 
the JCL as  STEPLIB.  

//TRSMAIN  EXEC PGM=TRSMAIN,PARM=UNPACK
//STEPLIB DD DSN=..,DISP=SHR
//SYSPRINT DD SYSOUT=*
//INFILE DD DSN=.y.yy,DISP=SHR
//OUTFILE DD DSN=.y.yy,DISP=SHR

 
 
Saygilar / Regards
Kayhan Tanriverir
Vizyon Bilgi Teknolojileri
Danisman / Senior Consultant
Tel      : 90 312 472 12 52-53
Mobile: 90 555 589 76 91    
[EMAIL PROTECTED]




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



Re: Trsmain Unpack

2008-09-26 Thread John Eells

Cebell, David wrote:

AMATERSE is not in our LINKLST.  z/os 1.6 ( S806 Not found)
Anyone know where this program resides? 

snip

In z/OS R6, and in z/OS R7-R8 without the PTF for APAR OA19194, it 
resides wherever you choose to put it when you downloaded.  If you put 
the PTF on z/OS R7 or R8, or have z/OS R9, it lives in LINKLIB.


From http://techsupport.services.ibm.com/390/trsmain.html (which also 
leads you to the download, with instructions, for the non-PTF version 
you can get for R6):


TRSMAIN Utility
In z/OS Release 1.9 the TRSMAIN program has been added to the BCP 
element of z/OS, and it has been redesigned to support large format 
sequential data sets. This program has also been rewritten to follow IBM 
programming conventions. The new utility is called AMATERSE.
AMATERSE is available on z/OS Releases 7 and 8 via PTFs UA36927 and 
UA36928 for APAR OA19194.


TRSMAIN is shipped as an alias entry point to AMATERSE. When the TRSMAIN 
entry point of AMATERSE is invoked, ddnames INFILE and OUTFILE remain as 
the defaults, so little or no change to JCL should be required to take 
advantage of AMATERSE. The ddnames INFILE and OUTFILE that were required 
by the TRSMAIN utility are replaced by SYSUT1 and SYSUT2 respectively 
when the utility is called as AMATERSE.


TRSMAIN is a utility program to compress and decompress data exchanged 
with IBM.


--
John Eells
z/OS Technical Marketing
IBM Poughkeepsie
[EMAIL PROTECTED]

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



Re: Trsmain Unpack

2008-09-26 Thread Cebell, David
AMATERSE is not in our LINKLST.  z/os 1.6 ( S806 Not found)
Anyone know where this program resides? 

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Paul 
Gilmartin
Sent: Friday, September 26, 2008 8:50 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trsmain Unpack

On Fri, 26 Sep 2008 00:00:43 -0700, Kayhan Tanriverir wrote:

You have to determined where the TRSMAIN program's executed load module in 
the JCL as  STEPLIB.  

//TRSMAIN  EXEC PGM=TRSMAIN,PARM=UNPACK
//STEPLIB DD DSN=..,DISP=SHR
 
Whereas AMATERSE will likely be in LINKLIST.

-- gil

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


--
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: Trsmain Unpack

2008-09-26 Thread Cebell, David
Thank You

David Elliot reports that on z/os 1.8, the program is in sys1.miglib.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of 
Field, Alan C.
Sent: Friday, September 26, 2008 10:35 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trsmain Unpack

It's in OA24147. 

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of 
Cebell, David
Sent: Friday, September 26, 2008 10:30
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trsmain Unpack

AMATERSE is not in our LINKLST.  z/os 1.6 ( S806 Not found)
Anyone know where this program resides? 

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Paul 
Gilmartin
Sent: Friday, September 26, 2008 8:50 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trsmain Unpack

On Fri, 26 Sep 2008 00:00:43 -0700, Kayhan Tanriverir wrote:

You have to determined where the TRSMAIN program's executed load module in 
the JCL as  STEPLIB.  

//TRSMAIN  EXEC PGM=TRSMAIN,PARM=UNPACK
//STEPLIB DD DSN=..,DISP=SHR
 
Whereas AMATERSE will likely be in LINKLIST.

-- gil

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


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

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


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



Re: Trsmain Unpack

2008-09-26 Thread Field, Alan C.
It's in OA24147. 

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of 
Cebell, David
Sent: Friday, September 26, 2008 10:30
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trsmain Unpack

AMATERSE is not in our LINKLST.  z/os 1.6 ( S806 Not found)
Anyone know where this program resides? 

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Paul 
Gilmartin
Sent: Friday, September 26, 2008 8:50 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trsmain Unpack

On Fri, 26 Sep 2008 00:00:43 -0700, Kayhan Tanriverir wrote:

You have to determined where the TRSMAIN program's executed load module in 
the JCL as  STEPLIB.  

//TRSMAIN  EXEC PGM=TRSMAIN,PARM=UNPACK
//STEPLIB DD DSN=..,DISP=SHR
 
Whereas AMATERSE will likely be in LINKLIST.

-- gil

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


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

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



Re: Trsmain Unpack

2008-09-26 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of Cebell, David
 
 AMATERSE is not in our LINKLST.  z/os 1.6 ( S806 Not found) 
 Anyone know where this program resides? 

SYS1.MIGLIB on 1.9.  I'd guess it would be the same on 1.6 if you
applied the PTF that retro-fitted AMATERSE to 1.6, so apparently you
haven't applied that PTF yet.  Indeed, I don't even know if it was made
available for 1.6.

-jc-

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



Re: Trsmain Unpack

2008-09-26 Thread John Eells

John Eells wrote:
snip
In z/OS R6, and in z/OS R7-R8 without the PTF for APAR OA19194, it 
resides wherever you choose to put it when you downloaded.  If you put 
the PTF on z/OS R7 or R8, or have z/OS R9, it lives in LINKLIB.

snip

That should, of course, say MIGLIB (not LINKLIB).

--
John Eells
z/OS Technical Marketing
IBM Poughkeepsie
[EMAIL PROTECTED]

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



Re: Trsmain Unpack

2008-09-26 Thread Big Iron
I don't think that AMATERSE is available for z/OS 1.6, only for 1.7 and up.
You can get TRSMAIN from
 http://techsupport.services.ibm.com/390/trsmain.html

Bill

On Fri, 26 Sep 2008 10:29:36 -0500, Cebell, David [EMAIL PROTECTED] wrote:

AMATERSE is not in our LINKLST.  z/os 1.6 ( S806 Not found)
Anyone know where this program resides?

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Paul Gilmartin
Sent: Friday, September 26, 2008 8:50 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trsmain Unpack

On Fri, 26 Sep 2008 00:00:43 -0700, Kayhan Tanriverir wrote:

You have to determined where the TRSMAIN program's executed load module in
the JCL as  STEPLIB.  

//TRSMAIN  EXEC PGM=TRSMAIN,PARM=UNPACK
//STEPLIB DD DSN=..,DISP=SHR
 
Whereas AMATERSE will likely be in LINKLIST.

-- gil


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



Re: Trsmain Unpack

2008-09-26 Thread Mark Zelden
No, it's OA19194.  And it's only for 1.7 and 1.8 (base in 1.9).  The OP
must download and use TRSMAIN for 1.6 still. 

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


On Fri, 26 Sep 2008 10:34:58 -0500, Field, Alan C.
[EMAIL PROTECTED] wrote:

It's in OA24147.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Cebell, David
Sent: Friday, September 26, 2008 10:30
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trsmain Unpack

AMATERSE is not in our LINKLST.  z/os 1.6 ( S806 Not found)
Anyone know where this program resides?

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Paul Gilmartin
Sent: Friday, September 26, 2008 8:50 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trsmain Unpack

On Fri, 26 Sep 2008 00:00:43 -0700, Kayhan Tanriverir wrote:

You have to determined where the TRSMAIN program's executed load module in
the JCL as  STEPLIB.  

//TRSMAIN  EXEC PGM=TRSMAIN,PARM=UNPACK
//STEPLIB DD DSN=..,DISP=SHR
 
Whereas AMATERSE will likely be in LINKLIST.

-- gil

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


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

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

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



Re: Trsmain Unpack

2008-09-26 Thread Robert Wright

Field, Alan C. wrote:
It's in OA24147. 


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of 
Cebell, David
Sent: Friday, September 26, 2008 10:30
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trsmain Unpack

AMATERSE is not in our LINKLST.  z/os 1.6 ( S806 Not found)
Anyone know where this program resides? 

  
OA24147 was, indeed, the rollback APAR for AMATERSE, but it only rolled 
the formal support back to z/OS 1.7.  On 1.6 only the TRSMAIN download 
is available.  AMATERSE installs into MIGLIB, a linklist library, on 1.7 
and up.


--
Bob Wright - [EMAIL PROTECTED]

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



Re: Trsmain Unpack

2008-09-25 Thread Jakubek, Jan
Read OA19194 (I just did :-).
The z/OS provided AMATERSE uses now SYSUT1/2 for input/output.
Hth...

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Alan Schwartz
Sent: September 25, 2008 3:50 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Trsmain Unpack

I'm testing the process to upload a PSP bucket of ptf's using an
uploaded CSI to only get the ptf's I need.  Everything seems to be
working and I've got the bin files on the mainframe. But when I try and
unpack them I run into two problems.
 
1.  The job is abending with 878-08.  Here is the full message:
IEC028I 837-08,IFG055
,TSYS001,UNPACK1,SYS1,10B1,QR0015,SYS08269.T142124.RA000.TSYS001.TRS
TMP.H03
 
Here is the jcl:
 
//UNPACK1   EXEC  PGM=TRSMAIN,PARM=UNPACK,REGION=0M
//SYSPRINT DD  SYSOUT=*  //INFILE
DD  DISP=SHR,DSN=TSYS001.INSTLIB.BIN   //OUTFILE  DD
DISP=(NEW,CATLG,DELETE),UNIT=(SYSDA,8),   //
DSN=TSYS001.INSTLIB.UNPACKED,SPACE=(CYL,(600,100,50),RLSE) 
 
Obviously there's a dynamically allocated file that isn't big enough.  I
looked in IBMlink but nothing matched there.  I checked the recent
archives and found one thread that matched but the posters issue was
with PDS-E.  This is coming via SRD and as far as I can see is
documented as a pds.
 
2.  When the job abends the allocation messages show:
 
IEF285I   TSYS001.INSTLIB.UNPACKED  CATALOGED
IEF285I   VOL SER NOS= QR0015.
 
I have to delete the file before I can rerun   
 
Appreciate any ideas.
Alan 
 
 
_
Stay up to date on your PC, the Web, and your mobile phone with Windows
Live.
http://clk.atdmt.com/MRT/go/msnnkwxp1020093185mrt/direct/01/
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

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



Re: Trsmain Unpack

2008-09-25 Thread Robert Wright

Alan Schwartz wrote:

I'm testing the process to upload a PSP bucket of ptf's using an uploaded CSI 
to only get the ptf's I need.  Everything seems to be working and I've got the 
bin files on the mainframe. But when I try and unpack them I run into two 
problems.
 
1.  The job is abending with 878-08.  Here is the full message:

IEC028I 837-08,IFG055  
,TSYS001,UNPACK1,SYS1,10B1,QR0015,SYS08269.T142124.RA000.TSYS001.TRSTMP.H03
 
Here is the jcl:
 
//UNPACK1   EXEC  PGM=TRSMAIN,PARM=UNPACK,REGION=0M//SYSPRINT DD  SYSOUT=*  //INFILE   DD  DISP=SHR,DSN=TSYS001.INSTLIB.BIN   //OUTFILE  DD  DISP=(NEW,CATLG,DELETE),UNIT=(SYSDA,8),   // DSN=TSYS001.INSTLIB.UNPACKED,SPACE=(CYL,(600,100,50),RLSE) 
 
Obviously there's a dynamically allocated file that isn't big enough.  I looked in IBMlink but nothing matched there.  I checked the recent archives and found one thread that matched but the posters issue was with PDS-E.  This is coming via SRD and as far as I can see is documented as a pds.
 
2.  When the job abends the allocation messages show:
 
IEF285I   TSYS001.INSTLIB.UNPACKED  CATALOGED  IEF285I   VOL SER NOS= QR0015.
 
I have to delete the file before I can rerun   
 
Appreciate any ideas.
  
OA22765 discusses a circumvention of including a large data set 
associated with a TMPSPACE ddname in your JCL.  OA22765, itself, was 
closed as a FIN.  


--
Bob Wright - [EMAIL PROTECTED]

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



Re: Trsmain Unpack

2008-09-25 Thread Edward Jaffe

Jakubek, Jan wrote:

Read OA19194 (I just did :-).
The z/OS provided AMATERSE uses now SYSUT1/2 for input/output.
  


AMATERSE still provides the original TRSMAIN interface as well.

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

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