Re: Have you ever done this using FTP?

2012-04-27 Thread Bob Shannon
lcd 'local pdsname' cd 'foreign pdsname' MPUT * This works for text. I typically either use TRSMAIN, TSO XMIT, or DFDSS to dump the PDS to a seq file, then do the FTP. If it is, use the technique above as described by Lizette Koehler. Bob Shannon Rocket Software

Re: Have you ever done this using FTP?

2012-04-27 Thread Alvaro Guirao Lopez
FTP PUT DFDSS FILES z/OS to z/OS example: OPEN to-zos userid password QUOTE SITE BLKSIZE=27998 LRECL=0 RECFM=U PRI=19950 SEC=100 TRACK MODE B EBCDIC PUT dfdss.file 2012/4/27 Bob Shannon bshan...@rocketsoftware.com lcd 'local pdsname' cd 'foreign pdsname' MPUT * This works for text. I

Re: Have you ever done this using FTP?

2012-04-27 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Lizette Koehler Sent: Thursday, April 26, 2012 5:08 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Have you ever done this using FTP? snip/ I typically either use TRSMAIN, TSO XMIT

Re: Have you ever done this using FTP?

2012-04-27 Thread R.S.
W dniu 2012-04-27 14:16, McKown, John pisze: -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Lizette Koehler Sent: Thursday, April 26, 2012 5:08 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Have you ever done this using FTP? snip/ I

Re: Have you ever done this using FTP?

2012-04-27 Thread Bob Shannon
TRSMAIN is still available AFAIK. TRSMAIN is an alias of AMATERSE. Bob Shannon Rocket Software -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@bama.ua.edu with the message: INFO

Re: Have you ever done this using FTP?

2012-04-27 Thread R.S.
W dniu 2012-04-27 14:36, Bob Shannon pisze: TRSMAIN is still available AFAIK. TRSMAIN is an alias of AMATERSE. Yes, but... Definitely NOT for older system which do not have AMATERSE. And for those systems you can still download older version. BTW:

Re: Have you ever done this using FTP?

2012-04-27 Thread Donald Likens
If FB PDS you can MPUT each member and mput the members but an easier way is to use TSO XMIT. TSO XMIT the PDS to a flatfile and then binary ftp the flatfile. It works with load libraries. XMIT N1.TSSDON DA('TSSDON.v.LINKLIB') + OUTDA('TSSDON.v.XMITLINK') FTP

Re: Have you ever done this using FTP?

2012-04-27 Thread Charles Mills
: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Paul Gilmartin Sent: Thursday, April 26, 2012 4:18 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Have you ever done this using FTP? On Thu, 26 Apr 2012 18:09:27 -0400, Rob Schramm wrote: Yep. lcd 'local pdsname' cd 'foreign

Re: Have you ever done this using FTP?

2012-04-27 Thread Bob Rutledge
Paul Gilmartin wrote: On Thu, 26 Apr 2012 18:09:27 -0400, Rob Schramm wrote: Yep. lcd 'local pdsname' cd 'foreign pdsname' MPUT * will do it just fine. The tricky part may be allocating the receiving PDS. Notice that the statement of the problem said it had to be done using FTP. It's

Re: Have you ever done this using FTP?

2012-04-27 Thread Bob Rutledge
Bob Shannon wrote: lcd 'local pdsname' cd 'foreign pdsname' MPUT * This works for text. It also works, as documented, for load libraries. I regularly use: mkdir loadlib (like loadlib lcd loadlib cd loadlib mput * to copy a loadlib to another LPAR. I typically either use TRSMAIN, TSO

Have you ever done this using FTP?

2012-04-26 Thread John Norgauer
FTP a PDS from one Mainframe to another mainframe connected through TCPIP? If so how is it done? John Norgauer Senior Systems Programmer Mainframe Technical Support Services University of California Davis Medical Center 2315 Stockton Blvd ASB 1300 Sacramento, Ca 95817 916-734-0536 SYSTEMS

Re: Have you ever done this using FTP?

2012-04-26 Thread Lizette Koehler
FTP a PDS from one Mainframe to another mainframe connected through TCPIP? If so how is it done? John Norgauer I typically either use TRSMAIN, TSO XMIT, or DFDSS to dump the PDS to a seq file, then do the FTP. I think TRSMAIN can actually have the PDS as input and produce the seq file as

Re: Have you ever done this using FTP?

2012-04-26 Thread Rob Schramm
Yep. lcd 'local pdsname' cd 'foreign pdsname' MPUT * will do it just fine. Rob Schramm Senior Systems Consultant Imperium Group On Thu, Apr 26, 2012 at 6:02 PM, John Norgauer john.norga...@ucdmc.ucdavis.edu wrote: FTP a PDS from one Mainframe to another mainframe connected through TCPIP?

Re: Have you ever done this using FTP?

2012-04-26 Thread Gibney, Dave
] On Behalf Of Lizette Koehler Sent: Thursday, April 26, 2012 3:08 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Have you ever done this using FTP? FTP a PDS from one Mainframe to another mainframe connected through TCPIP? If so how is it done? John Norgauer I typically either use

Re: Have you ever done this using FTP?

2012-04-26 Thread Charles Mills
, 2012 3:09 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Have you ever done this using FTP? Yep. lcd 'local pdsname' cd 'foreign pdsname' MPUT * will do it just fine. -- For IBM-MAIN subscribe / signoff / archive access instructions

Re: Have you ever done this using FTP?

2012-04-26 Thread Paul Gilmartin
On Thu, 26 Apr 2012 18:09:27 -0400, Rob Schramm wrote: Yep. lcd 'local pdsname' cd 'foreign pdsname' MPUT * will do it just fine. The tricky part may be allocating the receiving PDS. Notice that the statement of the problem said it had to be done using FTP. It's easily enough done with the

Re: Have you ever done this using FTP?

2012-04-26 Thread retired mainframer
) :: -Original Message- :: From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On :: Behalf Of John Norgauer :: Sent: Thursday, April 26, 2012 3:02 PM :: To: IBM-MAIN@bama.ua.edu :: Subject: Have you ever done this using FTP? :: :: FTP a PDS from one Mainframe to another

Re: Have you ever done this using FTP?

2012-04-26 Thread John McKown
, April 26, 2012 3:02 PM :: To: IBM-MAIN@bama.ua.edu :: Subject: Have you ever done this using FTP? :: :: FTP a PDS from one Mainframe to another mainframe connected through :: TCPIP? :: :: If so how is it done? :: :: :: :: John Norgauer :: Senior Systems Programmer :: Mainframe

Re: Have you ever done this using FTP?

2012-04-26 Thread Rob Schramm
[mailto:IBM-MAIN@bama.ua.edu] On :: Behalf Of John Norgauer :: Sent: Thursday, April 26, 2012 3:02 PM :: To: IBM-MAIN@bama.ua.edu :: Subject: Have you ever done this using FTP? :: :: FTP a PDS from one Mainframe to another mainframe connected through :: TCPIP? :: :: If so how

Re: Have you ever done this using FTP?

2012-04-26 Thread Scott Ford
:: To: IBM-MAIN@bama.ua.edu :: Subject: Have you ever done this using FTP? :: :: FTP a PDS from one Mainframe to another mainframe connected through :: TCPIP? :: :: If so how is it done? :: :: :: :: John Norgauer :: Senior Systems Programmer :: Mainframe Technical Support Services :: University