where is your DataTable from? if it is from another DataSet, you need to remove it firstDataTable t1 = DataSet1.Tables.Remove("TableName");
DataSet2.Tables.Add(t1);