Copy Files and Use the Checkpointing Feature (UNIX to UNIX)

This Process copies a file between two UNIX nodes. The ckpt parameter specifies that checkpoints will be taken at 128K intervals. If the COPY operation is interrupted, the IBM® Connect:Direct® system will restart that COPY step at the last checkpoint. Code the ckpt parameter between the FROM and TO clauses of the COPY statement.

ckpt01  process     snode=unix.node
step01  copy from  (file=file1
                    snode)
                    ckpt=128k
             to    (file=file2
                    disp=new
                    pnode)
	pend