Clone the data table structure

Hey @Sravya

DataTable.Clone Method():
Clones the structure of the DataTable, including all DataTable schemas and constraints.

Reference: DataTable.Clone Method (System.Data) | Microsoft Learn

Nop just crete a new variable of datatable type then use Assign activity like below :slightly_smiling_face:
DataTable newTable = originalTable.Clone()

Regards…!!
Aksh

16 Likes