dataset class a support method called copy().using this method u can copy data in one dataset to other dataset.for example u have dataset ds1 which is having some data.now u want copy ds1 data into another dataset ds2.we can achieve this with the following code
ds2=ds1.copy();
*if u want to copy only structure of data without any actual data u can use clone() method of dataset object.