Skip to Content
0
Former Member
Feb 17, 2009 at 02:50 AM

Transfer data from one DATASET to another DATASET

1264 Views

Hi,

Is there a way to transfer the data from one DATASET to another DATASET?

I tried the following

OPEN DATASET DS1 FOR OUTPUT IN TEXT MODE ENCODING DEFAULT .

OPEN DATASET DS2 FOR INPUT IN TEXT MODE ENCODING DEFAULT .

TRANSFER DS2 to DS1.

CLOSE DATASET DS1.

CLOSE DATASET DS2.

But it does not work.

Thanks in advance.