On Tue, Sep 9, 2014 at 9:01 AM, Barry Merrill <[email protected]> wrote:
> To send V/VB/VBS data from z/OS to a non-z/OS site and preserve the BDW and 
> RDWs:
>
>  A. Sending data to MXG support.
>
>     i. ftp instructions for sending data to the MXG ftp site
>
>        Using the IBM ftp program, you can ftp any MVS data file to the
>        MXG ftp site with this syntax; do NOT change the DCB attributes
>        of the //SMFFILE DD: even though it points to a VBS DSNAME, the
>        RECFM=U,BLKSIZE=32760 must be used to include BDW and RDWs.
>
>       //FTP      EXEC PGM=FTP,PARM='(EXIT=4'
>       //SYSPRINT DD  SYSOUT=*
>       //OUTPUT   DD  SYSOUT=*
>       //SMFFILE  DD DSN=YOUR.SMF.DATA,DCB=RECFM=U,BLKSIZE=32760,DISP=SHR
>       //INPUT DD *
>       ftp.mxg.com
>       mxgtech mxgtech
>       quote PASV
>       bin
>       put //DD:SMFFILE  yourname.smf
>       close
>       quit
>       /*
>

Dr. Merrill,

That is interesting. What about if you then needed to upload that file
back to z/OS? I was thinking you could use RECFM=U, but then realized
that the RECFM=U still has block boundries which would make reading
the file difficult. That is you could not upload as RECFM=U, then just
use JCL DCB=(RECFM=VBS) to read it.

-- 
There is nothing more pleasant than traveling and meeting new people!
Genghis Khan

Maranatha! <><
John McKown

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to